diff options
| author | QMK Bot | 2020-12-11 03:46:19 +0100 |
|---|---|---|
| committer | QMK Bot | 2020-12-11 03:46:19 +0100 |
| commit | fdfcce57e1c46765e0aebf37ad3d9611a7384241 (patch) | |
| tree | 9524405fef6cc3b16965517735dc0ef315f67ab1 /docs/ja/newbs_testing_debugging.md | |
| parent | ed76f4394fd95413f7da11e2342b0965182ccb95 (diff) | |
| parent | 501f2fdef115314713e94428d409e5c3b5bfc1c2 (diff) | |
Merge remote-tracking branch 'origin/master' into develop
Diffstat (limited to 'docs/ja/newbs_testing_debugging.md')
| -rw-r--r-- | docs/ja/newbs_testing_debugging.md | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/docs/ja/newbs_testing_debugging.md b/docs/ja/newbs_testing_debugging.md index b80e09fc70..41103bae97 100644 --- a/docs/ja/newbs_testing_debugging.md +++ b/docs/ja/newbs_testing_debugging.md @@ -45,7 +45,9 @@ void keyboard_post_init_user(void) { [custom code](ja/custom_quantum_functions.md)内からデバッグメッセージを出力すると便利な場合があります。それはとても簡単です。ファイルの先頭に`print.h`のインクルードを追加します: - #include <print.h> +```c +#include "print.h" +``` そのあとは、いくつかの異なった print 関数を使用することが出来ます。 |