This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
Hello,
I'm trying to use de library lwiplib with the microcontroller TM4C129X for create sockets TCP.
I'm using the develop kit of this microcontroller and I using in my project the FreeRTOS.
I saw that exist a library sockets.c/.h to do this but I'm having some problems for compile it.
In the lwipopts.h I made this change:
#define SYS_LIGHTWEIGHT_PROT 1
#define NO_SYS 0
#define LWIP_DHCP 1
#define LWIP_NETCONN 1
#define LWIP_SOCKET 1
#define LWIP_COMPAT_SOCKETS 1
And I defined this symbols in the project:
PART_TM4C129XNCZAD
TARGET_IS_SNOWFLAKE_RA0
RTOS_FREERTOS
LWIP_PROVIDE_ERRNO
Probably I'm forgotten something because I contiue having problems during de compilation process similars at "too many arguments in invocation of macro recv" or "struct tcp_pcb has no field lwip_recv"
Perhaps I don't have de correct version of this library?
Could send me some example where the library lwiplib are using the modul sockets.h and work with the FreeRTOS for the microcontroller TM4C129X of TivaC series?
Thanks you.