From 8caa87d186247a0f8cd46c90c46e9e5c400a9a10 Mon Sep 17 00:00:00 2001 From: Kim Minjong Date: Wed, 5 Oct 2022 11:16:11 +0900 Subject: [PATCH] [Docs] Add a note about the print function. (#17737) Co-authored-by: Ryan --- docs/faq_debug.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/faq_debug.md b/docs/faq_debug.md index 4a3599722214..b639b7ea0414 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.