1 # Target file name (without extension).
4 # Directory common source files exist
5 TMK_DIR = ../../tmk_core
7 # Directory keyboard dependent files exist
10 # project specific files
15 SRC := keymap_$(KEYMAP).c $(SRC)
17 SRC := keymap_plain.c $(SRC)
22 ## chip/board settings
23 # - the next two should match the directories in
24 # <chibios>/os/hal/ports/$(MCU_FAMILY)/$(MCU_SERIES)
25 # - For Teensies, FAMILY = KINETIS and SERIES is either
26 # KL2x (LC) or K20x (3.0,3.1,3.2).
27 # - For Infinity KB, SERIES = K20x
31 # Linker script to use
32 # - it should exist either in <chibios>/os/common/ports/ARMCMx/compilers/GCC/ld/
34 # - NOTE: a custom ld script is needed for EEPROM on Teensy LC
36 # - MKL26Z64 for Teensy LC
37 # - MK20DX128 for Teensy 3.0
38 # - MK20DX256 for Teensy 3.1 and 3.2
39 # - MK20DX128BLDR4 for Infinity with Kiibohd bootloader
40 MCU_LDSCRIPT = MK20DX128BLDR4
43 # - it should exist in <chibios>/os/common/ports/ARMCMx/compilers/GCC/mk/
45 # - kl2x for Teensy LC
46 # - k20x5 for Teensy 3.0 and Infinity KB
47 # - k20x7 for Teensy 3.1 and 3.2
50 # Board: it should exist either in <chibios>/os/hal/boards/
51 # or <this_dir>/boards
53 # - PJRC_TEENSY_LC for Teensy LC
54 # - PJRC_TEENSY_3 for Teensy 3.0
55 # - PJRC_TEENSY_3_1 for Teensy 3.1 or 3.2
56 # - MCHCK_K20 for Infinity KB
60 # Teensy LC is cortex-m0; Teensy 3.x are cortex-m4
63 # ARM version, CORTEX-M0/M1 are 6, CORTEX-M3/M4/M7 are 7
64 # I.e. 6 for Teensy LC; 7 for Teensy 3.x
67 # Vector table for application
68 # 0x00000000-0x00001000 area is occupied by bootlaoder.*/
69 # The CORTEX_VTOR... is needed only for MCHCK/Infinity KB
70 OPT_DEFS = -DCORTEX_VTOR_INIT=0x00001000
73 # comment out to disable the options.
75 BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration
76 ## (Note that for BOOTMAGIC on Teensy LC you have to use a custom .ld script.)
77 MOUSEKEY_ENABLE = yes # Mouse keys
78 EXTRAKEY_ENABLE = yes # Audio control and System control
79 CONSOLE_ENABLE = yes # Console for debug
80 COMMAND_ENABLE = yes # Commands for debug and configuration
81 SLEEP_LED_ENABLE = yes # Breathing sleep LED during USB suspend
82 NKRO_ENABLE = yes # USB Nkey Rollover
84 include $(TMK_DIR)/tool/chibios/common.mk
85 include $(TMK_DIR)/tool/chibios/chibios.mk
87 program: $(BUILDDIR)/$(PROJECT).bin
88 dfu-util -D $(BUILDDIR)/$(PROJECT).bin