]> git.gir.st - tmk_keyboard.git/blob - keyboard/chibi_onekey/Makefile
Rename some Makefile defines.
[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 settings
24 # the next two should match the directories in
25 # <chibios>/os/hal/ports/$(MCU_FAMILY)/$(MCU_SERIES)
26 MCU_FAMILY = STM32
27 MCU_SERIES = STM32F0xx
28 # linker script to use
29 # it should exist either in <chibios>/os/common/ports/ARMCMx/compilers/GCC/ld/
30 # or <this_dir>/ld/
31 MCU_LDSCRIPT = STM32F072xB
32 # startup code to use
33 # is should exist in <chibios>/os/common/ports/ARMCMx/compilers/GCC/mk/
34 MCU_STARTUP = stm32f0xx
35 # it should exist either in <chibios>/os/hal/boards/
36 # or <this_dir>/boards
37 BOARD = ST_STM32F072B_DISCOVERY
38 # ARM version, CORTEX-M0/M1 are 6, CORTEX-M3/M4/M7 are 7
39 ARMV = 6
40 # If you want to be able to jump to bootloader from firmware (on STM32 MCUs),
41 # set the correct BOOTLOADER_ADDRESS here. Otherwise leave commented out.
42 # It is chip dependent, the correct number can be looked up here (page 175):
43 # http://www.st.com/web/en/resource/technical/document/application_note/CD00167594.pdf
44 # This also requires a patch to chibios: <tmk_dir>/tmk_core/
45 BOOTLOADER_ADDRESS = 0x1FFFC800
46
47 # Build Options
48 # comment out to disable the options.
49 #
50 #BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration
51 MOUSEKEY_ENABLE = yes # Mouse keys
52 EXTRAKEY_ENABLE = yes # Audio control and System control
53 CONSOLE_ENABLE = yes # Console for debug
54 COMMAND_ENABLE = yes # Commands for debug and configuration
55 SLEEP_LED_ENABLE = yes # Breathing sleep LED during USB suspend
56 NKRO_ENABLE = yes # USB Nkey Rollover
57
58 include $(TMK_DIR)/tool/chibios/common.mk
59 include $(TMK_DIR)/tool/chibios/chibios.mk
Imprint / Impressum