diff options
author | QMK Bot <hello@qmk.fm> | 2020-12-11 02:46:19 +0000 |
---|---|---|
committer | QMK Bot <hello@qmk.fm> | 2020-12-11 02:46:19 +0000 |
commit | fdfcce57e1c46765e0aebf37ad3d9611a7384241 (patch) | |
tree | 9524405fef6cc3b16965517735dc0ef315f67ab1 /docs/newbs_testing_debugging.md | |
parent | ed76f4394fd95413f7da11e2342b0965182ccb95 (diff) | |
parent | 501f2fdef115314713e94428d409e5c3b5bfc1c2 (diff) |
Merge remote-tracking branch 'origin/master' into develop
Diffstat (limited to 'docs/newbs_testing_debugging.md')
-rw-r--r-- | docs/newbs_testing_debugging.md | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/docs/newbs_testing_debugging.md b/docs/newbs_testing_debugging.md index 1812389020..834fed7163 100644 --- a/docs/newbs_testing_debugging.md +++ b/docs/newbs_testing_debugging.md @@ -36,7 +36,9 @@ Prefer a terminal based solution? [hid_listen](https://www.pjrc.com/teensy/hid_l Sometimes it's useful to print debug messages from within your [custom code](custom_quantum_functions.md). Doing so is pretty simple. Start by including `print.h` at the top of your file: - #include <print.h> +```c +#include "print.h" +``` After that you can use a few different print functions: |