lbernstone
lbernstone
Well, something is disappearing/unavailable when littlefs tries to stat that file. Since you know what you have modified from a more standard config, that seems like a good place to...
Also, how many file handles have you set when you init littlefs?
The CI is separated enough now that separate (assets and) packages could be put together for each variant.
My comment was directed at the devs that the pieces are in place to make single-variant packages. Each toolchain would not get any smaller, you would only download the ones...
Yes, frameworks rarely get smaller as they accumulate more cruft. Libraries may need to be [updated to work in v3.x](https://docs.espressif.com/projects/arduino-esp32/en/latest/migration_guides/2.x_to_3.0.html) as there are breaking changes in the APIs.
Try adding this to your code: ``` #include void setup() { esp_coex_wifi_i154_enable(void) ```
> Hi [@lbernstone](https://github.com/lbernstone) , Your suggestion worked for STA mode. Still the problem persists in AP mode. The AP is created but the client such as mobile is not able...
This looks like an interrupt watchdog. You only get 300ms to run an ISR, so don't interact with hardware (set a flag or notify a task). This can also be...
Do you see the same issue with the [example](https://github.com/espressif/arduino-esp32/blob/master/libraries/WiFi/examples/WiFiClientBasic/WiFiClientBasic.ino)?
It is disabling the idle timer. While core1 is busy, it isn't feeding the idle timer on core 0, which causes the watchdog to fire. The error is there because...