diff options
author | Kim Minjong <make.dirty.code@gmail.com> | 2022-10-05 11:16:11 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-04 19:16:11 -0700 |
commit | b100db1e5668c9a10437e89d41af76910c58d51d (patch) | |
tree | 222f8396d04a22d8371877c6660a3b65c14fff04 /docs | |
parent | 3f63bbc7d829d7269e9caa89f128adf86ae5b196 (diff) |
[Docs] Add a note about the print function. (#17737)
Co-authored-by: Ryan <fauxpark@gmail.com>
Diffstat (limited to 'docs')
-rw-r--r-- | docs/faq_debug.md | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/docs/faq_debug.md b/docs/faq_debug.md index 4a35997222..b639b7ea04 100644 --- a/docs/faq_debug.md +++ b/docs/faq_debug.md @@ -133,3 +133,4 @@ Check: - Set `debug_enable=true`. See [Debugging](#debugging) - Try using `print` function instead of debug print. See **common/print.h**. - Disconnect other devices with console function. See [Issue #97](https://github.com/tmk/tmk_keyboard/issues/97). +- Ensure all strings end with a newline character (`\n`). QMK Toolbox prints console output on a per-line basis. |