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/nullbitsco/nibble/keymaps/oled_status/oled_display.c | |
| parent | 408f6e43cd2522b6a4073bedcfbe2ee7df2603dd (diff) | |
Remove `quantum.h` includes from keyboard code (#23394)
Diffstat (limited to 'keyboards/nullbitsco/nibble/keymaps/oled_status/oled_display.c')
| -rw-r--r-- | keyboards/nullbitsco/nibble/keymaps/oled_status/oled_display.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/keyboards/nullbitsco/nibble/keymaps/oled_status/oled_display.c b/keyboards/nullbitsco/nibble/keymaps/oled_status/oled_display.c index c734e80cef..11a0e1f11e 100644 --- a/keyboards/nullbitsco/nibble/keymaps/oled_status/oled_display.c +++ b/keyboards/nullbitsco/nibble/keymaps/oled_status/oled_display.c @@ -13,8 +13,15 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ -#include "quantum.h" + #include "oled_display.h" +#include "keycodes.h" +#include "progmem.h" +#include "host.h" +#include "timer.h" +#include "wpm.h" +#include "rgblight.h" +#include "oled_driver.h" static const char PROGMEM oled_mode_messages[5][15] = { "", |