LwIP 2.2.1在STM32F407VET6平台 移植

This commit is contained in:
冯佳
2026-01-29 17:26:04 +08:00
parent ffd33c4644
commit e7e10a8328
2207 changed files with 409723 additions and 165 deletions

View File

@ -0,0 +1,28 @@
This directory contains an example of how to compile lwIP as a shared library
on Linux.
Some brief instructions:
* Compile the code:
> mkdir build
> cd build
> cmake ..
> make clean all
This should produce liblwip.so. This is the shared library.
* Link an application against the shared library
If you're using gcc you can do this by including -llwip in your link command.
* Run your application
Ensure that LD_LIBRARY_PATH includes the directory that contains liblwip.so
(ie. this directory)
If you are unsure about shared libraries and libraries on linux in
general, you might find this HOWTO useful:
<http://www.tldp.org/HOWTO/Program-Library-HOWTO/>