forked from forks/qmk_firmware
4057d44989
* Add Kyria keymap * clean split hand detection code * rename "joystick" to "thumbstick" * thumbstick overhaul * removed angle correction, seems buggy * save some memory * Remove deprecated config option * Use the correct types for getting host led states * Fix include path * Made .h files for encoder and oled code * Increase speed cap on thumbstick
22 lines
628 B
Makefile
22 lines
628 B
Makefile
CONSOLE_ENABLE = yes # Console for debug
|
|
ENCODER_ENABLE = yes # ENables the use of one or more encoders
|
|
RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow
|
|
MOUSEKEY_ENABLE = no # Mouse keys
|
|
OLED_DRIVER_ENABLE = yes # Enables the use of OLED displays
|
|
THUMBSTICK_ENABLE = yes # Enables analog thumbstick code
|
|
|
|
ifeq ($(strip $(ENCODER_ENABLE)), yes)
|
|
SRC += encoder_utils.c
|
|
endif
|
|
|
|
ifeq ($(strip $(OLED_DRIVER_ENABLE)), yes)
|
|
SRC += oled_utils.c
|
|
endif
|
|
|
|
ifeq ($(strip $(THUMBSTICK_ENABLE)), yes)
|
|
POINTING_DEVICE_ENABLE = yes
|
|
OPT_DEFS += -DTHUMBSTICK_ENABLE
|
|
SRC += analog.c
|
|
SRC += thumbstick.c
|
|
endif
|