Hi @mark_pdx,
Thanks for sharing that.
Yes, that is part of my problem. I have the ESP32-S3-WROOM-1-N8R2, configured as a ESP32-S3-DevKitC-1.
The chip itself is equivalent to the Adafruit Feather ESP32-S3 2MB PSRAM, but the pins are routed differently on the ESP32-S3-DevKitC-1 than they are on the Feather and the board is not behaving correctly as a result.
I’m curious something similar is causing your attempt at using SoftwareSerial
to manifest as a runtime error.
I will purchase a the Adafruit Feather ESP32-S3 No PSRAM
, and see if I can get things working.
Setting that aside for a moment, it seems like the best path forward for you today would be for you to patch note-arduino
, and provide an empty NoteSerial_Arduino::reset
function.
Change the following lines:
to:
bool
NoteSerial_Arduino::reset (
void
)
{
return true;
}
Can you give that a try and tell me if that fixes your immediate problem?
Thanks,
Zak