Skip to content

Commit

Permalink
quantum.h: clean up process_keycode includes (#21579)
Browse files Browse the repository at this point in the history
  • Loading branch information
fauxpark authored Jul 29, 2023
1 parent 2db947f commit 4af6f1d
Show file tree
Hide file tree
Showing 2 changed files with 47 additions and 36 deletions.
52 changes: 46 additions & 6 deletions quantum/quantum.c
Original file line number Diff line number Diff line change
Expand Up @@ -16,24 +16,64 @@

#include "quantum.h"

#if defined(BACKLIGHT_ENABLE) || defined(LED_MATRIX_ENABLE)
# include "process_backlight.h"
#endif

#ifdef BLUETOOTH_ENABLE
# include "outputselect.h"
#endif

#ifdef BACKLIGHT_ENABLE
# include "backlight.h"
#ifdef GRAVE_ESC_ENABLE
# include "process_grave_esc.h"
#endif

#ifdef HAPTIC_ENABLE
# include "process_haptic.h"
#endif

#ifdef JOYSTICK_ENABLE
# include "process_joystick.h"
#endif

#ifdef LEADER_ENABLE
# include "process_leader.h"
#endif

#ifdef MAGIC_KEYCODE_ENABLE
# include "process_magic.h"
#endif

#ifdef MIDI_ENABLE
# include "process_midi.h"
#endif

#ifdef VELOCIKEY_ENABLE
# include "velocikey.h"
#ifdef PROGRAMMABLE_BUTTON_ENABLE
# include "process_programmable_button.h"
#endif

#ifdef HAPTIC_ENABLE
# include "haptic.h"
#if defined(RGBLIGHT_ENABLE) || defined(RGB_MATRIX_ENABLE)
# include "process_rgb.h"
#endif

#ifdef SECURE_ENABLE
# include "process_secure.h"
#endif

#ifdef TRI_LAYER_ENABLE
# include "process_tri_layer.h"
#endif

#ifdef UNICODE_COMMON_ENABLE
# include "process_unicode_common.h"
#endif

#ifdef UNICODE_ENABLE
# include "process_unicode.h"
#endif

#ifdef VELOCIKEY_ENABLE
# include "velocikey.h"
#endif

#ifdef AUDIO_ENABLE
Expand Down
31 changes: 1 addition & 30 deletions quantum/quantum.h
Original file line number Diff line number Diff line change
Expand Up @@ -93,17 +93,8 @@ extern layer_state_t layer_state;
# include "process_music.h"
#endif

#if defined(BACKLIGHT_ENABLE) || defined(LED_MATRIX_ENABLE)
# include "process_backlight.h"
#endif

#ifdef LEADER_ENABLE
# include "leader.h"
# include "process_leader.h"
#endif

#ifdef UNICODE_ENABLE
# include "process_unicode.h"
#endif

#ifdef UCIS_ENABLE
Expand All @@ -116,7 +107,6 @@ extern layer_state_t layer_state;

#ifdef UNICODE_COMMON_ENABLE
# include "unicode.h"
# include "process_unicode_common.h"
#endif

#ifdef KEY_OVERRIDE_ENABLE
Expand Down Expand Up @@ -147,24 +137,8 @@ extern layer_state_t layer_state;
# include "process_space_cadet.h"
#endif

#ifdef MAGIC_KEYCODE_ENABLE
# include "process_magic.h"
#endif

#ifdef JOYSTICK_ENABLE
# include "process_joystick.h"
#endif

#ifdef PROGRAMMABLE_BUTTON_ENABLE
# include "process_programmable_button.h"
#endif

#ifdef GRAVE_ESC_ENABLE
# include "process_grave_esc.h"
#endif

#if defined(RGBLIGHT_ENABLE) || defined(RGB_MATRIX_ENABLE)
# include "process_rgb.h"
# include "programmable_button.h"
#endif

#ifdef HD44780_ENABLE
Expand All @@ -177,7 +151,6 @@ extern layer_state_t layer_state;

#ifdef HAPTIC_ENABLE
# include "haptic.h"
# include "process_haptic.h"
#endif

#ifdef OLED_ENABLE
Expand All @@ -202,7 +175,6 @@ extern layer_state_t layer_state;

#ifdef SECURE_ENABLE
# include "secure.h"
# include "process_secure.h"
#endif

#ifdef DYNAMIC_KEYMAP_ENABLE
Expand Down Expand Up @@ -248,7 +220,6 @@ extern layer_state_t layer_state;

#ifdef TRI_LAYER_ENABLE
# include "tri_layer.h"
# include "process_tri_layer.h"
#endif

#ifdef REPEAT_KEY_ENABLE
Expand Down

0 comments on commit 4af6f1d

Please sign in to comment.