My program uses GPIOs 35 through 39 and 37 is the only one that does this. This is with Arduino IDE version 2.3.3 and ESP32 board library version 3.0.5.
Test program:
Code: Select all
void setup() {
//digitalWrite(RGB_BUILTIN, HIGH); //Uncommenting this prevents crash
pinMode(37, OUTPUT);
neopixelWrite(RGB_BUILTIN, 8, 8, 8); //Crashes here (rgbLedWrite() does same)
}
void loop() {
//nothing
}