lbernstone

Results 235 comments of lbernstone

I know it is unsupported since it is not recognized by your device, and there is no [driver](https://github.com/espressif/esp-idf/tree/release/v5.1/components/spi_flash/include) for Renesas chips. I know it is 4Mbit b/c I read the...

> Is the Parallel TX unit supported? Not listed in the above table. [docs.espressif.com/projects/esp-idf/en/latest/esp32p4/api-reference/peripherals/parlio/parlio_tx.html](https://docs.espressif.com/projects/esp-idf/en/latest/esp32p4/api-reference/peripherals/parlio/parlio_tx.html) There is no native OO/C++ code, but the includes & archives are there for the IDF...

The HardwareSerial library has been modified to have more capabilities for handling intermittent and burst data flows. Take a look at the [OnReceive](https://github.com/espressif/arduino-esp32/blob/master/libraries/ESP32/examples/Serial/OnReceive_Demo/OnReceive_Demo.ino) and [RxTimeout](https://github.com/espressif/arduino-esp32/blob/master/libraries/ESP32/examples/Serial/RxTimeout_Demo/RxTimeout_Demo.ino) examples to see how to...

This forum is for issues with the code included here. Issues with 3rd party libraries should be addressed on their site. General questions should be asked at https://esp32.com

I also mentioned that there is no reason to have the buffer size larger than your maximum mqtt message size.

This needs guardrails for when to include, but here are the necessary includes ``` diff --git a/src/AsyncEventSource.cpp b/src/AsyncEventSource.cpp index f2914df..230e3f6 100644 --- a/src/AsyncEventSource.cpp +++ b/src/AsyncEventSource.cpp @@ -19,6 +19,7 @@ */...

That was a git diff. It was updated with my own 2 hands :) I just looked at what was missing, grep'd for those functions in the arduino-esp32/tools/esp32-arduino-libs/esp32/include folder, and...

You have a String object that is disappearing before you can use it. Don't pass objects between functions, that's what pointers are for. Treat anything out of your local context...

You will probably need to ask this at https://github.com/espressif/esp-idf/issues, since this is pure esp-idf code. First thing to check, however, is to collect the results of `dac_cosine_new_channel` and `dac_cosine_start` to...

The code comes from [upstream](https://github.com/espressif/esp-idf/tree/release/v5.1/components/driver/dac), so it can't be fixed here.