2025-11-04 8:56 PM
Hi friends ,
I need to make a TCP Server client in my STM32F769NIH6 board using LWIP. I referred many documents but so far it have led me to nowhere. Does any of you knowhow to do it, in that case tell me the steps.
2025-11-05 4:24 AM
Hi,
You can use the Mongoose Networking Library. It's a high-level networking library designed to run on top of TCP/IP stacks like lwIP and greatly simplifies creating network applications like a TCP server or client. Its API is well documented here, along with many examples of how to use it.
To integrate Mongoose with LwIP on your board, you can start from either of these sources:
Using these, you can get a simple webserver application running, which is a great way to verify your setup, and then easily adapt it to what your TCP server/client actually needs.
Heads up: I am part of the Mongoose development team. Hope this helps you get started.
2025-11-05 4:46 AM
@Hariprasad_Horrid wrote:I need to make a TCP Server client
Not sure what you mean by that - do you want to make a Server, or a Client ?