Overview of LwIP HTTP Server Netconn RTOS Application
masterThis application demonstrates how to implement an HTTP server using the LwIP Netconn API within an RTOS environment on STM32H735xx devices. It allows a remote web browser to interact with the STM32H7 via an Ethernet connection.
Key Features
- Static Home Page: Displays information about the STM32H7 and the LwIP stack.
- Dynamic Page: A second page that refreshes every 1 second to show real-time RTOS statistics.
- Status Feedback:
- LCD Mode: If
USE_LCDis defined inmain.h, Ethernet status and IP address are displayed on the LCD. - LED Mode: If LCD is not used, status is indicated via LEDs:
- LED1: Ethernet cable is connected.
- LED2: Ethernet cable is not connected.
- LCD Mode: If
- DHCP Support: Dynamic IP allocation can be enabled by setting
#define LWIP_DHCP to 1inlwipopts.h.