Trying to run a simple application on the ESP8266, specifically the Adafruit HUZZAH ESP8266 breakout.
https://github.com/NoumanSaleem/esp8266-hello-world
The application is compiled using https://github.com/pfalcon/esp-open-sdk, under sdk 1.5, and flashed using esptool.py.
After the app starts, I am able to see my request debug output on my serial monitor, however it stops responding between 20-40 seconds on average. After it stops responding, I can then see the device as inactive under my router.
Here is the command I am running:
Code: Select all
while true; do echo -n “fewb” | nc -4u -w1 192.168.1.67 25867; sleep 2; done
To add to the weirdness, if I run a ping in parallel to my command above, everything works fine. Have tested this as working for 5+ minutes.
Any help is greatly appreciated.