summaryrefslogtreecommitdiff
path: root/users/mtei/user_featues.mk
blob: 243e80dde93a98c35b7a758b808b342cc517de87 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
# 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