diff options
| author | Drashna Jaelre | 2021-11-19 22:22:45 +0100 |
|---|---|---|
| committer | GitHub | 2021-11-19 22:22:45 +0100 |
| commit | ac00b6da293d0318505e80df7069d1e3e4925547 (patch) | |
| tree | bd5712c5a56aa2476c1f0a20cf6aa91474dbaeb0 | |
| parent | 2728603fe6d73e805a539d337fd01051c46ca806 (diff) | |
[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
| -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 52f03c300f..adc6645f8e 100644 --- a/tmk_core/protocol/usb_hid/override_wiring.c +++ b/tmk_core/protocol/usb_hid/override_wiring.c @@ -3,7 +3,7 @@ */ #define __DELAY_BACKWARD_COMPATIBLE__ #include <util/delay.h> -#include "common/timer.h" +#include "platforms/timer.h" unsigned long millis(void) |