diff options
author | smiley <smiley@users.noreply.github.com> | 2021-01-23 23:41:29 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-23 13:41:29 -0800 |
commit | d6701b3ac7b05dc6f8ce87b525af14932d5c0f27 (patch) | |
tree | 1dd1fb65cbbca29dbe0170bddbbfbb12a2d9502f /docs/faq_debug.md | |
parent | 05a4583ce89ae12c8f978fe015ebab387f649575 (diff) | |
download | qmk_firmware-d6701b3ac7b05dc6f8ce87b525af14932d5c0f27.tar.gz qmk_firmware-d6701b3ac7b05dc6f8ce87b525af14932d5c0f27.zip |
Fix typos and reword some sentences in FAQs (#11546)
* Fix minor typo in "General FAQ"
"want to do brand it with QMK" -> "want to brand it with QMK"
* Reword some of "Debugging FAQ" & "Miscellaneous FAQ".
Mostly grammatical wording of some parts and missing capitalization
Diffstat (limited to 'docs/faq_debug.md')
-rw-r--r-- | docs/faq_debug.md | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/docs/faq_debug.md b/docs/faq_debug.md index b2d09605b..872b1688e 100644 --- a/docs/faq_debug.md +++ b/docs/faq_debug.md | |||
@@ -98,7 +98,7 @@ When debug console of your device is not ready you will see like this: | |||
98 | Waiting for device:......... | 98 | Waiting for device:......... |
99 | ``` | 99 | ``` |
100 | 100 | ||
101 | once the device is plugged in then *hid_listen* finds it you will get this message: | 101 | Once the device is plugged in then *hid_listen* finds it you will get this message: |
102 | 102 | ||
103 | ``` | 103 | ``` |
104 | Waiting for new device:......................... | 104 | Waiting for new device:......................... |
@@ -107,13 +107,12 @@ Listening: | |||
107 | 107 | ||
108 | If you can't get this 'Listening:' message try building with `CONSOLE_ENABLE=yes` in [Makefile] | 108 | If you can't get this 'Listening:' message try building with `CONSOLE_ENABLE=yes` in [Makefile] |
109 | 109 | ||
110 | You may need privilege to access the device on OS like Linux. | 110 | You may need privileges to access the device an OS like Linux. Try `sudo hid_listen`. |
111 | - try `sudo hid_listen` | ||
112 | 111 | ||
113 | ## Can't Get Message on Console | 112 | ## Can't Get Message on Console |
114 | Check: | 113 | Check: |
115 | - *hid_listen* finds your device. See above. | 114 | - *hid_listen* finds your device. See above. |
116 | - Enable debug with pressing **Magic**+d. See [Magic Commands](https://github.com/tmk/tmk_keyboard#magic-commands). | 115 | - Enable debug by pressing **Magic**+d. See [Magic Commands](https://github.com/tmk/tmk_keyboard#magic-commands). |
117 | - set `debug_enable=true`. See [Debugging](#debugging) | 116 | - Set `debug_enable=true`. See [Debugging](#debugging) |
118 | - try using 'print' function instead of debug print. See **common/print.h**. | 117 | - Try using `print` function instead of debug print. See **common/print.h**. |
119 | - disconnect other devices with console function. See [Issue #97](https://github.com/tmk/tmk_keyboard/issues/97). | 118 | - Disconnect other devices with console function. See [Issue #97](https://github.com/tmk/tmk_keyboard/issues/97). |