mongoose/examples/stm32/nucleo-f746zg-baremetal
2022-08-11 12:12:00 +01:00
..
boot.c Add nucleo-f746zg-baremetal 2022-05-26 13:53:36 +01:00
link.ld Add nucleo-f746zg-baremetal 2022-05-26 13:53:36 +01:00
main.c Use int debug level 2022-08-01 11:19:32 +01:00
Makefile Better CFLAGS for SSL when building examples 2022-08-11 12:12:00 +01:00
mcu.h Add nucleo-f746zg-baremetal 2022-05-26 13:53:36 +01:00
README.md Add nucleo-f746zg-baremetal 2022-05-26 13:53:36 +01:00
syscalls.c Add nucleo-f746zg-baremetal 2022-05-26 13:53:36 +01:00

Baremetal webserver on NUCLEO-F746ZG

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

  • Implements HTTP server and SNTP time synchronisation
  • No dependencies: no HAL, no CMSIS, no RTOS
  • Hand-written mcu.h header based on a datasheet
  • Interrupt-driven mip_driver_stm32.h ethernet driver
  • Blue LED blinky, based on SysTick interrupt
  • User button handler, turns off/on green LED, based on EXTI, interrupt-driven
  • Catch-all fault handler that blinks red LED
  • Debug log on UART3 (st-link)

Requirements

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 cu:

cu -l /dev/ttyACM0 -s 115200

Benchmark

A quick comparison is made with several other implementations. Note: IP in the table below is the IP address printed on the console after boot. The benchmark command is the same: siege -c 5 -t 5s http://IP

Zephyr LWIP sockets LWIP raw MIP
Requests per second 3 16 286 1080
Firmware size 117k (*) 160k 114k 28k
  • Zephyr: uses Zehypr's RTOS and TCP stack, with Mongoose library on top, source code. (*) By default, Zephyr example is TLS-enabled. To compare sizes, a TLS-disabled build was done by disabling TLS in prj.conf and CMakeLists.txt
  • LWIP sockets: uses FreeRTOS and LWIP with sockets support, with Mongoose library on top, source code. built with #define MG in Core/main.c
  • LWIP raw: uses FreeRTOS and LWIP without sockets, LWIP's httpd server, source code. built with #define MG line commented out in Core/main.c
  • MIP: this repository