simplify board API, adding stm32f3 discovery

- remove board header since it is not used
This commit is contained in:
hathach
2019-03-22 22:06:48 +07:00
parent 2533f4004e
commit ba1bea5d53
38 changed files with 434 additions and 509 deletions
+3 -15
View File
@@ -7,7 +7,7 @@ CFLAGS += \
-mcpu=cortex-m4 \
-mfloat-abi=hard \
-mfpu=fpv4-sp-d16 \
-nostdlib
-nostdlib -nostartfiles
# All source paths should be relative to the top level.
LD_FILE = hw/bsp/stm32f407g_disc1/STM32F407VGTx_FLASH.ld
@@ -29,20 +29,8 @@ CHIP_FAMILY = stm32f4
JLINK_DEVICE = stm32f407vg
# Path to STM32 Cube Programmer CLI
ifeq ($(OS),Windows_NT)
STM32Prog = C:/Program Files/STMicroelectronics/STM32Cube/STM32CubeProgrammer/bin/STM32_Programmer_CLI
else
UNAME_S := $(shell uname -s)
ifeq ($(UNAME_S),Linux)
STM32Prog = $(HOME)/STMicroelectronics/STM32Cube/STM32CubeProgrammer/bin/STM32_Programmer_CLI
endif
ifeq ($(UNAME_S),Darwin)
STM32Prog = STM32_Programmer_CLI
endif
endif
# Path to STM32 Cube Programmer CLI, should be added into system path
STM32Prog = STM32_Programmer_CLI
# flash target using on-board stlink
flash: $(BUILD)/$(BOARD)-firmware.elf