Hi Simon,
i just noticed a problem with the GCC compiler for ARM, in api.h there is the line: #define netconn_write(conn, dataptr, size, apiflags) netconn_write_partly(conn, dataptr, size, apiflags, NULL) which will cause an error (netconn_write will not be found here). Correcting this to: #define netconn_write(conn, dataptr, size, apiflags) netconn_write_partly(conn, dataptr, size, apiflags, NULL) works great. Maybe a small correction which will some people prevent from looking for this cause. BR Marco Am 2012-12-18 13:28, schrieb Simon Goldschmidt: > Hi all, > > Nearly three months after tagging the git repositories for the 1.4.1 release, I've finally uploaded the zip files into the download section at savannah, making the 1.4.1 release official.
_______________________________________________ lwip-users mailing list [email protected] https://lists.nongnu.org/mailman/listinfo/lwip-users
