16 lines
		
	
	
		
			270 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			270 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| MCU_VARIANT = stm32f769xx
 | |
| 
 | |
| # Only OTG-HS has a connector on this board
 | |
| PORT ?= 1
 | |
| SPEED ?= high
 | |
| 
 | |
| CFLAGS += \
 | |
|   -DSTM32F769xx \
 | |
|   -DHSE_VALUE=25000000 \
 | |
| 
 | |
| # Linker
 | |
| LD_FILE_GCC = $(BOARD_PATH)/STM32F769ZITx_FLASH.ld
 | |
| 
 | |
| # flash target using on-board stlink
 | |
| flash: flash-stlink
 | 
