Remove quantum.h includes from keyboard code (#23394)

This commit is contained in:
Ryan 2024-04-03 10:44:25 +11:00 committed by GitHub
parent 408f6e43cd
commit c635733a7f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
60 changed files with 123 additions and 70 deletions

View file

@ -15,6 +15,11 @@
*/
#include "navpad_prefs.h"
#include "quantum.h"
#include "action.h"
#include "action_layer.h"
#include "rgblight.h"
#include "led.h"
bool process_record_kb(uint16_t keycode, keyrecord_t *record) {
if (!process_record_user(keycode, record)) { return false; }

View file

@ -16,7 +16,7 @@
#pragma once
#include "quantum.h"
#include "keycodes.h"
enum custom_keycodes {
TAP_00 = QK_KB_0

View file

@ -16,7 +16,9 @@
#pragma once
#include "quantum.h"
#include <stdint.h>
#include <stdbool.h>
#include "color.h"
enum layer_names {
_CONTROL,

View file

@ -3,6 +3,7 @@ RGB_MATRIX_EFFECT(quick17_rgbm_effect)
#ifdef RGB_MATRIX_CUSTOM_EFFECT_IMPLS
#include "quick17_prefs.h"
#include "quantum.h"
#define LED_LAYOUT(\
L00, L01, L02, L03, L04, L05, \