2019-07-05 08:43:24 +02:00
|
|
|
/**
|
|
|
|
@defgroup boards_stm32f723e-disco STM32F723E-DISCO board
|
|
|
|
@ingroup boards
|
|
|
|
@brief Support for the STM32F723E-DISCO board
|
|
|
|
|
|
|
|
## Overview
|
|
|
|
|
|
|
|
The ST [STM32F723E-DISCO](https://www.st.com/en/evaluation-tools/32f723ediscovery.html)
|
|
|
|
is an evaluation board supporting a ARM Cortex-M7 STM32F723IE microcontroller
|
|
|
|
with 256KB of RAM and 523KB of ROM Flash.
|
|
|
|
|
|
|
|
## Flashing the device
|
|
|
|
|
|
|
|
The STM32F723E-DISCO board includes an on-board ST-LINK programmer and can be
|
|
|
|
flashed using OpenOCD.
|
|
|
|
|
|
|
|
To flash this board, just use the following command:
|
|
|
|
|
|
|
|
```
|
|
|
|
make BOARD=stm32f723e-disco flash -C examples/hello-world
|
|
|
|
```
|
|
|
|
|
|
|
|
### STDIO
|
|
|
|
|
|
|
|
STDIO is available via the ST-Link programmer.
|
|
|
|
|
2019-10-23 21:13:13 +02:00
|
|
|
Use the `term` target to open a terminal:
|
2019-07-05 08:43:24 +02:00
|
|
|
|
|
|
|
make BOARD=stm32f723e-disco -C examples/hello-world term
|
|
|
|
|
|
|
|
*/
|