I recently acquired the 1170 EVK and am working through example projects. I loaded the netx_duo_ping example with azure-rtos into my IAR EW IDE. It builds correctly. I commented out the #define of NX_ENABLE_DHCP as my small network I am testing on does not have a DHCP server and set an IP address.
#ifdef NX_ENABLE_DHCP
IP_ADDRESS(0, 0, 0, 0), IP_ADDRESS(0, 0, 0, 0),
#else
IP_ADDRESS(192, 168, 10, 2), 0xFFFFFF00UL,
#endif
&pool_0, nx_link_driver, (UCHAR *)ip_thread_stack, sizeof(ip_thread_stack), 1);
I am building the debug version of the project.
When I run the code, it hangs somewhere that I can't identify. The serial terminal shows this:
Start the ping example...
MAC address: 00:11:22:33:44:56
But I cannot enter the "ping xxx.yyy.www.zzz" command as described in the readme file. I have tried this both on the 1G and 10/100 ports.
Any suggestions would be appreciated.
Solved! Go to Solution.
Discovered my error. I failed to properly read the readme file as to how to issue the ping command.
Discovered my error. I failed to properly read the readme file as to how to issue the ping command.