]> git.gir.st - tmk_keyboard.git/blob - keyboard/chibi_onekey/Makefile
Add eeprom support for chibios/kinetis.
[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. Either set it here, or define it in
42 # ./bootloader_defs.h or in ./boards/<FOO>/bootloader_defs.h (if you have
43 # a custom board definition that you plan to reuse).
44 # If you're not setting it here, leave it commented out.
45 # It is chip dependent, the correct number can be looked up here (page 175):
46 # http://www.st.com/web/en/resource/technical/document/application_note/CD00167594.pdf
47 # This also requires a patch to chibios:
48 # <tmk_dir>/tmk_core/tool/chibios/ch-bootloader-jump.patch
49 #STM32_BOOTLOADER_ADDRESS = 0x1FFFC800
50
51 # Build Options
52 # comment out to disable the options.
53 #
54 #BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration
55 MOUSEKEY_ENABLE = yes # Mouse keys
56 EXTRAKEY_ENABLE = yes # Audio control and System control
57 CONSOLE_ENABLE = yes # Console for debug
58 COMMAND_ENABLE = yes # Commands for debug and configuration
59 SLEEP_LED_ENABLE = yes # Breathing sleep LED during USB suspend
60 NKRO_ENABLE = yes # USB Nkey Rollover
61
62 include $(TMK_DIR)/tool/chibios/common.mk
63 include $(TMK_DIR)/tool/chibios/chibios.mk
Imprint / Impressum