1 # Target file name (without extension).
4 # Directory common source filess exist
5 TMK_DIR ?= ../../tmk_core
7 # Directory keyboard dependent files exist
10 # project specific files
18 # atmega32u4 Teensy2.0
19 # atemga32u4 TMK Converter rev.1
20 # atemga32u2 TMK Converter rev.2
23 # Processor frequency.
24 # This will define a symbol, F_CPU, in all source code files equal to the
25 # processor frequency in Hz. You can then use this symbol in your source code to
26 # calculate timings. Do NOT tack on a 'UL' at the end, this will be done
27 # automatically to create a 32-bit value in your source code.
29 # This will be an integer division of F_USB below, as it is sourced by
30 # F_USB after it has run through any CPU prescalers. Note that this value
31 # does not *change* the processor frequency - it should merely be updated to
32 # reflect the processor speed set externally so that the code can use accurate
40 # Target architecture (see library "Board Types" documentation).
43 # Input clock frequency.
44 # This will define a symbol, F_USB, in all source code files equal to the
45 # input clock frequency (before any prescaling is performed) in Hz. This value may
46 # differ from F_CPU if prescaling is used on the latter, and is required as the
47 # raw input clock is fed directly to the PLL sections of the AVR for high speed
48 # clock generation for the USB and other AVR subsections. Do NOT tack on a 'UL'
49 # at the end, this will be done automatically to create a 32-bit value in your
52 # If no clock division is performed on the input clock inside the AVR (via the
53 # CPU clock adjust registers or the clock division fuses), this will be equal to F_CPU.
57 # Boot Section Size in *bytes*
59 # Teensy++ halfKay 1024
60 # Atmel DFU loader 4096 for TMK Converter rev.1/rev.2
61 # LUFA bootloader 4096
63 BOOTLOADER_SIZE ?= 4096
64 OPT_DEFS += -DBOOTLOADER_SIZE=$(BOOTLOADER_SIZE)
68 # comment out to disable the options.
70 BOOTMAGIC_ENABLE ?= no # Virtual DIP switch configuration(+1000)
71 MOUSEKEY_ENABLE ?= yes # Mouse keys(+4700)
72 EXTRAKEY_ENABLE ?= yes # Audio control and System control(+450)
73 CONSOLE_ENABLE ?= yes # Console for debug(+400)
74 COMMAND_ENABLE ?= yes # Commands for debug and configuration
75 NKRO_ENABLE ?= no # USB Nkey Rollover
76 ADB_MOUSE_ENABLE ?= yes # ADB Mouse support
77 UNIMAP_ENABLE ?= yes # Use unimap
78 ACTIONMAP_ENABLE ?= no # Use 16bit actionmap instead of 8bit keymap
79 KEYMAP_SECTION_ENABLE ?= yes # fixed address keymap for keymap editor
81 # ADB Mice need acceleration for todays much bigger screens.
83 OPT_DEFS += -DADB_MOUSE_MAXACC=$(ADB_MOUSE_MAXACC)
86 # Optimize size but this may cause error "relocation truncated to fit"
87 #EXTRALDFLAGS = -Wl,--relax
93 ifeq (yes,$(strip $(UNIMAP_ENABLE)))
96 ifeq (yes,$(strip $(ACTIONMAP_ENABLE)))
97 KEYMAP_FILE = actionmap
103 SRC := $(KEYMAP_FILE)_$(KEYMAP).c $(SRC)
105 SRC := $(KEYMAP_FILE)_plain.c $(SRC)
110 VPATH += $(TARGET_DIR)
113 include $(TMK_DIR)/protocol/lufa.mk
114 include $(TMK_DIR)/protocol.mk
115 include $(TMK_DIR)/common.mk
116 include $(TMK_DIR)/rules.mk