summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorJoel Challis <git@zvecr.com>2023-11-09 02:01:44 +0000
committerGitHub <noreply@github.com>2023-11-09 02:01:44 +0000
commit147865cf57feaf9dfb59aeeffa8b1d541c064d93 (patch)
treedb1ac7a65897d8a858dd3c58040b7e516cc5d997 /docs
parent4e577cbbea4c9cb63b9d4e352262ab8dbfb7eead (diff)
Migrate some common features to generic (#22403)
Diffstat (limited to 'docs')
-rw-r--r--docs/feature_os_detection.md9
1 files changed, 7 insertions, 2 deletions
diff --git a/docs/feature_os_detection.md b/docs/feature_os_detection.md
index f32e419807..907638bcfa 100644
--- a/docs/feature_os_detection.md
+++ b/docs/feature_os_detection.md
@@ -36,10 +36,15 @@ This time is quite short, probably hundreds of milliseconds, but this data may b
If OS is guessed incorrectly, you may want to collect data about USB setup packets to refine the detection logic.
-To do so in your `rules.mk` add:
+To do so in your `config.h` add:
+
+```c
+#define OS_DETECTION_DEBUG_ENABLE
+```
+
+And in your `rules.mk` add:
```make
-OS_DETECTION_DEBUG_ENABLE = yes
CONSOLE_ENABLE = yes
```