1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/boards/stm32f723e-disco/doc.txt
Alexandre Abadie 80a5e88403
boards/stm32f723e-disco: add initial support
Peripheral configured:
- 5 UARTs for stdio via STLink, Arduino connector, PMOD connector,
STMOD+ connector and ESP-01 connector
- 1 I2C available on Arduino connector and STMOD+ connector
- 2 SPIs available on Arduino connector and PMOD connector
2019-09-20 13:45:25 +02:00

32 lines
774 B
Plaintext

/**
@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.
Use the `term` targed to open a terminal:
make BOARD=stm32f723e-disco -C examples/hello-world term
*/