I am running 1v95.4 on the NODE MCU ESP8266 dev board. When I run this code...
var temp = [1, 2, 3, 4, 5, 6, 7, 8, 9, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 0]; var send = function(times, i) { console.log('foobar', i); if (i < times.length) { send(times, i + 1); } }; send(temp, 1);
I get this...
>foobar 1 foobar 2 foobar 3 foobar 4 foobar 5 foobar 6 foobar 7 foobar 8 foobar 9 foobar 10 foobar 11 foobar 12 foobar 13 ERROR: Prompt not detected - upload failed. Trying to recover...
Some times it will make it to 16, but it always hangs. Does anyone know what may be happening here?
@calebbrewer started
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 am running 1v95.4 on the NODE MCU ESP8266 dev board. When I run this code...
I get this...
Some times it will make it to 16, but it always hangs. Does anyone know what may be happening here?