mirror of
https://github.com/hathach/tinyusb.git
synced 2025-01-17 05:32:55 +08:00
d1c61e33a6
'dap52' is Olimex's name of their STM32L052-based fork of 'dap42'
41 lines
1.3 KiB
Makefile
41 lines
1.3 KiB
Makefile
ST_FAMILY = l0
|
|
DEPS_SUBMODULES += lib/CMSIS_5 hw/mcu/st/cmsis_device_$(ST_FAMILY) hw/mcu/st/stm32$(ST_FAMILY)xx_hal_driver
|
|
|
|
ST_CMSIS = hw/mcu/st/cmsis_device_$(ST_FAMILY)
|
|
ST_HAL_DRIVER = hw/mcu/st/stm32$(ST_FAMILY)xx_hal_driver
|
|
|
|
include $(TOP)/$(BOARD_PATH)/board.mk
|
|
|
|
CFLAGS += \
|
|
-flto \
|
|
-mthumb \
|
|
-mabi=aapcs \
|
|
-mcpu=cortex-m0plus \
|
|
-mfloat-abi=soft \
|
|
-nostdlib -nostartfiles \
|
|
-DCFG_EXAMPLE_MSC_READONLY \
|
|
-DCFG_EXAMPLE_VIDEO_READONLY \
|
|
-DCFG_TUSB_MCU=OPT_MCU_STM32L0
|
|
|
|
# suppress warning caused by vendor mcu driver
|
|
CFLAGS += -Wno-error=unused-parameter -Wno-error=redundant-decls -Wno-error=cast-align -Wno-error=maybe-uninitialized
|
|
|
|
SRC_C += \
|
|
src/portable/st/stm32_fsdev/dcd_stm32_fsdev.c \
|
|
$(ST_CMSIS)/Source/Templates/system_stm32$(ST_FAMILY)xx.c \
|
|
$(ST_HAL_DRIVER)/Src/stm32$(ST_FAMILY)xx_hal.c \
|
|
$(ST_HAL_DRIVER)/Src/stm32$(ST_FAMILY)xx_hal_cortex.c \
|
|
$(ST_HAL_DRIVER)/Src/stm32$(ST_FAMILY)xx_hal_rcc.c \
|
|
$(ST_HAL_DRIVER)/Src/stm32$(ST_FAMILY)xx_hal_rcc_ex.c \
|
|
$(ST_HAL_DRIVER)/Src/stm32$(ST_FAMILY)xx_hal_gpio.c \
|
|
$(ST_HAL_DRIVER)/Src/stm32$(ST_FAMILY)xx_hal_uart.c
|
|
|
|
INC += \
|
|
$(TOP)/$(BOARD_PATH) \
|
|
$(TOP)/lib/CMSIS_5/CMSIS/Core/Include \
|
|
$(TOP)/$(ST_CMSIS)/Include \
|
|
$(TOP)/$(ST_HAL_DRIVER)/Inc
|
|
|
|
# For freeRTOS port source
|
|
FREERTOS_PORT = ARM_CM0
|