Error in ESP8266Basic.cpp
Posted: Tue Sep 06, 2016 11:53 am
ESP8266Basic.cpp.bin Alpha 44 has a misspelling in it. Using Notepad++ to view the code it reads:
Line 6591 (3TABS)tart(websocketServerLocation)
Should be (3TABS)start(websocketServerLocation) ???
i Think the misspelling began around Alpha 41.
Was monitoring a running program using Putty and Chrome Developers console.
After 5 or so minutes chrome console threw an error that the websocket was closing, Putty still said websocket open.
Basic program froze,. GUI became unresponsive
UPDATE
in Chrome dev console, under WebSockets.js LINE 11:
connection.onclose = function() {
setTimeout(function() {
tart(websocketServerLocation)
}, 1000);
document.getElementById("connection_status").value = "Disconnected";
};
Line 6591 (3TABS)tart(websocketServerLocation)
Should be (3TABS)start(websocketServerLocation) ???
i Think the misspelling began around Alpha 41.
Was monitoring a running program using Putty and Chrome Developers console.
After 5 or so minutes chrome console threw an error that the websocket was closing, Putty still said websocket open.
Basic program froze,. GUI became unresponsive
UPDATE
in Chrome dev console, under WebSockets.js LINE 11:
connection.onclose = function() {
setTimeout(function() {
tart(websocketServerLocation)
}, 1000);
document.getElementById("connection_status").value = "Disconnected";
};