]> git.gir.st - tmk_keyboard.git/blob - keyboard/chibi_onekey/Makefile
Add chibi_onekey example.
[tmk_keyboard.git] / keyboard / chibi_onekey / Makefile
1 # Target file name (without extension).
2 PROJECT = ch
3 TARGET = alps64
4
5 # Directory common source files exist
6 TMK_DIR = ../../tmk_core
7
8 # Directory keyboard dependent files exist
9 TARGET_DIR = .
10
11 # project specific files
12 SRC = matrix.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
24 MCU_FAMILY = STM32
25 MCU_SERIES = STM32F0xx
26 # linker script to use
27 MCU_MODEL_FAMILY = STM32F072xB
28 # the directory in board/
29 BOARD = ST_STM32F072B_DISCOVERY
30 # ARM version, M0/M1 are 6, M3/M4/M7 are 7
31 ARMV = 6
32 # If you want to be able to jump to bootloader from firmware (on STM32 MCUs),
33 # set the correct BOOTLOADER_ADDRESS here. Otherwise leave commented out.
34 # It is chip dependent, the correct number can be looked up here (page 175):
35 # http://www.st.com/web/en/resource/technical/document/application_note/CD00167594.pdf
36 # This also requires a patch to chibios: <tmk_dir>/tmk_core/
37 BOOTLOADER_ADDRESS = 0x1FFFC800
38
39 # Build Options
40 # comment out to disable the options.
41 #
42 #BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration
43 MOUSEKEY_ENABLE = yes # Mouse keys
44 EXTRAKEY_ENABLE = yes # Audio control and System control
45 CONSOLE_ENABLE = yes # Console for debug
46 COMMAND_ENABLE = yes # Commands for debug and configuration
47 SLEEP_LED_ENABLE = yes # Breathing sleep LED during USB suspend
48 #NKRO_ENABLE = yes # USB Nkey Rollover
49
50 include $(TMK_DIR)/tool/chibios/common.mk
51 include $(TMK_DIR)/tool/chibios/chibios.mk
Imprint / Impressum