]> git.gir.st - tmk_keyboard.git/blob - keyboard/infinity_chibios/Makefile
core: Change chibios repo directory names
[tmk_keyboard.git] / keyboard / infinity_chibios / Makefile
1 # Target file name (without extension).
2 PROJECT = ch
3
4 # Directory common source files exist
5 TMK_DIR = ../../tmk_core
6
7 # Directory keyboard dependent files exist
8 TARGET_DIR = .
9
10 # project specific files
11 SRC = matrix.c \
12 keymap_common.c \
13 led.c
14
15 ifdef KEYMAP
16 SRC := keymap_$(KEYMAP).c $(SRC)
17 else
18 SRC := keymap_plain.c $(SRC)
19 endif
20
21 CONFIG_H = config.h
22
23 ## chip/board settings
24 # - the next two should match the directories in
25 # <chibios>/os/hal/ports/$(MCU_FAMILY)/$(MCU_SERIES)
26 # - For Teensies, FAMILY = KINETIS and SERIES is either
27 # KL2x (LC) or K20x (3.0,3.1,3.2).
28 # - For Infinity KB, SERIES = K20x
29 MCU_FAMILY = KINETIS
30 MCU_SERIES = K20x
31
32 # Linker script to use
33 # - it should exist either in <chibios>/os/common/ports/ARMCMx/compilers/GCC/ld/
34 # or <this_dir>/ld/
35 # - NOTE: a custom ld script is needed for EEPROM on Teensy LC
36 # - LDSCRIPT =
37 # - MKL26Z64 for Teensy LC
38 # - MK20DX128 for Teensy 3.0
39 # - MK20DX256 for Teensy 3.1 and 3.2
40 # - MK20DX128BLDR4 for Infinity with Kiibohd bootloader
41 MCU_LDSCRIPT = MK20DX128BLDR4
42
43 # Startup code to use
44 # - it should exist in <chibios>/os/common/ports/ARMCMx/compilers/GCC/mk/
45 # - STARTUP =
46 # - kl2x for Teensy LC
47 # - k20x5 for Teensy 3.0 and Infinity KB
48 # - k20x7 for Teensy 3.1 and 3.2
49 MCU_STARTUP = k20x5
50
51 # Board: it should exist either in <chibios>/os/hal/boards/
52 # or <this_dir>/boards
53 # - BOARD =
54 # - PJRC_TEENSY_LC for Teensy LC
55 # - PJRC_TEENSY_3 for Teensy 3.0
56 # - PJRC_TEENSY_3_1 for Teensy 3.1 or 3.2
57 # - MCHCK_K20 for Infinity KB
58 BOARD = MCHCK_K20
59
60 # Cortex version
61 # Teensy LC is cortex-m0; Teensy 3.x are cortex-m4
62 MCU = cortex-m4
63
64 # ARM version, CORTEX-M0/M1 are 6, CORTEX-M3/M4/M7 are 7
65 # I.e. 6 for Teensy LC; 7 for Teensy 3.x
66 ARMV = 7
67
68 # Vector table for application
69 # 0x00000000-0x00001000 area is occupied by bootlaoder.*/
70 # The CORTEX_VTOR... is needed only for MCHCK/Infinity KB
71 OPT_DEFS = -DCORTEX_VTOR_INIT=0x00001000
72
73 # Build Options
74 # comment out to disable the options.
75 #
76 BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration
77 ## (Note that for BOOTMAGIC on Teensy LC you have to use a custom .ld script.)
78 MOUSEKEY_ENABLE = yes # Mouse keys
79 EXTRAKEY_ENABLE = yes # Audio control and System control
80 CONSOLE_ENABLE = yes # Console for debug
81 COMMAND_ENABLE = yes # Commands for debug and configuration
82 SLEEP_LED_ENABLE = yes # Breathing sleep LED during USB suspend
83 NKRO_ENABLE = yes # USB Nkey Rollover
84
85 include $(TMK_DIR)/tool/chibios/common.mk
86 include $(TMK_DIR)/tool/chibios/chibios.mk
87
88 program: $(BUILDDIR)/$(PROJECT).bin
89 dfu-util -D $(BUILDDIR)/$(PROJECT).bin
Imprint / Impressum