Added define for USE_OPT for OpenBlt

This commit is contained in:
AlexRMach 2022-07-17 11:20:37 +03:00
parent c57d5b6f1e
commit 82967b4567
1 changed files with 5 additions and 4 deletions

View File

@ -119,11 +119,7 @@ include $(CHIBIOS)/tools/mk/autobuild.mk
include $(CHIBIOS)/os/hal/lib/streams/streams.mk
# Define linker script file here
ifeq ("$(USE_OPENBLT)","yes")
LDSCRIPT= STM32F103xB_sent.ld
else
LDSCRIPT= $(STARTUPLD)/STM32F103xB.ld
endif
# C sources that can be compiled in ARM or THUMB mode depending on the global
# setting.
CSRC = $(ALLCSRC)
@ -178,6 +174,11 @@ ULIBDIR =
# List all user libraries here
ULIBS =
ifeq ($(USE_OPENBLT),yes)
# Reserve start of flash for OpenBLT
USE_OPT += -Wl,--defsym=USE_BOOTLOADER=1
endif
#
# End of user section
##############################################################################