diff options
author | Drashna Jaelre <drashna@live.com> | 2021-11-19 13:22:45 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-19 21:22:45 +0000 |
commit | ac00b6da293d0318505e80df7069d1e3e4925547 (patch) | |
tree | bd5712c5a56aa2476c1f0a20cf6aa91474dbaeb0 /tmk_core | |
parent | 2728603fe6d73e805a539d337fd01051c46ca806 (diff) | |
download | qmk_firmware-ac00b6da293d0318505e80df7069d1e3e4925547.tar.gz qmk_firmware-ac00b6da293d0318505e80df7069d1e3e4925547.zip |
[Bug] Fix timer include in override_wiring.c (#15221)
* [Bug] Fix timer include in override_wiring.c
* add platforms to keep parity with old method
Diffstat (limited to 'tmk_core')
-rw-r--r-- | tmk_core/protocol/usb_hid/override_wiring.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tmk_core/protocol/usb_hid/override_wiring.c b/tmk_core/protocol/usb_hid/override_wiring.c index 52f03c300..adc6645f8 100644 --- a/tmk_core/protocol/usb_hid/override_wiring.c +++ b/tmk_core/protocol/usb_hid/override_wiring.c | |||
@@ -3,7 +3,7 @@ | |||
3 | */ | 3 | */ |
4 | #define __DELAY_BACKWARD_COMPATIBLE__ | 4 | #define __DELAY_BACKWARD_COMPATIBLE__ |
5 | #include <util/delay.h> | 5 | #include <util/delay.h> |
6 | #include "common/timer.h" | 6 | #include "platforms/timer.h" |
7 | 7 | ||
8 | 8 | ||
9 | unsigned long millis(void) | 9 | unsigned long millis(void) |