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
21 #MCU = at90usb162 # Teensy 1.0
22 #MCU = atmega32u4 # Teensy 2.0
23 #MCU = at90usb646 # Teensy++ 1.0
24 #MCU = at90usb1286 # Teensy++ 2.0
25 MCU ?= atmega32u2 # TMK Converter Rev.2
28 # Processor frequency.
29 # This will define a symbol, F_CPU, in all source code files equal to the
30 # processor frequency in Hz. You can then use this symbol in your source code to
31 # calculate timings. Do NOT tack on a 'UL' at the end, this will be done
32 # automatically to create a 32-bit value in your source code.
34 # This will be an integer division of F_USB below, as it is sourced by
35 # F_USB after it has run through any CPU prescalers. Note that this value
36 # does not *change* the processor frequency - it should merely be updated to
37 # reflect the processor speed set externally so that the code can use accurate
45 # Target architecture (see library "Board Types" documentation).
48 # Input clock frequency.
49 # This will define a symbol, F_USB, in all source code files equal to the
50 # input clock frequency (before any prescaling is performed) in Hz. This value may
51 # differ from F_CPU if prescaling is used on the latter, and is required as the
52 # raw input clock is fed directly to the PLL sections of the AVR for high speed
53 # clock generation for the USB and other AVR subsections. Do NOT tack on a 'UL'
54 # at the end, this will be done automatically to create a 32-bit value in your
57 # If no clock division is performed on the input clock inside the AVR (via the
58 # CPU clock adjust registers or the clock division fuses), this will be equal to F_CPU.
61 # Interrupt driven control endpoint task(+60)
62 OPT_DEFS += -DINTERRUPT_CONTROL_ENDPOINT
65 # Boot Section Size in *bytes*
67 # Teensy++ halfKay 1024
68 # Atmel DFU loader 4096
69 # LUFA bootloader 4096
71 OPT_DEFS += -DBOOTLOADER_SIZE=4096
75 # *Comment out* to disable the options.
77 BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration(+1000)
78 MOUSEKEY_ENABLE = yes # Mouse keys(+5000)
79 EXTRAKEY_ENABLE = yes # Audio control and System control(+600)
80 CONSOLE_ENABLE = yes # Console for debug
81 COMMAND_ENABLE = yes # Commands for debug and configuration
82 #NKRO_ENABLE = yes # USB Nkey Rollover(+500)
86 VPATH += $(TARGET_DIR)
90 include $(TMK_DIR)/protocol.mk
91 include $(TMK_DIR)/protocol/lufa.mk
92 include $(TMK_DIR)/common.mk
93 include $(TMK_DIR)/rules.mk