espruino / Espruino

The Espruino JavaScript interpreter - Official Repo
http://www.espruino.com/
Other
2.76k stars 741 forks source link

Espruino WiFi neopixel disables IRQ #1960

Open gfwilliams opened 3 years ago

gfwilliams commented 3 years ago

From: http://forum.espruino.com/conversations/356951

We have two options:

gfwilliams commented 3 years ago

Workaround for now is to manually flip CTS:

A15.set();
neopixel.write...
A15.reset();
GermanWarez commented 2 years ago

GPIO15 is free to use, I don't think the workaround will work, unless the serial console is set to "AT+UART 3" during initialization. But this could break comms for some boards and users.

gfwilliams commented 2 years ago

unless the serial console is set to "AT+UART 3"

It's set to 2 already here: https://github.com/espruino/EspruinoDocs/blob/master/devices/EspruinoWiFi.js#L282

Will that not do it?