tobozo

Results 648 comments of tobozo

thanks, I'll try to reproduce that and think of a way to prevent those errors. meanwhile you can try to bypass the error by testing the [esp32s3 example sketch](https://github.com/tobozo/ESP32-USB-Soft-Host/tree/main/examples/ESP32-S3-USB_Test) using...

USB Soft Host library only sees USB packets, it is up to you to turn those keycodes into keys depending on you keyboard layout. The sample example you compiled is...

hi ESP32-TarGz uses filesystem abstractions, but SdFat does not support it, so you'll need [a custom implementation of `fs::FS` that wraps SdFat](https://github.com/greiman/SdFat/files/14623380/sd_fat32_fs_wrapper.zip) ```cpp #include "sd_fat32_fs_wrapper.h" SdFat sd_fat_fs; fs::FS Sd =...

well if you're using [this version of SDFat](https://github.com/greiman) then it's a SDFat problem please see [this issue](https://github.com/greiman/SdFat/issues/471), or just downgrade SDFat version

how big is `1.tar.gz` and how many files does it hold?

> but my file is correct! there are three ways to verify that: - test the file with SD.h instead of SDFat.h - attach the file to this thread so...

how big is the LittleFS partition? maybe it's full until this is solved you should set the output debug level to `debug` in Arduino IDE, or add `-DCORE_DEBUG_LEVEL=5` to `build_flags`...

hi, indeed [esp-idf timers have been migrated to GPTimers](https://docs.espressif.com/projects/esp-idf/en/latest/esp32/migration-guides/release-5.x/5.0/peripherals.html#timer-group-driver) currently the library supports two types of timers: - software timer - idf 4.x + hardware timer and now it needs...