diff options
Diffstat (limited to 'tmk_core/protocol/chibios.mk')
-rw-r--r-- | tmk_core/protocol/chibios.mk | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/tmk_core/protocol/chibios.mk b/tmk_core/protocol/chibios.mk index 3f4e0a71f..6e7cfbd83 100644 --- a/tmk_core/protocol/chibios.mk +++ b/tmk_core/protocol/chibios.mk | |||
@@ -4,7 +4,16 @@ CHIBIOS_DIR = $(PROTOCOL_DIR)/chibios | |||
4 | 4 | ||
5 | SRC += $(CHIBIOS_DIR)/usb_main.c | 5 | SRC += $(CHIBIOS_DIR)/usb_main.c |
6 | SRC += $(CHIBIOS_DIR)/main.c | 6 | SRC += $(CHIBIOS_DIR)/main.c |
7 | SRC += usb_descriptor.c | ||
7 | 8 | ||
8 | VPATH += $(TMK_PATH)/$(PROTOCOL_DIR) | 9 | VPATH += $(TMK_PATH)/$(PROTOCOL_DIR) |
9 | VPATH += $(TMK_PATH)/$(CHIBIOS_DIR) | 10 | VPATH += $(TMK_PATH)/$(CHIBIOS_DIR) |
11 | VPATH += $(TMK_PATH)/$(CHIBIOS_DIR)/lufa_utils | ||
12 | |||
13 | OPT_DEFS += -DFIXED_CONTROL_ENDPOINT_SIZE=64 | ||
14 | OPT_DEFS += -DFIXED_NUM_CONFIGURATIONS=1 | ||
15 | |||
16 | ifeq ($(strip $(MIDI_ENABLE)), yes) | ||
17 | include $(TMK_PATH)/protocol/midi.mk | ||
18 | endif | ||
10 | 19 | ||