Listing 2-4. lwip_sysboot_threadtype_RunFunction()
Implementation
2-12
Getting Started with ADSP-BF537 EZ-KIT Lite
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 Vi+
* 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
**/
www.BDTIC.com/ADI
Содержание EZ-KIT Lite ADSP-BF537
Страница 4: ...www BDTIC com ADI ...
Страница 8: ...CONTENTS viii Getting Started with ADSP BF537 EZ KIT Lite www BDTIC com ADI ...
Страница 52: ...Listing 1 3 Exercise 1 Part 3 1 30 Getting Started with ADSP BF537 EZ KIT Lite www BDTIC com ADI ...
Страница 88: ...What s Next 3 22 Getting Started with ADSP BF537 EZ KIT Lite www BDTIC com ADI ...