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/zh-cn/newbs_testing_debugging.md | |
| parent | ed76f4394fd95413f7da11e2342b0965182ccb95 (diff) | |
| parent | 501f2fdef115314713e94428d409e5c3b5bfc1c2 (diff) | |
Merge remote-tracking branch 'origin/master' into develop
Diffstat (limited to 'docs/zh-cn/newbs_testing_debugging.md')
| -rw-r--r-- | docs/zh-cn/newbs_testing_debugging.md | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/docs/zh-cn/newbs_testing_debugging.md b/docs/zh-cn/newbs_testing_debugging.md index 4edceee41a..38e6346c4b 100644 --- a/docs/zh-cn/newbs_testing_debugging.md +++ b/docs/zh-cn/newbs_testing_debugging.md @@ -34,7 +34,9 @@ void keyboard_post_init_user(void) { 有时用[custom code](custom_quantum_functions.md)发送自定义调试信息很有用. 这么做很简单. 首先在你文件头部包含`print.h`: - #include <print.h> +```c +#include "print.h" +``` 之后,您可以使用一些不同的打印功能: |