Skip to content

STM32F429IDISCOVERY

lbuild config: modm:disco-f429zi

Discovery kit for STM32F429

Logging

To use the logging, you need to close SB11 and SB15 and upgrade the STLINK/V2-B firmware! See Section 6.3 "Embedded ST-LINK/V2-B" of UM1670.

TinyUSB

To use the USB port, you must configure TinyUSB to use the HS port in FS mode:

<option name="modm:tinyusb:max-speed">full</option>
<!-- place either the device or host classes on the HS port -->
<option name="modm:tinyusb:device:port">hs</option>
<option name="modm:tinyusb:host:port">hs</option>

Configuration

<library>
  <options>
    <option name="modm:target">stm32f429zit6</option>
  </options>
  <modules>
    <module>modm:board:disco-f429zi</module>
  </modules>
</library>