Hi,
How can I make the UDP demo example run between a CC3200 AP (UDP server) and a CC3200 client (UDP client)?
What are the changes in the code that I need to do?
Thanks and Regards,
Pradnya
This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
Hi,
How can I make the UDP demo example run between a CC3200 AP (UDP server) and a CC3200 client (UDP client)?
What are the changes in the code that I need to do?
Thanks and Regards,
Pradnya
Hi Raghavendra,
Thanks for the information.
What if I do not do the second part ? (Similarly, use the example 'getting_started_with_wlan_station' from the SDK. Add the UDP client functionality to this application after the device connects to CC3200 running in mode AP successfully.) and directly use the UDP socket example as a client application?
thanks and Regards,
Pradnya
Hi,
Inside 'SimpleLinkNetAppEventHandler' print the below text when you receive the event 'SL_NETAPP_IPV4_IPACQUIRED_EVENT'.
Report(" [Event] IP Acquired: %d.%d.%d.%d\n\r",
SL_IPV4_BYTE(pNetAppEvent->EventData.ipAcquiredV4.ip,3),
SL_IPV4_BYTE(pNetAppEvent->EventData.ipAcquiredV4.ip,2),
SL_IPV4_BYTE(pNetAppEvent->EventData.ipAcquiredV4.ip,1),
SL_IPV4_BYTE(pNetAppEvent->EventData.ipAcquiredV4.ip,0));
Regards,
Raghavendra