From 44f23f98c4f0b89b74dba82ff8dab43edfd295c4 Mon Sep 17 00:00:00 2001 From: Kim Minjong Date: Thu, 21 Jul 2022 15:09:10 +0900 Subject: [PATCH 1/2] [Docs] Add a note about the print function. --- docs/faq_debug.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/faq_debug.md b/docs/faq_debug.md index fba27c5f6838..29aed104a1f2 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). +- Try printing newline("\n"). Sometimes there is no output until newline is printed. From 2aa9fd66e2571370000ff78c5b5b91bc1672f395 Mon Sep 17 00:00:00 2001 From: Kim Minjong Date: Tue, 4 Oct 2022 12:49:01 +0900 Subject: [PATCH 2/2] [Docs] Add a note about the print function. Co-authored-by: Ryan --- docs/faq_debug.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/faq_debug.md b/docs/faq_debug.md index 29aed104a1f2..830ae3c9293d 100644 --- a/docs/faq_debug.md +++ b/docs/faq_debug.md @@ -133,4 +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). -- Try printing newline("\n"). Sometimes there is no output until newline is printed. +- Ensure all strings end with a newline character (`\n`). QMK Toolbox prints console output on a per-line basis.