I think he's using the Espruino WiFi in which case it's already got something on there.
CIPSERVER failed (Timeout) is actually when it fails to create a webserver - which should only happen at the start (you should only ever be creating one server). Do you get that error when things start breaking? Could you post up your code?
I wouldn't worry too much about LOW_MEMORY - it means it had to force a garbage collect, but nothing went wrong and no data was lost.
5-10 requests a second is relatively high for it though - I wouldn't expect the ESP8266 to handle much more than that. It's just how long it takes it recover after you stop hitting it with that many requests.
Espruino is a JavaScript interpreter for low-power Microcontrollers. This site is both a support community for Espruino and a place to share what you are working on.
I think he's using the Espruino WiFi in which case it's already got something on there.
CIPSERVER failed (Timeout)
is actually when it fails to create a webserver - which should only happen at the start (you should only ever be creating one server). Do you get that error when things start breaking? Could you post up your code?I wouldn't worry too much about
LOW_MEMORY
- it means it had to force a garbage collect, but nothing went wrong and no data was lost.5-10 requests a second is relatively high for it though - I wouldn't expect the ESP8266 to handle much more than that. It's just how long it takes it recover after you stop hitting it with that many requests.