1170 EVK duo_ping azure example

取消
显示结果 
显示  仅  | 搜索替代 
您的意思是: 
已解决

1170 EVK duo_ping azure example

跳至解决方案
645 次查看
GLantzTCore
Contributor III

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.

 

0 项奖励
回复
1 解答
606 次查看
GLantzTCore
Contributor III

Discovered my error.  I failed to properly read the readme file as to how to issue the ping command.

在原帖中查看解决方案

1 回复
607 次查看
GLantzTCore
Contributor III

Discovered my error.  I failed to properly read the readme file as to how to issue the ping command.