Tool/software: Code Composer Studio
Hi,
I'm working with the Simplelink CC3200 to establish a P2P connection with my mobile device.
I use SDK 1.3 P2P example and it works fine using my Samsung Galaxy S5. The problem is that the connection is not stable. Sometimes (randomely) the connection would not be established.
Lately I changed the mobile device I was working with (moved to Samsung Galaxy J7) and I was surprised to find out that the connection can not be established.
So this particular example is not working with all mobile devices. I tried to debug the problem and it seems to be stuck in the loop below :
#ifdef P2P_ROLE_TYPE_NEGOTIATE
while(! IS_IP_ACQUIRED(g_ulStatus))
#else
while(! IS_IP_LEASED(g_ulStatus))
#endif
{
_SlNonOsMainLoopTask();
if(IS_CONNECT_FAILED(g_ulStatus))
{
// Error, connection is failed
ASSERT_ON_ERROR(NETWORK_CONNECTION_FAILED);
}
}
I would realy appreciate any help with this issue.
Thanks.