Austin Schuh | 41baf20 | 2022-01-01 14:33:40 -0800 | [diff] [blame^] | 1 | CFLAGS += -DSTM32H743xx -DHSE_VALUE=25000000 |
2 | |||||
3 | # Default is Highspeed port | ||||
4 | PORT ?= 1 | ||||
5 | SPEED ?= high | ||||
6 | |||||
7 | SRC_S += $(ST_CMSIS)/Source/Templates/gcc/startup_stm32h743xx.s | ||||
8 | LD_FILE = $(BOARD_PATH)/stm32h743xx_flash.ld | ||||
9 | |||||
10 | # For flash-jlink target | ||||
11 | JLINK_DEVICE = stm32h743xi | ||||
12 | |||||
13 | # flash target using on-board stlink | ||||
14 | flash: flash-stlink |