1 # Target file name (without extension).
4 # Directory common source filess exist
5 TMK_DIR = ../../tmk_core
7 # Directory keyboard dependent files exist
10 # keyboard dependent files
19 # MCU name, you MUST set this to match the board you are using
20 # type "make clean" after changing this, so all files will be rebuilt
26 # Processor frequency.
27 # Normally the first thing your program should do is set the clock prescaler,
28 # so your program will run at the correct speed. You should also set this
29 # variable to same clock speed. The _delay_ms() macro uses this, and many
30 # examples use this variable to calculate timings. Do not add a "UL" here.
32 # Xtal-less internal RC oscillator
37 # comment out to disable the options.
39 #MOUSEKEY_ENABLE = yes # Mouse keys
40 #EXTRAKEY_ENABLE = yes # Audio control and System control
41 #NKRO_ENABLE = yes # USB Nkey Rollover
42 NO_UART = yes # No UART debug(V-USB)
44 OPT_DEFS += -DNO_ACTION_TAPPING
45 OPT_DEFS += -DNO_ACTION_LAYER
46 OPT_DEFS += -DNO_ACTION_MACRO
50 #---------------- Programming Options --------------------------
52 # Type: avrdude -c ? to get a full listing.
53 #AVRDUDE_PROGRAMMER = usbasp
54 AVRDUDE_PROGRAMMER = avrispmkii
56 AVRDUDE_WRITE_FLASH = -U flash:w:$(TARGET).hex
57 #AVRDUDE_WRITE_EEPROM = -U eeprom:w:$(TARGET).eep
59 # Uncomment the following if you want avrdude's erase cycle counter.
60 # Note that this counter needs to be initialized first using -Yn,
62 #AVRDUDE_ERASE_COUNTER = -y
64 # Uncomment the following if you do /not/ wish a verification to be
65 # performed after programming the device.
66 #AVRDUDE_NO_VERIFY = -V
68 # Increase verbosity level. Please use this when submitting bug
69 # reports about avrdude. See <http://savannah.nongnu.org/projects/avrdude>
70 # to submit bug reports.
71 #AVRDUDE_VERBOSE = -v -v
73 #AVRDUDE_FLAGS = -p $(MCU) -P $(AVRDUDE_PORT) -c $(AVRDUDE_PROGRAMMER)
74 AVRDUDE_FLAGS = -p $(MCU) -c $(AVRDUDE_PROGRAMMER)
75 AVRDUDE_FLAGS += $(AVRDUDE_NO_VERIFY)
76 AVRDUDE_FLAGS += $(AVRDUDE_VERBOSE)
77 AVRDUDE_FLAGS += $(AVRDUDE_ERASE_COUNTER)
79 PROGRAM_CMD = $(AVRDUDE) $(AVRDUDE_FLAGS) $(AVRDUDE_WRITE_FLASH) $(AVRDUDE_WRITE_EEPROM)
82 # Boot Section Size in bytes
84 # Atmel DFU loader 4096
85 # LUFA bootloader 4096
87 OPT_DEFS += -DBOOTLOADER_SIZE=2048
91 VPATH += $(TARGET_DIR)
95 include $(TMK_DIR)/protocol.mk
96 include $(TMK_DIR)/common.mk
97 include $(TMK_DIR)/protocol/vusb.mk
98 include $(TMK_DIR)/rules.mk