This section details how to program the STM32F746G-DISCO
board using binaries produced by either of the supported compilers in TouchGFX. Focus for each section will be any special conditions required to succesfully program your applications.
Note: Please see the article Overview: Compilers and IDEs for troubleshooting and general information. See also the article on ST-Link Utility.
IAR
The project for the STM32F746G-DISCO
board offers full flash loader support for both internal and external flash. The project is already set up to use an ST-Link debugger.
Keil
The article How do i program STM32 based boards using ST-Link? explains how to flash Keil projects using the ST-Link flash utility.
GCC
You can use the flash
option with make
to program STM32 based boards using the ST-Link from the command line:
Compile and flash the complete program:
$ make -f target/gcc/Makefile flash
Compile and flash the internal flash only:
$ make -f target/gcc/Makefile intflash