1
0
tmk_keyboard/keyboard/chibi_onekey/Makefile

60 righe
1.8 KiB
Makefile

2015-09-10 09:32:15 +00:00
# Target file name (without extension).
PROJECT = ch
TARGET = alps64
# Directory common source files exist
TMK_DIR = ../../tmk_core
# Directory keyboard dependent files exist
TARGET_DIR = .
# project specific files
SRC = matrix.c \
led.c
ifdef KEYMAP
SRC := keymap_$(KEYMAP).c $(SRC)
else
SRC := keymap_plain.c $(SRC)
endif
CONFIG_H = config.h
2015-09-10 11:50:41 +00:00
## chip/board settings
# the next two should match the directories in
# <chibios>/os/hal/ports/$(MCU_FAMILY)/$(MCU_SERIES)
2015-09-10 09:32:15 +00:00
MCU_FAMILY = STM32
MCU_SERIES = STM32F0xx
# linker script to use
2015-09-10 11:50:41 +00:00
# it should exist either in <chibios>/os/common/ports/ARMCMx/compilers/GCC/ld/
# or <this_dir>/ld/
2015-09-15 07:52:03 +00:00
MCU_LDSCRIPT = STM32F072xB
# startup code to use
# is should exist in <chibios>/os/common/ports/ARMCMx/compilers/GCC/mk/
MCU_STARTUP = stm32f0xx
2015-09-10 11:50:41 +00:00
# it should exist either in <chibios>/os/hal/boards/
# or <this_dir>/boards
2015-09-10 09:32:15 +00:00
BOARD = ST_STM32F072B_DISCOVERY
2015-09-15 07:52:03 +00:00
# ARM version, CORTEX-M0/M1 are 6, CORTEX-M3/M4/M7 are 7
2015-09-10 09:32:15 +00:00
ARMV = 6
# If you want to be able to jump to bootloader from firmware (on STM32 MCUs),
# set the correct BOOTLOADER_ADDRESS here. Otherwise leave commented out.
# It is chip dependent, the correct number can be looked up here (page 175):
# http://www.st.com/web/en/resource/technical/document/application_note/CD00167594.pdf
# This also requires a patch to chibios: <tmk_dir>/tmk_core/
BOOTLOADER_ADDRESS = 0x1FFFC800
# Build Options
# comment out to disable the options.
#
#BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration
MOUSEKEY_ENABLE = yes # Mouse keys
EXTRAKEY_ENABLE = yes # Audio control and System control
CONSOLE_ENABLE = yes # Console for debug
COMMAND_ENABLE = yes # Commands for debug and configuration
SLEEP_LED_ENABLE = yes # Breathing sleep LED during USB suspend
2015-09-10 11:50:41 +00:00
NKRO_ENABLE = yes # USB Nkey Rollover
2015-09-10 09:32:15 +00:00
include $(TMK_DIR)/tool/chibios/common.mk
include $(TMK_DIR)/tool/chibios/chibios.mk