Skip to content
Anton Bondarev edited this page Dec 16, 2020 · 1 revision

NUCLEO-F429ZI is an STM32F4 Nucleo board featuring 2-MiB Flash memory and 256-Kbyte RAM.

The board has an integrated debugger that allows to program it with single USB-A-USB-mini-B wire. You can run and test Embox after a few quite simple steps.

  • Configure and compile with platform/stm32/f4/nucleo_f429zi template.
  • Connect with OpenOCD:
$ sudo openocd -f /usr/share/openocd/scripts/board/st_nucleo_f4.cfg
  • Load Embox with usual gdb commands
$ arm-none-eabi-gdb build/base/bin/embox
(gdb) target remote :3333
(gdb) monitor halt
(gdb) load
(gdb) monitor reset
(gdb) continue

You can refer our How-to-flash guide for more details.

The default configuration includes ping, telnetd and httpd. You need to modify network settings for your subnet to use it.

Overview

GSoC

Demos

Supported platforms

Examples

Development

Libraries

Subsystems

Misc

Mybuild - build system

Contributing

Clone this wiki locally