]> git.gir.st - tmk_keyboard.git/blob - keyboard/stm32_f103_onekey/Makefile
pana_m8: Add initial files
[tmk_keyboard.git] / keyboard / stm32_f103_onekey / Makefile
1 # Target file name (without extension).
2 PROJECT = ch
3
4 # Directory common source files exist
5 TMK_DIR = ../../tmk_core
6
7 # Directory keyboard dependent files exist
8 TARGET_DIR = .
9
10 # project specific files
11 SRC = matrix.c \
12 led.c
13
14 ifdef KEYMAP
15 SRC := keymap_$(KEYMAP).c $(SRC)
16 else
17 SRC := keymap_plain.c $(SRC)
18 endif
19
20 CONFIG_H = config.h
21
22 # GENERIC STM32F103C8T6 board - stm32duino bootloader
23 OPT_DEFS = -DCORTEX_VTOR_INIT=0x2000
24 MCU_LDSCRIPT = STM32F103x8_stm32duino_bootloader
25 BOARD = GENERIC_STM32_F103
26
27 # GENERIC STM32F103C8T6 board - no bootloader (programmer over serial or SWD)
28 # OPT_DEFS =
29 # MCU_LDSCRIPT = STM32F103x8
30 # BOARD = GENERIC_STM32_F103
31
32 # MAPLE MINI
33 # OPT_DEFS = -DCORTEX_VTOR_INIT=0x5000
34 # MCU_LDSCRIPT = STM32F103xB_maplemini_bootloader
35 # BOARD = MAPLEMINI_STM32_F103
36
37 ## chip/board settings
38 # the next two should match the directories in
39 # <chibios>/os/hal/ports/$(MCU_FAMILY)/$(MCU_SERIES)
40 MCU_FAMILY = STM32
41 MCU_SERIES = STM32F1xx
42 # linker script to use
43 # it should exist either in <chibios>/os/common/ports/ARMCMx/compilers/GCC/ld/
44 # or <this_dir>/ld/
45 # startup code to use
46 # is should exist in <chibios>/os/common/ports/ARMCMx/compilers/GCC/mk/
47 MCU_STARTUP = stm32f1xx
48 # it should exist either in <chibios>/os/hal/boards/
49 # or <this_dir>/boards
50 # Cortex version
51 # Teensy LC is cortex-m0; Teensy 3.x are cortex-m4
52 MCU = cortex-m3
53 # ARM version, CORTEX-M0/M1 are 6, CORTEX-M3/M4/M7 are 7
54 ARMV = 7
55 # If you want to be able to jump to bootloader from firmware on STM32 MCUs,
56 # set the correct BOOTLOADER_ADDRESS. Either set it here, or define it in
57 # ./bootloader_defs.h or in ./boards/<FOO>/bootloader_defs.h (if you have
58 # a custom board definition that you plan to reuse).
59 # If you're not setting it here, leave it commented out.
60 # It is chip dependent, the correct number can be looked up here (page 175):
61 # http://www.st.com/web/en/resource/technical/document/application_note/CD00167594.pdf
62 # This also requires a patch to chibios:
63 # <tmk_dir>/tmk_core/tool/chibios/ch-bootloader-jump.patch
64 #STM32_BOOTLOADER_ADDRESS = 0x1FFFC800
65
66 # Build Options
67 # comment out to disable the options.
68 #
69 #BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration
70 ## BOOTMAGIC is not supported on STM32 chips yet.
71 MOUSEKEY_ENABLE = yes # Mouse keys
72 EXTRAKEY_ENABLE = yes # Audio control and System control
73 # CONSOLE_ENABLE = yes # Console for debug
74 COMMAND_ENABLE = yes # Commands for debug and configuration
75 SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend
76 NKRO_ENABLE = yes # USB Nkey Rollover
77
78 include $(TMK_DIR)/tool/chibios/common.mk
79 include $(TMK_DIR)/tool/chibios/chibios.mk
Imprint / Impressum