2020-09-18 20:00:18 -07:00
|
|
|
# MCU name
|
|
|
|
MCU = STM32F411
|
2019-11-27 07:54:02 -08:00
|
|
|
|
|
|
|
# Linker script to use
|
|
|
|
# - it should exist either in <chibios>/os/common/ports/ARMCMx/compilers/GCC/ld/
|
|
|
|
# or <this_dir>/ld/
|
|
|
|
MCU_LDSCRIPT = noah_boot
|
|
|
|
|
|
|
|
# Board: it should exist either in <chibios>/os/hal/boards/
|
|
|
|
# or <this_dir>/boards
|
2021-01-19 05:35:24 -08:00
|
|
|
BOARD = ST_NUCLEO64_F411RE
|
2019-11-27 07:54:02 -08:00
|
|
|
|
2022-02-06 19:09:21 -08:00
|
|
|
# Bootloader selection
|
|
|
|
BOOTLOADER = custom
|
|
|
|
|
2019-11-27 07:54:02 -08:00
|
|
|
# Build Options
|
2021-12-12 18:05:37 -08:00
|
|
|
# change yes to no to disable
|
2019-11-27 07:54:02 -08:00
|
|
|
#
|
2021-11-04 14:18:09 -07:00
|
|
|
BOOTMAGIC_ENABLE = yes # Enable Bootmagic Lite
|
2020-03-07 05:19:06 -08:00
|
|
|
MOUSEKEY_ENABLE = yes # Mouse keys
|
2019-11-27 07:54:02 -08:00
|
|
|
EXTRAKEY_ENABLE = yes # Audio control and System control
|
|
|
|
CONSOLE_ENABLE = no # Console for debug
|
|
|
|
COMMAND_ENABLE = no # Commands for debug and configuration
|
2021-12-08 21:05:44 -08:00
|
|
|
NKRO_ENABLE = no # Enable N-Key Rollover
|
2020-03-07 05:19:06 -08:00
|
|
|
NO_USB_STARTUP_CHECK = yes # Disable initialization only when usb is plugged in
|
2019-11-27 07:54:02 -08:00
|
|
|
|
|
|
|
RGB_MATRIX_ENABLE = yes
|
|
|
|
|
|
|
|
RGBLIGHT_ENABLE = yes
|
|
|
|
RGBLIGHT_CUSTOM_DRIVER = yes
|
2023-03-29 18:21:02 -07:00
|
|
|
WS2812_DRIVER_REQUIRED = yes
|
2019-11-27 07:54:02 -08:00
|
|
|
|
2020-03-07 05:19:06 -08:00
|
|
|
CUSTOM_MATRIX = yes
|
2019-11-27 07:54:02 -08:00
|
|
|
# project specific files
|
2023-03-29 18:21:02 -07:00
|
|
|
SRC += matrix.c
|