Skip to content
Deryugin edited this page Mar 18, 2020 · 7 revisions

STM32VLDISCOVERY has STM32F100RBT6B microcontroller, 128 KB Flash memory, 8 KB RAM.

The board has 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 arm/stm32_vl template.
  • Connect with OpenOCD:
$ sudo openocd -f /usr/share/openocd/scripts/board/stm32vldiscovery.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

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

Overview

GSoC

Demos

Supported platforms

Examples

Development

Libraries

Subsystems

Misc

Mybuild - build system

Contributing

Clone this wiki locally