Merge pull request #1172 from nooges/hexwire-fixes
[jackhill/qmk/firmware.git] / tmk_core / protocol / lufa.mk
1 LUFA_DIR = protocol/lufa
2
3 # Path to the LUFA library
4 LUFA_PATH ?= $(LUFA_DIR)/LUFA-git
5
6
7 # Create the LUFA source path variables by including the LUFA makefile
8 ifneq (, $(wildcard $(TMK_PATH)/$(LUFA_PATH)/LUFA/Build/lufa_sources.mk))
9 # New build system from 20120730
10 LUFA_ROOT_PATH = $(LUFA_PATH)/LUFA
11 include $(TMK_PATH)/$(LUFA_PATH)/LUFA/Build/lufa_sources.mk
12 else
13 include $(TMK_PATH)/$(LUFA_PATH)/LUFA/makefile
14 endif
15
16 LUFA_SRC = lufa.c \
17 descriptor.c \
18 outputselect.c \
19 $(LUFA_SRC_USB)
20
21 ifeq ($(strip $(MIDI_ENABLE)), yes)
22 include $(TMK_PATH)/protocol/midi.mk
23 endif
24
25 ifeq ($(strip $(BLUETOOTH_ENABLE)), yes)
26 LUFA_SRC += $(LUFA_DIR)/bluetooth.c \
27 $(TMK_DIR)/protocol/serial_uart.c
28 endif
29
30 ifeq ($(strip $(BLUETOOTH)), AdafruitBLE)
31 LUFA_SRC += $(LUFA_DIR)/adafruit_ble.cpp
32 endif
33
34 ifeq ($(strip $(BLUETOOTH)), AdafruitEZKey)
35 LUFA_SRC += $(LUFA_DIR)/bluetooth.c \
36 $(TMK_DIR)/protocol/serial_uart.c
37 endif
38
39 ifeq ($(strip $(VIRTSER_ENABLE)), yes)
40 LUFA_SRC += $(LUFA_ROOT_PATH)/Drivers/USB/Class/Device/CDCClassDevice.c
41 endif
42
43 SRC += $(LUFA_SRC)
44
45 # Search Path
46 VPATH += $(TMK_PATH)/$(LUFA_DIR)
47 VPATH += $(TMK_PATH)/$(LUFA_PATH)
48
49 # Option modules
50 #ifdef $(or MOUSEKEY_ENABLE, PS2_MOUSE_ENABLE)
51 #endif
52
53 #ifdef EXTRAKEY_ENABLE
54 #endif
55
56 # LUFA library compile-time options and predefined tokens
57 LUFA_OPTS = -DUSB_DEVICE_ONLY
58 LUFA_OPTS += -DUSE_FLASH_DESCRIPTORS
59 LUFA_OPTS += -DUSE_STATIC_OPTIONS="(USB_DEVICE_OPT_FULLSPEED | USB_OPT_REG_ENABLED | USB_OPT_AUTO_PLL)"
60 #LUFA_OPTS += -DINTERRUPT_CONTROL_ENDPOINT
61 LUFA_OPTS += -DFIXED_CONTROL_ENDPOINT_SIZE=8
62 LUFA_OPTS += -DFIXED_CONTROL_ENDPOINT_SIZE=8
63 LUFA_OPTS += -DFIXED_NUM_CONFIGURATIONS=1
64
65 # Remote wakeup fix for ATmega32U2 https://github.com/tmk/tmk_keyboard/issues/361
66 ifeq ($(MCU),atmega32u2)
67 LUFA_OPTS += -DNO_LIMITED_CONTROLLER_CONNECT
68 endif
69
70 OPT_DEFS += -DF_USB=$(F_USB)UL
71 OPT_DEFS += -DARCH=ARCH_$(ARCH)
72 OPT_DEFS += $(LUFA_OPTS)
73
74 # This indicates using LUFA stack
75 OPT_DEFS += -DPROTOCOL_LUFA