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