Tool/software: Code Composer Studio
I am trying to start something up through the ethernet using UDP.
I found some UDP_ECHO project out there and have copied a few statements from that.
I have included lwip/udp.h and the whole thing now comes as far as the linker process. (Had major problems finding and copying various deeper lying .h files handling IP architecture among other things)
But the linker drops out, because it is missing four symbols, all apparently in the upd_pcb struct. (and now somewhere in my main.obj)
ip_addr_any udp_bind udp_new udp_recv
Those are the only ones I so far use, so ...
But what am I missing, and how do I tell CCS what to do about it?
- A certain file missing in a certain directory?
- Am I missing a declaration somewhere early in my main.c file?
- Some library is needed for the linker setup?
- Other