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

pull/23406/head
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

@ -1,5 +1,7 @@
#include "oled_helper.h" #include "oled_helper.h"
#include "quantum.h" #include "progmem.h"
#include "rgblight.h"
#include "oled_driver.h"
#include <stdio.h> #include <stdio.h>
#include <string.h> #include <string.h>

View File

@ -14,8 +14,12 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#include QMK_KEYBOARD_H
#include "pimoroni_trackball.h" #include "pimoroni_trackball.h"
#include "i2c_master.h" #include "i2c_master.h"
#include "action.h"
#include "timer.h"
#include "print.h"
static uint8_t scrolling = 0; static uint8_t scrolling = 0;
static int16_t x_offset = 0; static int16_t x_offset = 0;

View File

@ -16,8 +16,10 @@
#pragma once #pragma once
#include "quantum.h" #include <stdint.h>
#include <stdbool.h>
#include "pointing_device.h" #include "pointing_device.h"
#include "report.h"
#ifndef TRACKBALL_ADDRESS #ifndef TRACKBALL_ADDRESS
# define TRACKBALL_ADDRESS (0x0A << 1) # define TRACKBALL_ADDRESS (0x0A << 1)

View File

@ -17,7 +17,6 @@
#pragma once #pragma once
#include "annepro2.h" #include "annepro2.h"
#include "quantum.h"
void annepro2_ble_bootload(void); void annepro2_ble_bootload(void);
void annepro2_ble_startup(void); void annepro2_ble_startup(void);

View File

@ -4,6 +4,9 @@
#include "satisfaction_core.h" #include "satisfaction_core.h"
#include "print.h" #include "print.h"
#include "debug.h" #include "debug.h"
#include "matrix.h"
#include "quantum.h"
#include "encoder.h"
#include <ch.h> #include <ch.h>
#include <hal.h> #include <hal.h>

View File

@ -3,7 +3,8 @@
#pragma once #pragma once
#include "quantum.h" #include <stdint.h>
#include <stdbool.h>
#include "via.h" // only for EEPROM address #include "via.h" // only for EEPROM address
#include "satisfaction_keycodes.h" #include "satisfaction_keycodes.h"

View File

@ -2,6 +2,7 @@
// SPDX-License-Identifier: GPL-2.0-or-later // SPDX-License-Identifier: GPL-2.0-or-later
#include "satisfaction_core.h" #include "satisfaction_core.h"
#include "backlight.h"
#include "eeprom.h" #include "eeprom.h"
void pre_encoder_mode_change(void){ void pre_encoder_mode_change(void){

View File

@ -2,6 +2,14 @@
// SPDX-License-Identifier: GPL-2.0-or-later // SPDX-License-Identifier: GPL-2.0-or-later
#include "satisfaction_core.h" #include "satisfaction_core.h"
#include "action_layer.h"
#include "action_util.h"
#include "timer.h"
#include "matrix.h"
#include "led.h"
#include "host.h"
#include "oled_driver.h"
#include "progmem.h"
#include <stdio.h> #include <stdio.h>
void draw_default(void); void draw_default(void);

View File

@ -40,6 +40,10 @@
*/ */
#include "max7219.h" #include "max7219.h"
#include "spi_master.h"
#include "debug.h"
#include "gpio.h"
#include "wait.h"
#include "font.h" #include "font.h"
// Datastructures // Datastructures

View File

@ -26,8 +26,10 @@
* OTHER DEALINGS IN THE SOFTWARE. * OTHER DEALINGS IN THE SOFTWARE.
*/ */
#pragma once #pragma once
#include "quantum.h"
#include "spi_master.h" #include <stddef.h>
#include <stdint.h>
#include <stdbool.h>
// Set defaults if they're not set // Set defaults if they're not set
#ifndef MAX7219_LOAD #ifndef MAX7219_LOAD

View File

@ -35,10 +35,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
#include "host.h" #include "host.h"
#include "keyboard.h" #include "keyboard.h"
extern "C" {
#include "quantum.h"
}
/* KEY CODE to Matrix /* KEY CODE to Matrix
* *
* HID keycode(1 byte): * HID keycode(1 byte):

View File

@ -38,7 +38,8 @@ POSSIBILITY OF SUCH DAMAGE.
#pragma once #pragma once
#include "quantum.h" #include <stdint.h>
#include "gpio.h"
#define XT_DATA_IN() \ #define XT_DATA_IN() \
do { \ do { \

View File

@ -1,6 +1,5 @@
#include <avr/io.h>
#include "duck_led.h" #include "duck_led.h"
#include "quantum.h" #include "wait.h"
void show(void) { void show(void) {
wait_us((RES / 1000UL) + 1); wait_us((RES / 1000UL) + 1);

View File

@ -12,13 +12,10 @@ You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>. along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#include "indicator_leds.h"
#include <avr/interrupt.h> #include <avr/interrupt.h>
#include <avr/io.h> #include <avr/io.h>
#include <stdbool.h>
#include <util/delay.h> #include <util/delay.h>
#include <stdint.h>
#include "indicator_leds.h"
#include "quantum.h"
#define LED_T1H 900 #define LED_T1H 900
#define LED_T1L 600 #define LED_T1L 600

View File

@ -1,5 +1,7 @@
#pragma once #pragma once
#include <stdint.h>
#include <stdbool.h>
#include "duck_led/duck_led.h" #include "duck_led/duck_led.h"
void backlight_init_ports(void); void backlight_init_ports(void);

View File

@ -15,8 +15,7 @@
*/ */
#pragma once #pragma once
#include "quantum.h" #include <stdbool.h>
void init_fallacy_leds(void); void init_fallacy_leds(void);
void update_fallacy_leds(void); void update_fallacy_leds(void);

View File

@ -1,4 +1,7 @@
#include "taphold.h" #include "taphold.h"
#include "action_layer.h"
#include "keyboard.h"
#include "timer.h"
bool taphold_process(uint16_t keycode, keyrecord_t *record) { bool taphold_process(uint16_t keycode, keyrecord_t *record) {
for (int i = 0; i < taphold_config_size; i++) { for (int i = 0; i < taphold_config_size; i++) {

View File

@ -1,6 +1,8 @@
#pragma once #pragma once
#include "quantum.h" #include <stdint.h>
#include <stdbool.h>
#include "action.h"
typedef enum taphold_mode_t { typedef enum taphold_mode_t {
TAPHOLD_LAYER, TAPHOLD_LAYER,

View File

@ -14,15 +14,15 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#include "quantum.h" #include "leds.h"
#include <string.h>
#include "i2c_master.h" #include "i2c_master.h"
#include "led_tables.h" #include "led_tables.h"
#include "rgb_matrix.h" #include "rgb_matrix.h"
#include <string.h> #include "wait.h"
#include "raise.h" #include "raise.h"
#include "wire-protocol-constants.h" #include "wire-protocol-constants.h"
#include "print.h" #include "print.h"
#include "leds.h"
// Color order of LEDs is Green, Red, Blue. // Color order of LEDs is Green, Red, Blue.
typedef struct PACKED { typedef struct PACKED {

View File

@ -16,8 +16,7 @@
#pragma once #pragma once
#include "quantum.h" #include <stdint.h>
#include "rgb_matrix.h"
extern const uint8_t led_map[RGB_MATRIX_LED_COUNT]; extern const uint8_t led_map[RGB_MATRIX_LED_COUNT];

View File

@ -14,9 +14,7 @@
* along with this program. If not, see <https://www.gnu.org/licenses/>. * along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
#include <spi_master.h> #include "spi_master.h"
#include "quantum.h"
#include "split_util.h" #include "split_util.h"
#include "transport.h" #include "transport.h"
#include "timer.h" #include "timer.h"

View File

@ -22,7 +22,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
#endif #endif
#include "eeconfig.h" #include "eeconfig.h"
#include "process_unicode.h" #include "process_unicode.h"
#include "quantum.h"
#ifdef RGBSPS_ENABLE #ifdef RGBSPS_ENABLE
#include "rgbsps.h" #include "rgbsps.h"
#include "rgbtheme.h" #include "rgbtheme.h"

View File

@ -1,5 +1,6 @@
#include "action.h" #include "action.h"
#include "left.h" #include "left.h"
#include "print.h"
#include "wait.h" #include "wait.h"
bool i2c_initialized = false; bool i2c_initialized = false;

View File

@ -1,9 +1,7 @@
#pragma once #pragma once
#include "quantum.h"
#include <stdint.h> #include <stdint.h>
#include "i2c_master.h" #include "i2c_master.h"
#include <util/delay.h>
#define MCP23017 #define MCP23017
#define MCP23017_A0 0 #define MCP23017_A0 0
@ -43,8 +41,6 @@ void left_scan(void);
uint8_t left_read_cols(void); uint8_t left_read_cols(void);
uint8_t left_get_col(uint8_t col); uint8_t left_get_col(uint8_t col);
matrix_row_t left_read_row(void);
void left_unselect_rows(void); void left_unselect_rows(void);
void left_select_row(uint8_t row); void left_select_row(uint8_t row);

View File

@ -2,6 +2,9 @@
// SPDX-License-Identifier: GPL-2.0-or-later // SPDX-License-Identifier: GPL-2.0-or-later
#include "specialk.h" #include "specialk.h"
#include "keycodes.h"
#include "action_layer.h"
#include "action_util.h"
bool delkey_registered = false; bool delkey_registered = false;
uint32_t __keycode_raised = 0; uint32_t __keycode_raised = 0;

View File

@ -5,8 +5,7 @@
#include <stdint.h> #include <stdint.h>
#include <stdbool.h> #include <stdbool.h>
#include "util.h" #include "action.h"
#include "quantum.h"
bool ID61_process_special_k(uint16_t keycode, keyrecord_t *record, bool arrow_mode, uint8_t k_norm, uint8_t k_spcl, uint8_t k_altr); bool ID61_process_special_k(uint16_t keycode, keyrecord_t *record, bool arrow_mode, uint8_t k_norm, uint8_t k_spcl, uint8_t k_altr);
bool ID61_backspace_special(uint16_t keycode, keyrecord_t *record); bool ID61_backspace_special(uint16_t keycode, keyrecord_t *record);

View File

@ -27,10 +27,11 @@
#ifdef RGB_MATRIX_ENABLE #ifdef RGB_MATRIX_ENABLE
#include "quantum.h"
#include "i2c_master.h" #include "i2c_master.h"
#include "gpio.h"
#include "chibios_config.h"
#include <string.h> #include <string.h>
#include <ch.h>
#include <hal.h> #include <hal.h>
static uint8_t i2c_address; static uint8_t i2c_address;

View File

@ -19,7 +19,6 @@
#include "print.h" #include "print.h"
#include "debug.h" #include "debug.h"
#include "matrix.h" #include "matrix.h"
#include "quantum.h"
#include "board.h" #include "board.h"
#include "i2c_master.h" #include "i2c_master.h"

View File

@ -13,7 +13,8 @@
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#include "quantum.h"
#include "leds.h"
#include "i2c_master.h" #include "i2c_master.h"
#include "led_tables.h" #include "led_tables.h"
#include "rgb_matrix.h" #include "rgb_matrix.h"

View File

@ -15,8 +15,7 @@
*/ */
#pragma once #pragma once
#include "quantum.h" #include <stdint.h>
#include "rgb_matrix.h"
void set_all_leds_to(uint8_t r, uint8_t g, uint8_t b); void set_all_leds_to(uint8_t r, uint8_t g, uint8_t b);
void set_led_to(int led, uint8_t r, uint8_t g, uint8_t b); void set_led_to(int led, uint8_t r, uint8_t g, uint8_t b);

View File

@ -18,9 +18,13 @@
#include "rgb_ring.h" #include "rgb_ring.h"
#include <stdint.h>
#include <stdbool.h>
#include <string.h> #include <string.h>
#include "quantum.h" #include "quantum.h"
#include "rgblight.h" #include "rgblight.h"
#include "timer.h"
#include "action.h"
#include "drivers/led/issi/is31fl3731.h" #include "drivers/led/issi/is31fl3731.h"
#include "i2c_master.h" #include "i2c_master.h"

View File

@ -14,8 +14,8 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#include "quantum.h"
#include "shift_register.h" #include "shift_register.h"
#include <string.h>
static void shift_out(void); static void shift_out(void);

View File

@ -16,6 +16,7 @@
#pragma once #pragma once
#include <stdint.h>
#include "gpio.h" #include "gpio.h"
#ifndef GPIOH_BASE #ifndef GPIOH_BASE

View File

@ -16,7 +16,7 @@
#include "spi_master.h" #include "spi_master.h"
#include "adns.h" #include "adns.h"
#include "debug.h" #include "debug.h"
#include "quantum.h" #include "wait.h"
#include "pointing_device.h" #include "pointing_device.h"
#include "adns9800_srom_A6.h" #include "adns9800_srom_A6.h"

View File

@ -15,6 +15,8 @@
*/ */
#pragma once #pragma once
#include <stdint.h>
void adns_begin(void); void adns_begin(void);
void adns_end(void); void adns_end(void);

View File

@ -15,7 +15,8 @@
*/ */
#pragma once #pragma once
#include "quantum.h" #include <stdint.h>
#include "gpio.h"
#define LED_ON 2 #define LED_ON 2
#define LED_DIM 1 #define LED_DIM 1

View File

@ -27,7 +27,10 @@ This will require a new communication protocol, as the current one is limited.
*/ */
#include "remote_kb.h" #include "remote_kb.h"
#include "quantum.h"
#include "uart.h" #include "uart.h"
#include "wait.h"
#include "debug.h"
uint8_t uint8_t
msg[UART_MSG_LEN], msg[UART_MSG_LEN],

View File

@ -15,7 +15,8 @@
*/ */
#pragma once #pragma once
#include "quantum.h" #include <stdint.h>
#include "action.h"
#define SERIAL_UART_BAUD 76800 //low error rate for 32u4 @ 16MHz #define SERIAL_UART_BAUD 76800 //low error rate for 32u4 @ 16MHz

View File

@ -15,7 +15,8 @@
*/ */
#pragma once #pragma once
#include "quantum.h" #include <stdint.h>
#include "gpio.h"
/* Optional big LED pins */ /* Optional big LED pins */
#define BIG_LED_R_PIN D7 #define BIG_LED_R_PIN D7

View File

@ -13,8 +13,15 @@
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#include "quantum.h"
#include "oled_display.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] = { static const char PROGMEM oled_mode_messages[5][15] = {
"", "",

View File

@ -15,6 +15,8 @@
*/ */
#pragma once #pragma once
#include <stdint.h>
typedef enum { typedef enum {
OLED_MODE_IDLE = 0, OLED_MODE_IDLE = 0,
OLED_MODE_VOLUME_UP = 1, OLED_MODE_VOLUME_UP = 1,

View File

@ -15,8 +15,11 @@
*/ */
#include "keycode_lookup.h" #include "keycode_lookup.h"
#include "quantum_keycodes.h"
#include "keymap_us.h"
#include "print.h" #include "print.h"
#include "via.h" #include "via.h"
#include "util.h"
#define num_keycodes ARRAY_SIZE(lookup_table) #define num_keycodes ARRAY_SIZE(lookup_table)
static char UNKNOWN_KEYCODE[] = "UNKNOWN"; static char UNKNOWN_KEYCODE[] = "UNKNOWN";
@ -289,7 +292,7 @@ lookup_table_t lookup_table[333] =
{"KC_QUES", KC_QUES}, {"KC_QUES", KC_QUES},
{"QK_BOOT", QK_BOOT}, {"QK_BOOT", QK_BOOT},
{"DB_TOGG", DB_TOGG}, {"DB_TOGG", DB_TOGG},
{"MAGIC_TOGGLE_NKRO", MAGIC_TOGGLE_NKRO}, {"NK_TOGG", NK_TOGG},
{"QK_GESC", QK_GESC}, {"QK_GESC", QK_GESC},
{"AU_ON", AU_ON}, {"AU_ON", AU_ON},
{"AU_OFF", AU_OFF}, {"AU_OFF", AU_OFF},

View File

@ -16,7 +16,7 @@
#pragma once #pragma once
#include "quantum.h" #include <stdint.h>
typedef struct typedef struct
{ {

View File

@ -35,10 +35,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
#include "host.h" #include "host.h"
#include "keyboard.h" #include "keyboard.h"
extern "C" {
#include "quantum.h"
}
/* KEY CODE to Matrix /* KEY CODE to Matrix
* *
* HID keycode(1 byte): * HID keycode(1 byte):

View File

@ -1,7 +1,8 @@
// Copyright 2023 zzeneg (@zzeneg) // Copyright 2023 zzeneg (@zzeneg)
// SPDX-License-Identifier: GPL-2.0-or-later // SPDX-License-Identifier: GPL-2.0-or-later
#include "quantum.h" #include <stdint.h>
#include <stdbool.h>
typedef enum { typedef enum {
_QWERTY = 0, _QWERTY = 0,

View File

@ -14,7 +14,6 @@
// - add `#define VIA_EEPROM_CUSTOM_CONFIG_SIZE 128` to config.h // - add `#define VIA_EEPROM_CUSTOM_CONFIG_SIZE 128` to config.h
// (or change to match CHANNELS*VALUES*2) // (or change to match CHANNELS*VALUES*2)
#include "quantum.h"
#include "via.h" #include "via.h"
#ifdef VIA_ENABLE #ifdef VIA_ENABLE

View File

@ -14,16 +14,15 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#include "quantum.h"
#include "wt_mono_backlight.h" #include "wt_mono_backlight.h"
#include "wt_rgb_backlight_api.h" // reuse these for now #include "wt_rgb_backlight_api.h" // reuse these for now
#include "wt_rgb_backlight_keycodes.h" // reuse these for now #include "wt_rgb_backlight_keycodes.h" // reuse these for now
#include <stdlib.h>
#include <avr/interrupt.h> #include <avr/interrupt.h>
#include "i2c_master.h" #include "i2c_master.h"
#include "host.h"
#include "progmem.h" #include "progmem.h"
#include "quantum/color.h"
#include "eeprom.h" #include "eeprom.h"
#include "via.h" // uses EEPROM address, lighting value IDs #include "via.h" // uses EEPROM address, lighting value IDs

View File

@ -19,6 +19,7 @@
#include <stdint.h> #include <stdint.h>
#include <stdbool.h> #include <stdbool.h>
#include "action.h"
#include "quantum/color.h" #include "quantum/color.h"
typedef struct PACKED typedef struct PACKED

View File

@ -40,19 +40,15 @@
#error wt_rgb_backlight.c compiled without setting configuration symbol #error wt_rgb_backlight.c compiled without setting configuration symbol
#endif #endif
#ifndef MAX
#define MAX(X, Y) ((X) > (Y) ? (X) : (Y))
#endif
#ifndef MIN
#define MIN(a,b) ((a) < (b)? (a): (b))
#endif
#include "quantum.h"
#include "wt_rgb_backlight.h" #include "wt_rgb_backlight.h"
#include "wt_rgb_backlight_api.h" #include "wt_rgb_backlight_api.h"
#include "wt_rgb_backlight_keycodes.h" #include "wt_rgb_backlight_keycodes.h"
#include <stdlib.h>
#include "quantum.h"
#include "host.h"
#include "util.h"
#if !defined(RGB_BACKLIGHT_HS60) && !defined(RGB_BACKLIGHT_NK65) && !defined(RGB_BACKLIGHT_NK87) && !defined(RGB_BACKLIGHT_NEBULA68) && !defined(RGB_BACKLIGHT_NEBULA12) && !defined (RGB_BACKLIGHT_KW_MEGA) #if !defined(RGB_BACKLIGHT_HS60) && !defined(RGB_BACKLIGHT_NK65) && !defined(RGB_BACKLIGHT_NK87) && !defined(RGB_BACKLIGHT_NEBULA68) && !defined(RGB_BACKLIGHT_NEBULA12) && !defined (RGB_BACKLIGHT_KW_MEGA)
#include <avr/interrupt.h> #include <avr/interrupt.h>
#include "i2c_master.h" #include "i2c_master.h"

View File

@ -23,6 +23,7 @@
#include <stdint.h> #include <stdint.h>
#include <stdbool.h> #include <stdbool.h>
#include "action.h"
#include "quantum/color.h" #include "quantum/color.h"
typedef struct PACKED typedef struct PACKED

View File

@ -15,6 +15,8 @@
*/ */
#pragma once #pragma once
#include "keycodes.h"
enum wt_rgb_backlight_keycodes { enum wt_rgb_backlight_keycodes {
BR_INC = QK_KB_0, // brightness increase BR_INC = QK_KB_0, // brightness increase
BR_DEC, // brightness decrease BR_DEC, // brightness decrease

View File

@ -15,6 +15,11 @@
*/ */
#include "rgb_functions.h" #include "rgb_functions.h"
#include <stdint.h>
#include "quantum.h"
#include "action.h"
#include "rgblight.h"
#include "rgb_matrix.h"
#ifdef RGBLIGHT_ENABLE #ifdef RGBLIGHT_ENABLE
#undef WS2812_DI_PIN #undef WS2812_DI_PIN

View File

@ -16,7 +16,7 @@
#pragma once #pragma once
#include "quantum.h" #include "keycodes.h"
#ifndef VIA_ENABLE #ifndef VIA_ENABLE
# ifndef RGB_MATRIX_TOGGLE # ifndef RGB_MATRIX_TOGGLE

View File

@ -15,6 +15,11 @@
*/ */
#include "navpad_prefs.h" #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) { bool process_record_kb(uint16_t keycode, keyrecord_t *record) {
if (!process_record_user(keycode, record)) { return false; } if (!process_record_user(keycode, record)) { return false; }

View File

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

View File

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

View File

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