Part Number: CC3551E
Other Parts Discussed in Thread: SYSCONFIG,
Hi Team,
I am using SimpleLink Wi-Fi SDK 10.10.00.18 with the CC35x1 development board and the lwIP TCP/IP stack.
I have created a wrapper around lwip_socket() as shown below:
int32_t s32_WIFID_CreateSocket(int32_t _s32_domain, int32_t _s32_type, int32_t _s32_protocol)
{
// if (!bln_wifiInitialized)
// {
// return -1;
// }
int32_t _s32_sock = lwip_socket(_s32_domain, _s32_type, _s32_protocol);
return (_s32_sock >= 0) ? _s32_sock : -1;
}
When lwip_socket() is called, there is below message:
hostexit.c file not found
I found hostexit.c under:
C:\ti\ti_cgt_arm_llvm_4.0.4.LTS\lib\src
However, including or referencing this file does not resolve the issue.
Is there any required initialization or configuration that must be performed before calling lwip_socket() when using the SimpleLink Wi-Fi SDK? Has anyone encountered this issue before, and what is the recommended solution?
Any guidance would be appreciated.
Regards,
Shivam







