X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=docs%2Fnewbs_testing_debugging.md;h=d78311339d77fd7778d44a42632387708e5e1d81;hb=338ca3569ac5b76f55b0664cf9d6eef11211b6b2;hp=45509110a557f0bb0e4920dc75d08f32960d70d5;hpb=2cee371bf125a6ec541dd7c5a809573facc7c456;p=qmk_firmware.git diff --git a/docs/newbs_testing_debugging.md b/docs/newbs_testing_debugging.md index 45509110a..d78311339 100644 --- a/docs/newbs_testing_debugging.md +++ b/docs/newbs_testing_debugging.md @@ -15,7 +15,17 @@ Note: These programs are not provided by or endorsed by QMK. ## Debugging With QMK Toolbox -[QMK Toolbox](https://github.com/qmk/qmk_toolbox) will show messages from your keyboard if you have `CONSOLE_ENABLE = yes` in your `rules.mk`. By default the output is very limited, but you can turn on debug mode to increase the amount of debug output. Use the `DEBUG` keycode in your keymap, or use the [Command](feature_command.md) feature to enable debug mode. +[QMK Toolbox](https://github.com/qmk/qmk_toolbox) will show messages from your keyboard if you have `CONSOLE_ENABLE = yes` in your `rules.mk`. By default the output is very limited, but you can turn on debug mode to increase the amount of debug output. Use the `DEBUG` keycode in your keymap, use the [Command](feature_command.md) feature to enable debug mode, or add the following code to your keymap. + +```c +void keyboard_post_init_user(void) { + // Customise these values to desired behaviour + debug_enable=true; + debug_matrix=true; + //debug_keyboard=true; + //debug_mouse=true; +} +```