mirror of
https://github.com/hathach/tinyusb.git
synced 2025-01-17 05:32:55 +08:00
ffdffc7e06
also fix trailing spaces
37 lines
841 B
Makefile
37 lines
841 B
Makefile
DEPS_SUBMODULES += hw/mcu/ti
|
|
|
|
include $(TOP)/$(BOARD_PATH)/board.mk
|
|
|
|
CFLAGS += \
|
|
-flto \
|
|
-mthumb \
|
|
-mabi=aapcs \
|
|
-mcpu=cortex-m4 \
|
|
-mfloat-abi=hard \
|
|
-mfpu=fpv4-sp-d16 \
|
|
-DCFG_TUSB_MCU=OPT_MCU_TM4C123 \
|
|
-uvectors \
|
|
-DTM4C123GH6PM
|
|
|
|
# mcu driver cause following warnings
|
|
CFLAGS += -Wno-error=strict-prototypes -Wno-error=cast-qual
|
|
|
|
MCU_DIR=hw/mcu/ti/tm4c123xx/
|
|
|
|
# All source paths should be relative to the top level.
|
|
LD_FILE = $(BOARD_PATH)/tm4c123.ld
|
|
|
|
INC += \
|
|
$(TOP)/$(MCU_DIR)/CMSIS/5.7.0/CMSIS/Include \
|
|
$(TOP)/$(MCU_DIR)/Include/TM4C123 \
|
|
$(TOP)/$(BOARD_PATH)
|
|
|
|
SRC_C += \
|
|
src/portable/mentor/musb/dcd_musb.c \
|
|
src/portable/mentor/musb/hcd_musb.c \
|
|
$(MCU_DIR)/Source/system_TM4C123.c \
|
|
$(MCU_DIR)/Source/GCC/tm4c123_startup.c
|
|
|
|
# For freeRTOS port source
|
|
FREERTOS_PORTABLE_SRC = $(FREERTOS_PORTABLE_PATH)/ARM_CM4F
|