Austin Schuh | 41baf20 | 2022-01-01 14:33:40 -0800 | [diff] [blame^] | 1 | # Only OTG-HS has a connector on this board |
2 | PORT ?= 1 | ||||
3 | SPEED ?= high | ||||
4 | |||||
5 | CFLAGS += \ | ||||
6 | -DSTM32F723xx \ | ||||
7 | -DHSE_VALUE=25000000 \ | ||||
8 | |||||
9 | # All source paths should be relative to the top level. | ||||
10 | LD_FILE = $(BOARD_PATH)/STM32F723xE_FLASH.ld | ||||
11 | SRC_S += $(ST_CMSIS)/Source/Templates/gcc/startup_stm32f723xx.s | ||||
12 | |||||
13 | # flash target using on-board stlink | ||||
14 | flash: flash-stlink |