You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

15 lines
328 B

ifeq ($(strip $(LEDS_ENABLE)), yes)
OPT_DEFS += -DLEDS_ENABLE
SRC += ../common/leds.c
endif
ifeq ($(strip $(OLED_ENABLE)), yes)
SRC += ../common/oled.c
endif
ifeq ($(strip $(THUMBSTICK_ENABLE)), yes)
# POINTING_DEVICE_ENABLE = yes
OPT_DEFS += -DTHUMBSTICK_ENABLE
SRC += analog.c
SRC += ../common/thumbstick.c
endif