Part Number: CC3200
Other Parts Discussed in Thread: CC3100
Tool/software: Code Composer Studio
Hi there,
I built an application on my CC3200 LaunchXL board that basically connects the CC3200 to a WPA2 network and then opens/closes SSL socket to send data.
After several hours of test I receive this message on UART
[GENERAL EVENT] - ID=[2] Sender=[0]
After that message the system freeze completely. I have a specific task that act as heart beat and after that message the led blinking stops. This task only toggles a led. The second task manages the connection and socket.
What does error means?
This is my SimpleLinkGeneralEventHandler:
void SimpleLinkGeneralEventHandler(SlDeviceEvent_t *pDevEvent)
{
//
// Most of the general errors are not FATAL are are to be handled
// appropriately by the application
//
UART_PRINT("[GENERAL EVENT] - ID=[%d] Sender=[%d]\r\n",
pDevEvent->EventData.deviceEvent.status,
pDevEvent->EventData.deviceEvent.sender);
}