diff options
author | Joy Lee <chang.li@westberrytech.com> | 2021-11-27 06:28:18 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-27 09:28:18 +1100 |
commit | 68838bb700413144c6fdaf680f3d412b8231b584 (patch) | |
tree | 771e7fea9bc145c9e833ac66dcb712af9b55e532 /platforms/chibios/platform.mk | |
parent | b04f66f2452494206673323c9495ea6a56c0cb06 (diff) |
Westberrytech pr (#14422)
* Added support for WB32 MCU
* Modified eeprom_wb32.c
* Remove the eeprom_wb32-related code
Diffstat (limited to 'platforms/chibios/platform.mk')
-rw-r--r-- | platforms/chibios/platform.mk | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/platforms/chibios/platform.mk b/platforms/chibios/platform.mk index 1c8d430074..45e3377882 100644 --- a/platforms/chibios/platform.mk +++ b/platforms/chibios/platform.mk @@ -141,6 +141,10 @@ ifdef STM32_BOOTLOADER_ADDRESS OPT_DEFS += -DSTM32_BOOTLOADER_ADDRESS=$(STM32_BOOTLOADER_ADDRESS) endif +ifdef WB32_BOOTLOADER_ADDRESS + OPT_DEFS += -DWB32_BOOTLOADER_ADDRESS=$(WB32_BOOTLOADER_ADDRESS) +endif + # Work out if we need to set up the include for the bootloader definitions ifneq ("$(wildcard $(KEYBOARD_PATH_5)/bootloader_defs.h)","") OPT_DEFS += -include $(KEYBOARD_PATH_5)/bootloader_defs.h |