Me No Dev

Results 707 comments of Me No Dev

@MarksWizard let's discuss your issue separately. You just do not want to see errors when you disconnect the device. This is something very different from there being a bug in...

When we get the Tab5, we will have a look and add support. Currently only specific pin combination is supported on the Espressif P4 board https://github.com/espressif/arduino-esp32/blob/master/variants/esp32p4/pins_arduino.h#L75-L83

This is almost true. In 3.2.x only SDIO pins can be defined (not the RST pin), in 3.3.x all pins will be definable, even at runtime

Fix is coming: https://github.com/espressif/arduino-esp32/pull/11513 ```cpp WiFi.setPins(clk, cmd, d0, d1, d2, d3, rst); WiFi.begin(ssid, pass); ```

> Looks promising, but will this work with SDIO2 as well? As the M5Stack Tab 5 uses SDIO2. It is set to use SDIO2 by default

> Any ETA of 3.3.x in which these issues will be resolved? Change will be valid in 3.2.1 when we release it this week

You did not point out the version of Arduino that you are using. Also please provide the board settings in the IDE

Actually this is not true. The `sd*` functions are not directly called. Start looking after line 440 in `sd_diskio.cpp` to see the actual functions being called and where does the...

Proper place to suggest this is in the official Arduino API repository here: https://github.com/arduino/ArduinoCore-API Please submit the feature request there and if approved, we can add it on our end...

Move `WiFi.begin(ssid, password);` before the `while` loop. Calling it in a loop is a bad idea