mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-01-18 12:52:44 +01:00
28 lines
595 B
Plaintext
28 lines
595 B
Plaintext
|
/**
|
||
|
* @defgroup boards_stm32f746g-disco STM32F746G-DISCO
|
||
|
* @ingroup boards
|
||
|
* @brief Support for the STM32F746G-DISCO board.
|
||
|
|
||
|
## Flashing the device
|
||
|
|
||
|
The STM32F746G-DISCO board includes an on-board ST-LINK programmer and can be
|
||
|
flashed using OpenOCD.
|
||
|
The board can be flashed with:
|
||
|
|
||
|
```
|
||
|
make BOARD=stm32f746g-disco flash
|
||
|
```
|
||
|
|
||
|
and debug via GDB with
|
||
|
```
|
||
|
make BOARD=stm32f746g-disco debug
|
||
|
```
|
||
|
|
||
|
## Supported Toolchains
|
||
|
|
||
|
For using the STM32F746G-DISCO board we recommend the usage of the
|
||
|
[GNU Tools for ARM Embedded Processors](https://launchpad.net/gcc-arm-embedded)
|
||
|
toolchain.
|
||
|
|
||
|
*/
|