diff options
| author | Ryan | 2024-04-03 01:44:25 +0200 |
|---|---|---|
| committer | GitHub | 2024-04-03 01:44:25 +0200 |
| commit | c635733a7fd48c6692d818ac8621571cbc5f470a (patch) | |
| tree | 93ecd160d846ed3b5cca3e4abe2f30441030ea55 /keyboards/molecule | |
| parent | 408f6e43cd2522b6a4073bedcfbe2ee7df2603dd (diff) | |
Remove `quantum.h` includes from keyboard code (#23394)
Diffstat (limited to 'keyboards/molecule')
| -rw-r--r-- | keyboards/molecule/adns.c | 2 | ||||
| -rw-r--r-- | keyboards/molecule/adns.h | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/keyboards/molecule/adns.c b/keyboards/molecule/adns.c index 96fc83ee0b..0648193557 100644 --- a/keyboards/molecule/adns.c +++ b/keyboards/molecule/adns.c @@ -16,7 +16,7 @@ #include "spi_master.h" #include "adns.h" #include "debug.h" -#include "quantum.h" +#include "wait.h" #include "pointing_device.h" #include "adns9800_srom_A6.h" diff --git a/keyboards/molecule/adns.h b/keyboards/molecule/adns.h index d684d3cbcb..e557aeb2ec 100644 --- a/keyboards/molecule/adns.h +++ b/keyboards/molecule/adns.h @@ -15,6 +15,8 @@ */ #pragma once +#include <stdint.h> + void adns_begin(void); void adns_end(void); |