Search found 23 matches

by Remyhx
Wed Nov 02, 2022 2:43 pm
Forum: General Discussion
Topic: File transfer over USB
Replies: 14
Views: 12844

Re: File transfer over USB

@ESP_iggr that was a little bit stupid of me :shock: :lol: , i changed it and voila it worked! Thank you! With my SD or eMMC at 40mhz, 4-width com I can achieve 0.8 MB/s... Put MSC fifo size at 8192 (bigger not possible -> then it will automatically step down to 512). Do you think it could be faster?
by Remyhx
Tue Nov 01, 2022 8:50 am
Forum: General Discussion
Topic: File transfer over USB
Replies: 14
Views: 12844

Re: File transfer over USB

Yes, it should be very similar to that example, except that you would call sdmmc_write_sectors instead of wear_levilling functions. Hi ESP_iggr, I'm stuck with the SD connection with TinyUSB. After usb_init() I mount and connect the SD card (first tested with the SD card sample if I can access) and...
by Remyhx
Wed Oct 26, 2022 4:55 pm
Forum: General Discussion
Topic: File transfer over USB
Replies: 14
Views: 12844

Re: File transfer over USB

@ESP_igrr That would be awesome! Do you think it's possible to use an attached sd-mmc card or chip to redirect to USB? I'm looking for a nice solution to put data on a card or chip and read out by USB. Was also looking at a hardware solution like the MAX14500/14502, but it seems this chip is outdate...
by Remyhx
Tue Oct 25, 2022 7:07 pm
Forum: ESP IoT Solution
Topic: Is it possible to wakeup the esp32 main cores with an ultrasonic sensor runing on the ULP Co-processor??
Replies: 1
Views: 3708

Re: Is it possible to wakeup the esp32 main cores with an ultrasonic sensor runing on the ULP Co-processor??

It is possible if you know how to use assembly. Otherwise use the ESP32-S3, it can use a C orientated ULP to measure ADC and I2C.
by Remyhx
Tue Oct 25, 2022 6:59 pm
Forum: ESP-IDF
Topic: esp_bt.h: No such file or directory?
Replies: 2
Views: 5335

Re: esp_bt.h: No such file or directory?

Did you enable bluetooth in menuconfig?
by Remyhx
Tue Oct 25, 2022 6:55 pm
Forum: ESP-IDF
Topic: Example "msc": crash HUB: Short device descriptor transfer failed
Replies: 12
Views: 6839

Re: Example "msc": crash HUB: Short device descriptor transfer failed

I don't understand why the example is reading/writing to an USB stick and not acting like an USB stick / device? Would be awesome to just drag/drop to the ESP and preferably also to connected flash/emmc.
by Remyhx
Tue Oct 25, 2022 1:57 pm
Forum: General Discussion
Topic: File transfer over USB
Replies: 14
Views: 12844

Re: File transfer over USB

Hi jmadsenee, We don't have an example of USB device MSC class yet, sorry about that. I happen to have something similar in this personal project: https://github.com/igrr/esp32s2-wasm-demo/tree/main/firmware/main If you ignore the WebAssembly parts of that application, essentially it allows using a...
by Remyhx
Fri Oct 07, 2022 6:05 am
Forum: General Discussion
Topic: Stuck with debugging ESP32-S3 in VS-Code
Replies: 2
Views: 2503

Stuck with debugging ESP32-S3 in VS-Code

Hi, I bought a ESP32-S3 development board to test the USB connection for flashing/debugging and I can flash to the board, but am stuck debugging it. The documentation only mentions steps for eclips and the command line to work. I am working on a Mac, updated to the latest master IDF. (ESP-IDF v5.1-d...
by Remyhx
Thu Jun 02, 2022 11:20 am
Forum: ESP-IDF
Topic: problem bt.c
Replies: 4
Views: 2029

Re: problem bt.c

Every week I do a:

git pull

git submodule update --init --recursive

If I change the bt.c, it will give a message that it won't change the file (previously never needed to do), now i just remove that file, update and then add the esp-timer.h
by Remyhx
Wed Jun 01, 2022 8:45 am
Forum: ESP-IDF
Topic: problem bt.c
Replies: 4
Views: 2029

Re: problem bt.c

NB: C:/Espressif/esp-idf/components/bt/controller/esp32/bt.c C:/Espressif/esp-idf/components/bt/controller/esp32/bt.c:477:18: error: unknown type name 'esp_timer_handle_t' static DRAM_ATTR esp_timer_handle_t s_btdm_slp_tmr; ^~~~~~~~~~~~~~~~~~ C:/Espressif/esp-idf/components/bt/controller/esp32/bt.c:...