]> git.gir.st - tmk_keyboard.git/blob - keyboard/stm32_f072_onekey/Makefile
build with ./make and flash with ./make flash
[tmk_keyboard.git] / keyboard / stm32_f072_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 # Cortex version
39 # Teensy LC is cortex-m0; Teensy 3.x are cortex-m4
40 MCU = cortex-m0
41 # ARM version, CORTEX-M0/M1 are 6, CORTEX-M3/M4/M7 are 7
42 ARMV = 6
43 # If you want to be able to jump to bootloader from firmware on STM32 MCUs,
44 # set the correct BOOTLOADER_ADDRESS. Either set it here, or define it in
45 # ./bootloader_defs.h or in ./boards/<FOO>/bootloader_defs.h (if you have
46 # a custom board definition that you plan to reuse).
47 # If you're not setting it here, leave it commented out.
48 # It is chip dependent, the correct number can be looked up here (page 175):
49 # http://www.st.com/web/en/resource/technical/document/application_note/CD00167594.pdf
50 # This also requires a patch to chibios:
51 # <tmk_dir>/tmk_core/tool/chibios/ch-bootloader-jump.patch
52 #STM32_BOOTLOADER_ADDRESS = 0x1FFFC800
53
54 # Build Options
55 # comment out to disable the options.
56 #
57 #BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration
58 ## BOOTMAGIC is not supported on STM32 chips yet.
59 MOUSEKEY_ENABLE = yes # Mouse keys
60 EXTRAKEY_ENABLE = yes # Audio control and System control
61 CONSOLE_ENABLE = yes # Console for debug
62 COMMAND_ENABLE = yes # Commands for debug and configuration
63 SLEEP_LED_ENABLE = yes # Breathing sleep LED during USB suspend
64 NKRO_ENABLE = yes # USB Nkey Rollover
65
66 include $(TMK_DIR)/tool/chibios/common.mk
67 include $(TMK_DIR)/tool/chibios/chibios.mk
Imprint / Impressum