In version 0.3.1 and using the following code in a loop, after some random time (sometimes a long time) available() will return false, and bConnected will return true. Yet in the next loop around available is still false. The project in question is constantly sending and receiving websocket data until this problem occurs.
if(m_objWebsocketClient.available()) {
m_objWebsocketClient.poll();
} else {
bConnected = m_objWebsocketClient.connect(m_sTCI_server, port, "/");
}
In version 0.3.1 and using the following code in a loop, after some random time (sometimes a long time) available() will return false, and bConnected will return true. Yet in the next loop around available is still false. The project in question is constantly sending and receiving websocket data until this problem occurs.