68a3f6b4b7
* Add F5 target, lp5562 driver and api-hal-light. Update api-usage, switch to F5 by default. * API HAL: add i2c and hardware version api. Dolphin: show hardware version. * OTP version generator and flashing utility. * Assets script: fix code formatting * Backport F5 changes to F4 * F4: disable insomnia, prevent damage to BLE RX path * F5 HAL API Light: remove magic delay to fix magic BLE * Dolphin: HW target validation on start * invert RSSI indication in sub-1 * API HAL: rename board to body in version api * Gpio tester: detach and release viewport on exit Co-authored-by: aanper <mail@s3f.ru>
30 lines
1.3 KiB
Makefile
30 lines
1.3 KiB
Makefile
TOOLCHAIN = arm
|
|
|
|
BOOT_ADDRESS = 0x08000000
|
|
FW_ADDRESS = 0x08008000
|
|
OS_OFFSET = 0x00008000
|
|
FLASH_ADDRESS = 0x08000000
|
|
|
|
OPENOCD_OPTS = -f interface/stlink.cfg -c "transport select hla_swd" -f ../debug/stm32wbx.cfg -c "stm32wbx.cpu configure -rtos auto" -c "init"
|
|
BOOT_CFLAGS = -DBOOT_ADDRESS=$(BOOT_ADDRESS) -DFW_ADDRESS=$(FW_ADDRESS) -DOS_OFFSET=$(OS_OFFSET)
|
|
MCU_FLAGS = -mcpu=cortex-m4 -mthumb -mfpu=fpv4-sp-d16 -mfloat-abi=hard
|
|
|
|
CFLAGS += $(MCU_FLAGS) $(BOOT_CFLAGS) -DSTM32WB55xx -Wall -fdata-sections -ffunction-sections
|
|
LDFLAGS += $(MCU_FLAGS) -specs=nosys.specs -specs=nano.specs
|
|
|
|
CUBE_DIR = ../lib/STM32CubeWB
|
|
|
|
ASM_SOURCES += $(CUBE_DIR)/Drivers/CMSIS/Device/ST/STM32WBxx/Source/Templates/gcc/startup_stm32wb55xx_cm4.s
|
|
C_SOURCES += $(CUBE_DIR)/Drivers/CMSIS/Device/ST/STM32WBxx/Source/Templates/system_stm32wbxx.c
|
|
C_SOURCES += $(CUBE_DIR)/Drivers/STM32WBxx_HAL_Driver/Src/stm32wbxx_ll_utils.c
|
|
|
|
CFLAGS += -I$(CUBE_DIR)/Drivers/CMSIS/Include
|
|
CFLAGS += -I$(CUBE_DIR)/Drivers/CMSIS/Device/ST/STM32WBxx/Include
|
|
CFLAGS += -I$(CUBE_DIR)/Drivers/STM32WBxx_HAL_Driver/Inc
|
|
|
|
LDFLAGS += -T$(TARGET_DIR)/stm32wb55xx_flash_cm4.ld
|
|
|
|
ASM_SOURCES += $(wildcard $(TARGET_DIR)/*.s)
|
|
C_SOURCES += $(wildcard $(TARGET_DIR)/*.c)
|
|
CPP_SOURCES += $(wildcard $(TARGET_DIR)/*.cpp)
|