lbernstone
lbernstone
Have you tried calling Serial0.end before you start the LORA? It may still be in use by the console.
The difference on pin 17 is very likely the console being attached. Arduino is set up to "do the right thing", so it by default puts the console on both...
NVS is essentially a file system on the same flash as your firmware. So, if your firmware is being loaded, your hardware is working. If you think there might be...
Does the [StartCounter example](https://github.com/espressif/arduino-esp32/blob/master/libraries/Preferences/examples/StartCounter/StartCounter.ino) work on the device? Does the NVS fail only one time in every 43 boots? Your code has no error checking (neither does the example). You...
How is that getting resolved in the network? mdns or does the dns server have a default domain?
There are Arduino libraries for [ESP-NOW](https://github.com/espressif/arduino-esp32/tree/master/libraries/ESP_NOW/examples). You should try them out. The ESP-IDF functions are [documented here](https://docs.espressif.com/projects/esp-idf/en/release-v5.1/esp32s3/api-reference/network/esp_now.html). The [ESP-IDF example is here](https://github.com/espressif/esp-idf/tree/release/v5.1/examples/wifi/espnow)
The continuous driver uses a ringbuffer. When a conversion frame is full, it sends a notification- not with every sample. https://docs.espressif.com/projects/esp-idf/en/release-v5.1/esp32s3/api-reference/peripherals/adc_continuous.html#register-event-callbacks
Are you using the psram pins (16&17)?
You probably need to put a delay in loop() or else delete it with`vTaskDelete(NULL);`.
Fixes get merged in the next release. The code is there if you need it now. Remarking out the enable in LittleFS.cpp is really all you need for a quick...