diff options
| author | Nick Brassel | 2023-11-28 06:39:48 +0100 |
|---|---|---|
| committer | Nick Brassel | 2023-11-28 06:40:47 +0100 |
| commit | 0115951de12bd4c798a43a380651c34552552e85 (patch) | |
| tree | 62999011ae782d93aa6dc9c889615db2a840cafc /docs/feature_os_detection.md | |
| parent | 0379d1f59e58cefa18cdb72ba1b77507d1108ae6 (diff) | |
| parent | 4d99e0a23cff02f4c6e55e093b5de08a9be0df7c (diff) | |
`develop` -> `master`, 2023q4 edition
Diffstat (limited to 'docs/feature_os_detection.md')
| -rw-r--r-- | docs/feature_os_detection.md | 9 |
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 ``` |