Back to Riot

Doc

boards/stm32f723e-disco/doc.md

2026.10-devel1.0 KB
Original Source

@defgroup boards_stm32f723e-disco STM32F723E-DISCO board @ingroup boards @brief Support for the STM32F723E-DISCO board

Overview

The ST STM32F723E-DISCO is an evaluation board supporting a ARM Cortex-M7 STM32F723IE microcontroller with 256KB of RAM and 523KB of ROM Flash.

Flashing the Board

A detailed description about the flashing process can be found on the guides page. The board name for the STM32F723E-DISCO is stm32f723e-disco.

STDIO

STDIO is available via the ST-Link programmer.

Use the term target to open a terminal:

shell
make BOARD=stm32f723e-disco -C examples/basic/hello-world term

USB OTG Peripheral Device Driver

By default, the USB OTG FS port is used. To use the USB OTG HS port with the internal UTMI+ HS PHY, enable the module periph_usbdev_hs_utmi:

shell
make BOARD=stm32f723e-disco USEMODULE=periph_usbdev_hs_utmi -C examples/advanced/usbus_minimal