Closed BelKed closed 2 years ago
I see that framework is updated (a new major version was released), maybe something significant was changed in the API, but it is weird, as the lib only uses hardware serial. I'll try to run the HW example on my end.
Have you tried Serial2? AFAIK, by default Serial1 is mapped to IO9 and IO10 which are used for flash. So either remap Serial1 to different pins or use Serial2.
I've just tested and it works on the latest framework.
Great, after using Serial2
it works fine.
I know that Serial1
has certain limitations, but actually, I didn't really realize that I can't use it...
Thanks for pointing me to the right direction :)
Nice to hear that it works.
You can use Serial1, just remap pins like this:
Serial1.begin(9600, SERIAL_8N1, 16, 17); //rx, tx
I downloaded the library from the
master
branch and after uploading the example code (hw_get_values.ino
) without any changes to ESP32 it doesn't seem to work:After placing the stack trace in the ESP Exception Decoder, the following is displayed:
If I can provide something else related to this issue, feel free to write...