Listing 2-4. lwip_sysboot_threadtype_RunFunction()
Implementation
int m_iBufLen;
};
Listing 2-4.
lwip_sysboot_threadtype_RunFunction()
Implementation
void
lwip_sysboot_threadtype_RunFunction(void **inPtr)
{
char
ip[32];
/* Initializes the TCP/IP Stack and returns */
if(system_init() == -1)
{
printf("Failed to initialize system\n");
return;
}
/* start stack */
start_stack();
/*
* For debug purposes, printf() IP address to the VisualDSP++
* console window. Likely not needed in final application.
*/
memset(ip,0,sizeof(ip));
if(gethostaddr(0,ip))
{
printf("IP ADDRESS: %s\n",ip);
}
/**
*
Add Application Code here
**/
2-12
www.BDTIC.com/ADI
Getting Started with ADSP-BF537 EZ-KIT Lite
Need help?
Do you have a question about the ADSP-BF537 EZ-KIT Lite and is the answer not in the manual?