able to flash and turn on LED

This commit is contained in:
hathach
2019-07-20 22:38:46 +07:00
parent fa12a0e786
commit 6ec87071ed
3 changed files with 422 additions and 4 deletions
+8 -4
View File
@@ -1,25 +1,29 @@
CFLAGS += \
-DHSE_VALUE=8000000 \
-DCFG_TUSB_MCU=OPT_MCU_STM32F4 \
-DSTM32F411xE \
-mthumb \
-mabi=aapcs-linux \
-mcpu=cortex-m4 \
-mfloat-abi=hard \
-mfpu=fpv4-sp-d16 \
-nostdlib -nostartfiles \
-DCFG_TUSB_MCU=OPT_MCU_STM32F4
-nostdlib -nostartfiles
# All source paths should be relative to the top level.
LD_FILE = hw/bsp/stm32f411disco/STM32F411VETx_FLASH.ld
SRC_C += \
hw/mcu/st/system-init/system_stm32f4xx.c
hw/mcu/st/system-init/system_stm32f4xx.c \
hw/mcu/st/stm32lib/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.c \
SRC_S += \
hw/mcu/st/startup/stm32f4/startup_stm32f411xe.s
INC += \
$(TOP)/hw/bsp/stm32f411disco \
$(TOP)/hw/mcu/st/stm32lib/CMSIS/STM32F4xx/Include \
$(TOP)/hw/mcu/st/stm32lib/STM32F4xx_HAL_Driver/Inc \
$(TOP)/hw/mcu/st/cmsis
# For TinyUSB port source
@@ -30,7 +34,7 @@ CHIP_FAMILY = stm32f4
FREERTOS_PORT = ARM_CM4F
# For flash-jlink target
JLINK_DEVICE = stm32f407vg
JLINK_DEVICE = stm32f41ve
JLINK_IF = swd
# Path to STM32 Cube Programmer CLI, should be added into system path