mongoose/examples/stm32/nucleo-f429zi-baremetal
2023-02-02 10:33:00 +00:00
..
boot.c Minor tweaks in STM32 examples 2022-12-09 15:20:51 -03:00
link.ld Add baremetal example on Nucleo-F429ZI 2022-08-29 19:20:20 -03:00
main.c Use UART_DEBUG 2023-02-01 19:37:35 -03:00
Makefile Nits: fix DNS resolution message. Add Makefile comment for testing targets 2023-02-02 10:33:00 +00:00
mcu.h Use UART_DEBUG 2023-02-01 19:37:35 -03:00
README.md Get rid of Docker, part 1 2023-01-20 12:42:38 -03:00
syscalls.c Cleanup, adopt for HW test 2023-01-20 18:46:19 +00:00

Baremetal webserver on NUCLEO-F429ZI

This firmware uses MIP, an experimental TCP/IP stack of the Mongoose Network Library, which implements the following:

  • A complete HTTP device dashboard with:
    • User authentication
    • Real-time device data graph
    • Coninfiguration display and update
    • MQTT communication with a remote MQTT server
  • No dependencies: no HAL, no CMSIS, no RTOS
  • Hand-written mcu.h header based on a datasheet
  • Interrupt-driven Ethernet driver
  • Blue LED blinky, based on SysTick interrupt
  • User button handler, turns off/on green LED, based on EXTI, interrupt-driven
  • HardFault handler that blinks red LED
  • Debug log on UART3 (st-link)

Requirements

The links above will send you to tutorials on how to install each of those tools in your workstation for Linux, Mac, and Windows.

Usage

Plugin your Nucleo board into USB, and attach an Ethernet cable. To build and flash:

$ make clean flash

To see debug log, use any serial monitor program like picocom at 115200 bps and configure it to insert carriage returns after line feeds:

$ picocom /dev/ttyACM0 -i -b 115200 --imap=lfcrlf

There is also a detailed tutorial on this example but for the NUCLEO-F746ZG board

For more details and benchmark data on MIP, check the F746ZG example