Skip to content

Commit 147865c

Browse files
authored
Migrate some common features to generic (qmk#22403)
1 parent 4e577cb commit 147865c

File tree

9 files changed

+36
-72
lines changed

9 files changed

+36
-72
lines changed

builddefs/common_features.mk

+12-60
Original file line numberDiff line numberDiff line change
@@ -75,10 +75,7 @@ ifeq ($(strip $(AUDIO_ENABLE)), yes)
7575
endif
7676

7777
ifeq ($(strip $(SEQUENCER_ENABLE)), yes)
78-
OPT_DEFS += -DSEQUENCER_ENABLE
7978
MUSIC_ENABLE = yes
80-
SRC += $(QUANTUM_DIR)/sequencer/sequencer.c
81-
SRC += $(QUANTUM_DIR)/process_keycode/process_sequencer.c
8279
endif
8380

8481
ifeq ($(strip $(MIDI_ENABLE)), yes)
@@ -94,11 +91,6 @@ ifeq ($(strip $(MIDI_ENABLE)), yes)
9491
SRC += $(QUANTUM_DIR)/process_keycode/process_midi.c
9592
endif
9693

97-
MUSIC_ENABLE ?= no
98-
ifeq ($(MUSIC_ENABLE), yes)
99-
SRC += $(QUANTUM_DIR)/process_keycode/process_music.c
100-
endif
101-
10294
VALID_STENO_PROTOCOL_TYPES := geminipr txbolt all
10395
STENO_PROTOCOL ?= all
10496
ifeq ($(strip $(STENO_ENABLE)), yes)
@@ -124,14 +116,8 @@ ifeq ($(strip $(STENO_ENABLE)), yes)
124116
endif
125117
endif
126118

127-
ifeq ($(strip $(VIRTSER_ENABLE)), yes)
128-
OPT_DEFS += -DVIRTSER_ENABLE
129-
endif
130-
131119
ifeq ($(strip $(MOUSEKEY_ENABLE)), yes)
132-
OPT_DEFS += -DMOUSEKEY_ENABLE
133120
MOUSE_ENABLE := yes
134-
SRC += $(QUANTUM_DIR)/mousekey.c
135121
endif
136122

137123
VALID_POINTING_DEVICE_DRIVER_TYPES := adns5050 adns9800 analog_joystick cirque_pinnacle_i2c cirque_pinnacle_spi paw3204 pmw3320 pmw3360 pmw3389 pimoroni_trackball custom
@@ -360,18 +346,15 @@ ifeq ($(strip $(LED_MATRIX_ENABLE)), yes)
360346
endif
361347
OPT_DEFS += -DLED_MATRIX_ENABLE
362348
OPT_DEFS += -DLED_MATRIX_$(strip $(shell echo $(LED_MATRIX_DRIVER) | tr '[:lower:]' '[:upper:]'))
363-
ifneq (,$(filter $(MCU), atmega16u2 atmega32u2 at90usb162))
364-
# ATmegaxxU2 does not have hardware MUL instruction - lib8tion must be told to use software multiplication routines
365-
OPT_DEFS += -DLIB8_ATTINY
366-
endif
349+
367350
COMMON_VPATH += $(QUANTUM_DIR)/led_matrix
368351
COMMON_VPATH += $(QUANTUM_DIR)/led_matrix/animations
369352
COMMON_VPATH += $(QUANTUM_DIR)/led_matrix/animations/runners
370353
POST_CONFIG_H += $(QUANTUM_DIR)/led_matrix/post_config.h
371354
SRC += $(QUANTUM_DIR)/process_keycode/process_backlight.c
372355
SRC += $(QUANTUM_DIR)/led_matrix/led_matrix.c
373356
SRC += $(QUANTUM_DIR)/led_matrix/led_matrix_drivers.c
374-
SRC += $(LIB_PATH)/lib8tion/lib8tion.c
357+
LIB8TION_ENABLE := yes
375358
CIE1931_CURVE := yes
376359

377360
ifeq ($(strip $(LED_MATRIX_DRIVER)), is31fl3218)
@@ -463,18 +446,15 @@ ifeq ($(strip $(RGB_MATRIX_ENABLE)), yes)
463446
endif
464447
OPT_DEFS += -DRGB_MATRIX_ENABLE
465448
OPT_DEFS += -DRGB_MATRIX_$(strip $(shell echo $(RGB_MATRIX_DRIVER) | tr '[:lower:]' '[:upper:]'))
466-
ifneq (,$(filter $(MCU), atmega16u2 atmega32u2 at90usb162))
467-
# ATmegaxxU2 does not have hardware MUL instruction - lib8tion must be told to use software multiplication routines
468-
OPT_DEFS += -DLIB8_ATTINY
469-
endif
449+
470450
COMMON_VPATH += $(QUANTUM_DIR)/rgb_matrix
471451
COMMON_VPATH += $(QUANTUM_DIR)/rgb_matrix/animations
472452
COMMON_VPATH += $(QUANTUM_DIR)/rgb_matrix/animations/runners
473453
POST_CONFIG_H += $(QUANTUM_DIR)/rgb_matrix/post_config.h
474454
SRC += $(QUANTUM_DIR)/color.c
475455
SRC += $(QUANTUM_DIR)/rgb_matrix/rgb_matrix.c
476456
SRC += $(QUANTUM_DIR)/rgb_matrix/rgb_matrix_drivers.c
477-
SRC += $(LIB_PATH)/lib8tion/lib8tion.c
457+
LIB8TION_ENABLE := yes
478458
CIE1931_CURVE := yes
479459
RGB_KEYCODES_ENABLE := yes
480460

@@ -632,8 +612,6 @@ ifeq ($(strip $(VIA_ENABLE)), yes)
632612
RAW_ENABLE := yes
633613
BOOTMAGIC_ENABLE := yes
634614
TRI_LAYER_ENABLE := yes
635-
SRC += $(QUANTUM_DIR)/via.c
636-
OPT_DEFS += -DVIA_ENABLE
637615
endif
638616

639617
VALID_MAGIC_TYPES := yes
@@ -718,17 +696,20 @@ ifeq ($(strip $(SPLIT_KEYBOARD)), yes)
718696
COMMON_VPATH += $(QUANTUM_PATH)/split_common
719697
endif
720698

721-
ifeq ($(strip $(CRC_ENABLE)), yes)
722-
OPT_DEFS += -DCRC_ENABLE
723-
SRC += crc.c
724-
endif
725-
726699
ifeq ($(strip $(FNV_ENABLE)), yes)
727700
OPT_DEFS += -DFNV_ENABLE
728701
VPATH += $(LIB_PATH)/fnv
729702
SRC += qmk_fnv_type_validation.c hash_32a.c hash_64a.c
730703
endif
731704

705+
ifeq ($(strip $(LIB8TION_ENABLE)), yes)
706+
ifneq (,$(filter $(MCU), atmega16u2 atmega32u2 at90usb162))
707+
# ATmegaxxU2 does not have hardware MUL instruction - lib8tion must be told to use software multiplication routines
708+
OPT_DEFS += -DLIB8_ATTINY
709+
endif
710+
SRC += $(LIB_PATH)/lib8tion/lib8tion.c
711+
endif
712+
732713
VALID_HAPTIC_DRIVER_TYPES := drv2605l solenoid
733714
ifeq ($(strip $(HAPTIC_ENABLE)),yes)
734715
ifeq ($(filter $(HAPTIC_DRIVER),$(VALID_HAPTIC_DRIVER_TYPES)),)
@@ -819,27 +800,6 @@ ifeq ($(strip $(UNICODE_COMMON)), yes)
819800
$(QUANTUM_DIR)/unicode/utf8.c
820801
endif
821802

822-
MAGIC_ENABLE ?= yes
823-
ifeq ($(strip $(MAGIC_ENABLE)), yes)
824-
SRC += $(QUANTUM_DIR)/process_keycode/process_magic.c
825-
OPT_DEFS += -DMAGIC_KEYCODE_ENABLE
826-
endif
827-
828-
SEND_STRING_ENABLE ?= yes
829-
ifeq ($(strip $(SEND_STRING_ENABLE)), yes)
830-
OPT_DEFS += -DSEND_STRING_ENABLE
831-
COMMON_VPATH += $(QUANTUM_DIR)/send_string
832-
SRC += $(QUANTUM_DIR)/send_string/send_string.c
833-
endif
834-
835-
ifeq ($(strip $(AUTO_SHIFT_ENABLE)), yes)
836-
SRC += $(QUANTUM_DIR)/process_keycode/process_auto_shift.c
837-
OPT_DEFS += -DAUTO_SHIFT_ENABLE
838-
ifeq ($(strip $(AUTO_SHIFT_MODIFIERS)), yes)
839-
OPT_DEFS += -DAUTO_SHIFT_MODIFIERS
840-
endif
841-
endif
842-
843803
ifeq ($(strip $(PS2_MOUSE_ENABLE)), yes)
844804
PS2_ENABLE := yes
845805
MOUSE_ENABLE := yes
@@ -946,14 +906,6 @@ ifeq ($(strip $(ENCODER_ENABLE)), yes)
946906
endif
947907
endif
948908

949-
ifeq ($(strip $(OS_DETECTION_ENABLE)), yes)
950-
SRC += $(QUANTUM_DIR)/os_detection.c
951-
OPT_DEFS += -DOS_DETECTION_ENABLE
952-
ifeq ($(strip $(OS_DETECTION_DEBUG_ENABLE)), yes)
953-
OPT_DEFS += -DOS_DETECTION_DEBUG_ENABLE
954-
endif
955-
endif
956-
957909
VALID_WS2812_DRIVER_TYPES := bitbang custom i2c pwm spi vendor
958910

959911
WS2812_DRIVER ?= bitbang

builddefs/generic_features.mk

+15-3
Original file line numberDiff line numberDiff line change
@@ -13,33 +13,45 @@
1313
# You should have received a copy of the GNU General Public License
1414
# along with this program. If not, see <http://www.gnu.org/licenses/>.
1515

16-
SPACE_CADET_ENABLE ?= yes
1716
GRAVE_ESC_ENABLE ?= yes
17+
MAGIC_ENABLE ?= yes
18+
SEND_STRING_ENABLE ?= yes
19+
SPACE_CADET_ENABLE ?= yes
1820

1921
GENERIC_FEATURES = \
22+
AUTO_SHIFT \
2023
AUTOCORRECT \
2124
CAPS_WORD \
2225
COMBO \
2326
COMMAND \
27+
CRC \
2428
DEFERRED_EXEC \
2529
DIGITIZER \
2630
DIP_SWITCH \
2731
DYNAMIC_KEYMAP \
2832
DYNAMIC_MACRO \
33+
DYNAMIC_TAPPING_TERM \
2934
GRAVE_ESC \
3035
HAPTIC \
3136
KEY_LOCK \
3237
KEY_OVERRIDE \
3338
LEADER \
39+
MAGIC \
40+
MOUSEKEY \
41+
MUSIC \
42+
OS_DETECTION \
3443
PROGRAMMABLE_BUTTON \
3544
REPEAT_KEY \
3645
SECURE \
46+
SEND_STRING \
47+
SEQUENCER \
3748
SPACE_CADET \
3849
SWAP_HANDS \
3950
TAP_DANCE \
51+
TRI_LAYER \
52+
VIA \
53+
VIRTSER \
4054
WPM \
41-
DYNAMIC_TAPPING_TERM \
42-
TRI_LAYER
4355

4456
define HANDLE_GENERIC_FEATURE
4557
# $$(info "Processing: $1_ENABLE $2.c")

builddefs/show_options.mk

-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@ OTHER_OPTION_NAMES = \
3737
UNICODEMAP_ENABLE \
3838
UNICODE_COMMON \
3939
AUTO_SHIFT_ENABLE \
40-
AUTO_SHIFT_MODIFIERS \
4140
DYNAMIC_TAPPING_TERM_ENABLE \
4241
COMBO_ENABLE \
4342
KEY_LOCK_ENABLE \

docs/feature_os_detection.md

+7-2
Original file line numberDiff line numberDiff line change
@@ -36,10 +36,15 @@ This time is quite short, probably hundreds of milliseconds, but this data may b
3636

3737
If OS is guessed incorrectly, you may want to collect data about USB setup packets to refine the detection logic.
3838

39-
To do so in your `rules.mk` add:
39+
To do so in your `config.h` add:
40+
41+
```c
42+
#define OS_DETECTION_DEBUG_ENABLE
43+
```
44+
45+
And in your `rules.mk` add:
4046

4147
```make
42-
OS_DETECTION_DEBUG_ENABLE = yes
4348
CONSOLE_ENABLE = yes
4449
```
4550

keyboards/ergodox_ez/keymaps/hacker_dvorak/rules.mk

-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@ SWAP_HANDS_ENABLE = no # Allow swapping hands of keyboard.
3131
# POINTING_DEVICE_ENABLE = no
3232

3333
# AUTO_SHIFT_ENABLE = no
34-
# AUTO_SHIFT_MODIFIERS = no
3534

3635
# This don't need argument?
3736
# CUSTOM_MATRIX # Custom matrix file for the ErgoDox EZ

keyboards/keebio/levinson/keymaps/drogglbecher/rules.mk

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
AUTO_SHIFT_ENABLE = no
2-
AUTO_SHIFT_MODIFIERS = no
32
RGBLIGHT_ENABLE = no
43
BACKLIGHT_ENABLE = no
54
UNICODE_ENABLE = yes

keyboards/planck/keymaps/sascha/rules.mk

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
AUTO_SHIFT_ENABLE = no
2-
AUTO_SHIFT_MODIFIERS = no
32
UNICODE_ENABLE = yes
43
LTO_ENABLE = yes
54

keyboards/splitkb/aurora/sweep/keymaps/flinguenheld/rules.mk

-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ OLED_ENABLE = yes
1010

1111
MOUSEKEY_ENABLE = yes
1212
AUTO_SHIFT_ENABLE = yes
13-
AUTO_SHIFT_MODIFIERS = no
1413
COMBO_ENABLE = yes
1514
LEADER_ENABLE = yes
1615

quantum/quantum.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
# include "process_leader.h"
4141
#endif
4242

43-
#ifdef MAGIC_KEYCODE_ENABLE
43+
#ifdef MAGIC_ENABLE
4444
# include "process_magic.h"
4545
#endif
4646

@@ -366,7 +366,7 @@ bool process_record_quantum(keyrecord_t *record) {
366366
#ifdef SPACE_CADET_ENABLE
367367
process_space_cadet(keycode, record) &&
368368
#endif
369-
#ifdef MAGIC_KEYCODE_ENABLE
369+
#ifdef MAGIC_ENABLE
370370
process_magic(keycode, record) &&
371371
#endif
372372
#ifdef GRAVE_ESC_ENABLE

0 commit comments

Comments
 (0)