2021-09-10 02:19:02 +00:00
|
|
|
TOOLCHAIN = arm
|
|
|
|
|
|
|
|
FLASH_ADDRESS = 0x08000000
|
2022-04-13 20:50:25 +00:00
|
|
|
|
|
|
|
RAM_EXEC ?= 0
|
|
|
|
ifeq ($(RAM_EXEC), 1)
|
|
|
|
CFLAGS += -DFURI_RAM_EXEC -DVECT_TAB_SRAM -DFLIPPER_STREAM_LITE
|
|
|
|
else
|
|
|
|
LDFLAGS += -u _printf_float
|
2021-09-10 02:19:02 +00:00
|
|
|
endif
|
|
|
|
|
2022-02-10 11:20:50 +00:00
|
|
|
DEBUG_RTOS_THREADS ?= 1
|
|
|
|
ifeq ($(DEBUG_RTOS_THREADS), 1)
|
2021-09-10 02:19:02 +00:00
|
|
|
OPENOCD_OPTS = -f interface/stlink.cfg -c "transport select hla_swd" -f ../debug/stm32wbx.cfg -c "stm32wbx.cpu configure -rtos auto" -c "init"
|
2022-02-10 11:20:50 +00:00
|
|
|
else
|
|
|
|
OPENOCD_OPTS = -f interface/stlink.cfg -c "transport select hla_swd" -f ../debug/stm32wbx.cfg -c "init"
|
|
|
|
endif
|
|
|
|
|
2021-09-10 02:19:02 +00:00
|
|
|
MCU_FLAGS = -mcpu=cortex-m4 -mthumb -mfpu=fpv4-sp-d16 -mfloat-abi=hard
|
|
|
|
|
2022-04-13 20:50:25 +00:00
|
|
|
CFLAGS += $(MCU_FLAGS) -DSTM32WB55xx -Wall -fdata-sections -ffunction-sections
|
|
|
|
LDFLAGS += $(MCU_FLAGS) -specs=nosys.specs -specs=nano.specs
|
2021-09-10 02:19:02 +00:00
|
|
|
|
2021-12-07 14:17:08 +00:00
|
|
|
CPPFLAGS += -fno-rtti -fno-use-cxa-atexit -fno-exceptions
|
2021-09-10 02:19:02 +00:00
|
|
|
LDFLAGS += -Wl,--start-group -lstdc++ -lsupc++ -Wl,--end-group
|
|
|
|
|
2021-10-16 11:25:32 +00:00
|
|
|
HARDWARE_TARGET = 7
|
|
|
|
|
2021-09-10 02:19:02 +00:00
|
|
|
MXPROJECT_DIR = $(TARGET_DIR)
|
|
|
|
|
|
|
|
# Entry Point
|
|
|
|
ASM_SOURCES += $(MXPROJECT_DIR)/startup_stm32wb55xx_cm4.s
|
|
|
|
|
|
|
|
# STM32WB HAL
|
|
|
|
CUBE_DIR = ../lib/STM32CubeWB
|
|
|
|
CFLAGS += \
|
|
|
|
-DUSE_FULL_LL_DRIVER \
|
|
|
|
-DHAVE_FREERTOS
|
|
|
|
CFLAGS += \
|
|
|
|
-I$(CUBE_DIR)/Drivers/STM32WBxx_HAL_Driver/Inc \
|
2021-10-06 09:24:09 +00:00
|
|
|
-I$(CUBE_DIR)/Drivers/CMSIS/Device/ST \
|
2021-09-10 02:19:02 +00:00
|
|
|
-I$(CUBE_DIR)/Drivers/CMSIS/Device/ST/STM32WBxx/Include \
|
|
|
|
-I$(CUBE_DIR)/Drivers/CMSIS/Include
|
|
|
|
C_SOURCES += \
|
|
|
|
$(CUBE_DIR)/Drivers/STM32WBxx_HAL_Driver/Src/stm32wbxx_ll_adc.c \
|
2022-03-23 17:59:20 +00:00
|
|
|
$(CUBE_DIR)/Drivers/STM32WBxx_HAL_Driver/Src/stm32wbxx_ll_comp.c \
|
2021-09-10 02:19:02 +00:00
|
|
|
$(CUBE_DIR)/Drivers/STM32WBxx_HAL_Driver/Src/stm32wbxx_ll_dma.c \
|
|
|
|
$(CUBE_DIR)/Drivers/STM32WBxx_HAL_Driver/Src/stm32wbxx_ll_gpio.c \
|
|
|
|
$(CUBE_DIR)/Drivers/STM32WBxx_HAL_Driver/Src/stm32wbxx_ll_i2c.c \
|
|
|
|
$(CUBE_DIR)/Drivers/STM32WBxx_HAL_Driver/Src/stm32wbxx_ll_lptim.c \
|
|
|
|
$(CUBE_DIR)/Drivers/STM32WBxx_HAL_Driver/Src/stm32wbxx_ll_rcc.c \
|
2021-12-14 22:39:59 +00:00
|
|
|
$(CUBE_DIR)/Drivers/STM32WBxx_HAL_Driver/Src/stm32wbxx_ll_rtc.c \
|
2021-09-10 02:19:02 +00:00
|
|
|
$(CUBE_DIR)/Drivers/STM32WBxx_HAL_Driver/Src/stm32wbxx_ll_spi.c \
|
|
|
|
$(CUBE_DIR)/Drivers/STM32WBxx_HAL_Driver/Src/stm32wbxx_ll_tim.c \
|
|
|
|
$(CUBE_DIR)/Drivers/STM32WBxx_HAL_Driver/Src/stm32wbxx_ll_usart.c \
|
2021-10-21 18:12:20 +00:00
|
|
|
$(CUBE_DIR)/Drivers/STM32WBxx_HAL_Driver/Src/stm32wbxx_ll_lpuart.c \
|
2022-01-02 17:34:39 +00:00
|
|
|
$(CUBE_DIR)/Drivers/STM32WBxx_HAL_Driver/Src/stm32wbxx_ll_utils.c \
|
|
|
|
$(CUBE_DIR)/Drivers/STM32WBxx_HAL_Driver/Src/stm32wbxx_ll_rng.c
|
2021-09-10 02:19:02 +00:00
|
|
|
|
|
|
|
# FreeRTOS
|
|
|
|
CFLAGS += \
|
2021-12-21 12:16:25 +00:00
|
|
|
-I$(LIB_DIR)/FreeRTOS-Kernel/include \
|
|
|
|
-I$(LIB_DIR)/FreeRTOS-Kernel/portable/GCC/ARM_CM4F \
|
|
|
|
-I$(LIB_DIR)/FreeRTOS-glue/
|
|
|
|
|
2021-09-10 02:19:02 +00:00
|
|
|
C_SOURCES += \
|
2021-12-21 12:16:25 +00:00
|
|
|
$(LIB_DIR)/FreeRTOS-Kernel/event_groups.c \
|
|
|
|
$(LIB_DIR)/FreeRTOS-Kernel/list.c \
|
|
|
|
$(LIB_DIR)/FreeRTOS-Kernel/queue.c \
|
|
|
|
$(LIB_DIR)/FreeRTOS-Kernel/stream_buffer.c \
|
|
|
|
$(LIB_DIR)/FreeRTOS-Kernel/tasks.c \
|
|
|
|
$(LIB_DIR)/FreeRTOS-Kernel/timers.c \
|
|
|
|
$(LIB_DIR)/FreeRTOS-Kernel/portable/GCC/ARM_CM4F/port.c \
|
|
|
|
$(LIB_DIR)/FreeRTOS-glue/cmsis_os2.c \
|
2021-09-10 02:19:02 +00:00
|
|
|
|
|
|
|
# BLE glue
|
|
|
|
CFLAGS += \
|
2022-01-05 16:10:18 +00:00
|
|
|
-I$(TARGET_DIR)/ble_glue \
|
2021-09-10 02:19:02 +00:00
|
|
|
-I$(CUBE_DIR)/Middlewares/ST/STM32_WPAN \
|
|
|
|
-I$(CUBE_DIR)/Middlewares/ST/STM32_WPAN/ble \
|
|
|
|
-I$(CUBE_DIR)/Middlewares/ST/STM32_WPAN/ble/core \
|
|
|
|
-I$(CUBE_DIR)/Middlewares/ST/STM32_WPAN/ble/core/template \
|
|
|
|
-I$(CUBE_DIR)/Middlewares/ST/STM32_WPAN/utilities \
|
|
|
|
-I$(CUBE_DIR)/Middlewares/ST/STM32_WPAN/interface/patterns/ble_thread \
|
|
|
|
-I$(CUBE_DIR)/Middlewares/ST/STM32_WPAN/interface/patterns/ble_thread/tl \
|
|
|
|
-I$(CUBE_DIR)/Middlewares/ST/STM32_WPAN/interface/patterns/ble_thread/shci
|
|
|
|
C_SOURCES += \
|
2022-01-05 16:10:18 +00:00
|
|
|
$(wildcard $(TARGET_DIR)/ble_glue/*.c) \
|
2021-09-10 02:19:02 +00:00
|
|
|
$(CUBE_DIR)/Middlewares/ST/STM32_WPAN/utilities/otp.c \
|
|
|
|
$(CUBE_DIR)/Middlewares/ST/STM32_WPAN/utilities/stm_list.c \
|
|
|
|
$(CUBE_DIR)/Middlewares/ST/STM32_WPAN/utilities/dbg_trace.c \
|
|
|
|
$(CUBE_DIR)/Middlewares/ST/STM32_WPAN/ble/svc/Src/svc_ctl.c \
|
|
|
|
$(CUBE_DIR)/Middlewares/ST/STM32_WPAN/ble/core/template/osal.c \
|
|
|
|
$(CUBE_DIR)/Middlewares/ST/STM32_WPAN/ble/core/auto/ble_hci_le.c \
|
|
|
|
$(CUBE_DIR)/Middlewares/ST/STM32_WPAN/ble/core/auto/ble_gap_aci.c \
|
|
|
|
$(CUBE_DIR)/Middlewares/ST/STM32_WPAN/ble/core/auto/ble_gatt_aci.c \
|
|
|
|
$(CUBE_DIR)/Middlewares/ST/STM32_WPAN/ble/core/auto/ble_hal_aci.c \
|
2022-01-21 17:32:03 +00:00
|
|
|
$(CUBE_DIR)/Middlewares/ST/STM32_WPAN/ble/core/auto/ble_l2cap_aci.c \
|
2021-09-10 02:19:02 +00:00
|
|
|
$(CUBE_DIR)/Middlewares/ST/STM32_WPAN/interface/patterns/ble_thread/tl/tl_mbox.c \
|
|
|
|
$(CUBE_DIR)/Middlewares/ST/STM32_WPAN/interface/patterns/ble_thread/tl/hci_tl.c \
|
|
|
|
$(CUBE_DIR)/Middlewares/ST/STM32_WPAN/interface/patterns/ble_thread/tl/hci_tl_if.c \
|
|
|
|
$(CUBE_DIR)/Middlewares/ST/STM32_WPAN/interface/patterns/ble_thread/tl/shci_tl.c \
|
|
|
|
$(CUBE_DIR)/Middlewares/ST/STM32_WPAN/interface/patterns/ble_thread/tl/shci_tl_if.c \
|
|
|
|
$(CUBE_DIR)/Middlewares/ST/STM32_WPAN/interface/patterns/ble_thread/shci/shci.c
|
|
|
|
|
2021-10-06 09:24:09 +00:00
|
|
|
# USB stack
|
2021-09-10 02:19:02 +00:00
|
|
|
CFLAGS += \
|
2021-10-06 09:24:09 +00:00
|
|
|
-DSTM32WB \
|
|
|
|
-DUSB_PMASIZE=0x400
|
2021-09-10 02:19:02 +00:00
|
|
|
|
|
|
|
# Furi HAL
|
|
|
|
FURI_HAL_OS_DEBUG ?= 0
|
|
|
|
ifeq ($(FURI_HAL_OS_DEBUG), 1)
|
|
|
|
CFLAGS += -DFURI_HAL_OS_DEBUG
|
|
|
|
endif
|
|
|
|
|
2021-11-12 13:04:35 +00:00
|
|
|
FURI_HAL_USB_VCP_DEBUG ?= 0
|
|
|
|
ifeq ($(FURI_HAL_USB_VCP_DEBUG), 1)
|
|
|
|
CFLAGS += -DFURI_HAL_USB_VCP_DEBUG
|
|
|
|
endif
|
|
|
|
|
[FL-2399, FL-2261] Tickless sleep shenanigans (#1168)
* Disable USART in sleep
* Restore UART state on suspend/resume
* FuriHal: Enable stop mode and add insomnia to I2C and SPI
* Remove IDLE interrupt
* FuriHal: add FPU isr and disable all FPU interrupt, add core2 stop mode configuration on deep sleep
* FuriHal: tie stop mode debug with debug rtc flag
* FuriHal: adjust flash latency on clock switch, tie mcu debug with RTC debug flag
* FuriHal: move resource init to early stage
* Add EXTI pending check, enable debug traps with compile-time flag
* Wrap sleep debug functions in conditional compilation
* Remove erroneous changed
* Do not use CSS, remove it from everywhere
* Enable/disable USB on VBUS connect (prototype)
* FuriHal: add LPMS and DEEPSLEEP magic, workaround state inconsistency between cores
* FuriHal: honor c1 LMPS
* USB mode switch fix
* Applications: add flags and insomnia bypass system
* Correct spelling
* FuriHal: cleanup insomnia usage, reset sleep flags on wakeup, add shutdown api
* FuriHal: extra check on reinit request
* FuriHal: rename gpio_display_rst pin to gpio_display_rst_n
* FuriHal: add debug HAL
* FuriHal: add some magic to core2 reload procedure, fix issue with crash on ble keyboard exit
* FuriHal: cleanup ble glue, add BLE_GLUE_DEBUG flag
* FuriHal: ble reinit API, move os timer to LPTIM1 for deep sleep capability, shutdown that works
* FuriHal: take insomnia while shutdown
* Remove USB switch on/off on VBUS change
* Better tick skew handling
* Improve tick consistency under load
* Add USB_HP dummy IRQ handler
* Move interrupt check closer to sleep
* Clean up includes
* Re-enable Insomnia globally
* FuriHal: enable CSS
* FuriHal: remove questionable core2 clock shenanigans
* FuriHal: use core1 RCC registers in idle timer config
* FuriHal: return back CSS handlers, add lptim isr dispatching
Co-authored-by: Aleksandr Kutuzov <alleteam@gmail.com>
Co-authored-by: nminaylov <nm29719@gmail.com>
2022-04-29 13:29:51 +00:00
|
|
|
ifeq ($(FURI_HAL_POWER_DEEP_SLEEP_ENABLED), 1)
|
|
|
|
CFLAGS += -DFURI_HAL_POWER_DEEP_SLEEP_ENABLED
|
|
|
|
endif
|
|
|
|
|
2021-09-10 02:19:02 +00:00
|
|
|
FURI_HAL_SUBGHZ_TX_GPIO ?= 0
|
|
|
|
ifneq ($(FURI_HAL_SUBGHZ_TX_GPIO), 0)
|
|
|
|
CFLAGS += -DFURI_HAL_SUBGHZ_TX_GPIO=$(FURI_HAL_SUBGHZ_TX_GPIO)
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(INVERT_RFID_IN), 1)
|
|
|
|
CFLAGS += -DINVERT_RFID_IN
|
|
|
|
endif
|
|
|
|
|
[FL-2399, FL-2261] Tickless sleep shenanigans (#1168)
* Disable USART in sleep
* Restore UART state on suspend/resume
* FuriHal: Enable stop mode and add insomnia to I2C and SPI
* Remove IDLE interrupt
* FuriHal: add FPU isr and disable all FPU interrupt, add core2 stop mode configuration on deep sleep
* FuriHal: tie stop mode debug with debug rtc flag
* FuriHal: adjust flash latency on clock switch, tie mcu debug with RTC debug flag
* FuriHal: move resource init to early stage
* Add EXTI pending check, enable debug traps with compile-time flag
* Wrap sleep debug functions in conditional compilation
* Remove erroneous changed
* Do not use CSS, remove it from everywhere
* Enable/disable USB on VBUS connect (prototype)
* FuriHal: add LPMS and DEEPSLEEP magic, workaround state inconsistency between cores
* FuriHal: honor c1 LMPS
* USB mode switch fix
* Applications: add flags and insomnia bypass system
* Correct spelling
* FuriHal: cleanup insomnia usage, reset sleep flags on wakeup, add shutdown api
* FuriHal: extra check on reinit request
* FuriHal: rename gpio_display_rst pin to gpio_display_rst_n
* FuriHal: add debug HAL
* FuriHal: add some magic to core2 reload procedure, fix issue with crash on ble keyboard exit
* FuriHal: cleanup ble glue, add BLE_GLUE_DEBUG flag
* FuriHal: ble reinit API, move os timer to LPTIM1 for deep sleep capability, shutdown that works
* FuriHal: take insomnia while shutdown
* Remove USB switch on/off on VBUS change
* Better tick skew handling
* Improve tick consistency under load
* Add USB_HP dummy IRQ handler
* Move interrupt check closer to sleep
* Clean up includes
* Re-enable Insomnia globally
* FuriHal: enable CSS
* FuriHal: remove questionable core2 clock shenanigans
* FuriHal: use core1 RCC registers in idle timer config
* FuriHal: return back CSS handlers, add lptim isr dispatching
Co-authored-by: Aleksandr Kutuzov <alleteam@gmail.com>
Co-authored-by: nminaylov <nm29719@gmail.com>
2022-04-29 13:29:51 +00:00
|
|
|
ifeq ($(BLE_GLUE_DEBUG), 1)
|
|
|
|
CFLAGS += -DBLE_GLUE_DEBUG
|
|
|
|
endif
|
|
|
|
|
2022-01-05 16:10:18 +00:00
|
|
|
FURI_HAL_DIR = $(TARGET_DIR)/furi_hal
|
2021-09-10 02:19:02 +00:00
|
|
|
CFLAGS += -I$(FURI_HAL_DIR)
|
|
|
|
C_SOURCES += $(wildcard $(FURI_HAL_DIR)/*.c)
|
|
|
|
|
|
|
|
# Other
|
|
|
|
CFLAGS += \
|
|
|
|
-I$(MXPROJECT_DIR)/Inc \
|
2021-11-12 13:04:35 +00:00
|
|
|
-I$(MXPROJECT_DIR)/fatfs
|
2021-09-10 02:19:02 +00:00
|
|
|
C_SOURCES += \
|
|
|
|
$(wildcard $(MXPROJECT_DIR)/Src/*.c) \
|
2021-11-12 13:04:35 +00:00
|
|
|
$(wildcard $(MXPROJECT_DIR)/fatfs/*.c)
|
2021-09-10 02:19:02 +00:00
|
|
|
|
2022-04-13 20:50:25 +00:00
|
|
|
ifeq ($(RAM_EXEC), 1)
|
|
|
|
LDFLAGS += -T$(MXPROJECT_DIR)/stm32wb55xx_ram_fw.ld
|
|
|
|
else # RAM_EXEC
|
2021-09-10 02:19:02 +00:00
|
|
|
# Linker options
|
2022-04-13 20:50:25 +00:00
|
|
|
LDFLAGS += -T$(MXPROJECT_DIR)/stm32wb55xx_flash.ld
|
|
|
|
endif # RAM_EXEC
|
2021-09-10 02:19:02 +00:00
|
|
|
|
|
|
|
SVD_FILE = ../debug/STM32WB55_CM4.svd
|