Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Refactor platform logic within print.h #11863

Merged
merged 9 commits into from
Feb 14, 2021
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
restore debug.c format
  • Loading branch information
zvecr committed Feb 12, 2021
commit d6d2071ab5f377d6a58bff10d26610dea43e190d
8 changes: 7 additions & 1 deletion tmk_core/common/debug.c
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,10 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "debug.h"

debug_config_t debug_config = {.enable = false, .matrix = false, .keyboard = false, .mouse = false, .reserved = 0};
debug_config_t debug_config = {
.enable = false, //
.matrix = false, //
.keyboard = false, //
.mouse = false, //
.reserved = 0 //
};