diff options
author | Stefan Kerkmann <karlk90@pm.me> | 2022-07-12 21:54:33 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-12 21:54:33 +0200 |
commit | 45ffe42f1a26d14e372ff8e0a35441fd968e1494 (patch) | |
tree | 7997c73b5d847d1845f0563a8270fb1cfa6368c0 /platforms/chibios/_wait.h | |
parent | bbd6ea977c87dc610e487ef5b787047e09b0f551 (diff) | |
download | qmk_firmware-45ffe42f1a26d14e372ff8e0a35441fd968e1494.tar.gz qmk_firmware-45ffe42f1a26d14e372ff8e0a35441fd968e1494.zip |
[Fix] Make ChibiOS `_wait.h` independent of `quantum.h` (#17645)
Diffstat (limited to 'platforms/chibios/_wait.h')
-rw-r--r-- | platforms/chibios/_wait.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/platforms/chibios/_wait.h b/platforms/chibios/_wait.h index 21cdffe11a..c0ccbc5569 100644 --- a/platforms/chibios/_wait.h +++ b/platforms/chibios/_wait.h @@ -17,6 +17,7 @@ #include <ch.h> #include <hal.h> +#include "chibios_config.h" /* chThdSleepX of zero maps to infinite - so we map to a tiny delay to still yield */ #define wait_ms(ms) \ |