33d568e29b
* add users/mtei/key_blocks.h This change does not alter the binary of the build result. Moved common macro definitions in the following files to users/mtei/key_blocks.h. * keyboards/helix/rev2/keymaps/five_rows/keymap.c * keyboards/helix/rev3_5rows/keymaps/five_rows/keymap.c * remove INIT_HELIX_OLED() in helix:five_rows This change does not alter the binary of the build result. * update helix/pico/keymaps/mtei/keymap.c Changed helix/pico/keymaps/mtei/keymap.c to use users/mtei/key_blocks.h. This change does not alter the binary of the build result. * Remove old SSD1306OLED code from users/mtei/oled_display.c This change does not alter the binary of the build result. * add options ENABLE_COLEMAK, ENABLE_DVORAK and ENABLE_EUCALYN into five_rows/keymap.c * add users/mtei/{config.h,rules.mk,user_featues.mk,user_options.mk} * move layer_names[] from users/mtei/oled_display.c to keymaps/five_rows/keymap.c * Update keyboards/helix/pico/keymaps/mtei/config.h Co-authored-by: Ryan <fauxpark@gmail.com> * Update keyboards/helix/pico/keymaps/mtei/config.h Co-authored-by: Ryan <fauxpark@gmail.com> * Update keyboards/helix/pico/keymaps/mtei/keymap.c Co-authored-by: Ryan <fauxpark@gmail.com> * Update keyboards/helix/rev2/keymaps/five_rows/config.h Co-authored-by: Ryan <fauxpark@gmail.com> * Update keyboards/helix/rev2/keymaps/five_rows/config.h Co-authored-by: Ryan <fauxpark@gmail.com> * Update keyboards/helix/rev2/keymaps/five_rows/keymap.c Co-authored-by: Ryan <fauxpark@gmail.com> * Update keyboards/helix/rev3_5rows/keymaps/five_rows/config.h Co-authored-by: Ryan <fauxpark@gmail.com> * Update keyboards/helix/rev3_5rows/keymaps/five_rows/config.h Co-authored-by: Ryan <fauxpark@gmail.com> * Update keyboards/helix/rev3_5rows/keymaps/five_rows/keymap.c Co-authored-by: Ryan <fauxpark@gmail.com> * Update users/mtei/config.h Co-authored-by: Ryan <fauxpark@gmail.com> * Update users/mtei/config.h Co-authored-by: Ryan <fauxpark@gmail.com> * Update users/mtei/cpp_map.h Co-authored-by: Ryan <fauxpark@gmail.com> * Update users/mtei/cpp_map.h Co-authored-by: Ryan <fauxpark@gmail.com> * Update users/mtei/debug_config.h Co-authored-by: Ryan <fauxpark@gmail.com> * Update users/mtei/debug_config.h Co-authored-by: Ryan <fauxpark@gmail.com> * Update users/mtei/layer_number_util.h Co-authored-by: Ryan <fauxpark@gmail.com> Co-authored-by: Ryan <fauxpark@gmail.com>
60 lines
1.6 KiB
Makefile
60 lines
1.6 KiB
Makefile
# Copyright (c) 2022 Takeshi Ishii (mtei@github)
|
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
ifeq ($(strip $(LED_ANIMATIONS)), yes)
|
|
OPT_DEFS += -DLED_ANIMATIONS
|
|
OPT_DEFS += -DLED_ANIMATIONS_LEVEL=2
|
|
endif
|
|
|
|
ifeq ($(strip $(LED_ANIMATIONS)), mini)
|
|
OPT_DEFS += -DLED_ANIMATIONS
|
|
OPT_DEFS += -DLED_ANIMATIONS_LEVEL=1
|
|
endif
|
|
|
|
ifeq ($(strip $(DEBUG_CONFIG)), yes)
|
|
OPT_DEFS += -DDEBUG_CONFIG
|
|
endif
|
|
|
|
ifeq ($(strip $(CUSTOM_MATRIX_DELAY)),on-demand)
|
|
SRC += matrix_output_unselect_delay_ondemand.c
|
|
endif
|
|
|
|
ifneq ($(strip $(MDELAY)),)
|
|
OPT_DEFS += -DMATRIX_IO_DELAY=$(strip $(MDELAY))
|
|
endif
|
|
|
|
ifeq ($(strip $(ENABLE_COLEMAK)),yes)
|
|
OPT_DEFS += -DENABLE_COLEMAK
|
|
endif
|
|
|
|
ifeq ($(strip $(ENABLE_DVORAK)),yes)
|
|
OPT_DEFS += -DENABLE_DVORAK
|
|
endif
|
|
|
|
ifeq ($(strip $(ENABLE_EUCALYN)),yes)
|
|
OPT_DEFS += -DENABLE_EUCALYN
|
|
endif
|
|
|
|
ifeq ($(strip $(ENCODER_ENABLE)),yes)
|
|
SRC += encoder_update_user.c
|
|
endif
|
|
|
|
ifeq ($(strip $(DEBUG_ENCODER)),yes)
|
|
OPT_DEFS += -DENCODER_DETECT_OVER_SPEED
|
|
endif
|
|
|
|
ifneq ($(strip $(SYNC_TIMER_ENABLE)),yes)
|
|
OPT_DEFS += -DDISABLE_SYNC_TIMER
|
|
endif
|
|
|
|
ifneq ($(strip $(USROPT)),)
|
|
$(info -)
|
|
$(info - CONSOLE_ENABLE = $(CONSOLE_ENABLE))
|
|
$(info - OLED_ENABLE = $(OLED_ENABLE))
|
|
$(info - RGBLIGHT_ENABLE = $(RGBLIGHT_ENABLE))
|
|
$(info - ENCODER_ENABLE = $(ENCODER_ENABLE))
|
|
$(info - MDELAY = $(MDELAY))
|
|
$(info - CUSTOM_MATRIX_DELAY = $(CUSTOM_MATRIX_DELAY))
|
|
$(info - DEBUG_MATRIX_SCAN_RATE_ENABLE = $(DEBUG_MATRIX_SCAN_RATE_ENABLE))
|
|
$(info - OPT_DEFS = $(OPT_DEFS))
|
|
endif
|