Search found 4 matches

by swortain
Tue Aug 08, 2023 9:09 am
Forum: ESP-IDF
Topic: if it is possible to enable DFU mode on ESP32-S3(S2) by software?
Replies: 4
Views: 1139

Re: if it is possible to enable DFU mode on ESP32-S3(S2) by software?

Hi, I find where the problem is. Cause I need ESP32 act as HID device, I used tinyusb and if I call tinyusb_driver_install() in my program. the ESP32S3 cannot recognize by computer after reboot. If I delete that code, I works. But it seemed that tinyusb_driver_uninstall() is still on TODO list? If t...
by swortain
Tue Aug 08, 2023 6:40 am
Forum: ESP-IDF
Topic: if it is possible to enable DFU mode on ESP32-S3(S2) by software?
Replies: 4
Views: 1139

Re: if it is possible to enable DFU mode on ESP32-S3(S2) by software?

hi,sorry for the late reply. I have tried the way as mentioned. and ESP32 saied it turn into download mode. but computer didn't recognize the device. and here is my code(call reboot_dfu_set() in main() ). 微信图片_20230808143751.png /* USB interrupt handler, forward the call to the ROM driver. * Non-sta...
by swortain
Tue Jul 18, 2023 1:40 am
Forum: ESP-IDF
Topic: if it is possible to enable DFU mode on ESP32-S3(S2) by software?
Replies: 4
Views: 1139

Re: if it is possible to enable DFU mode on ESP32-S3(S2) by software?

BTW, I'm using ESP as a USB HID device, so if I still need set the USB_PHY_SEL eFuse?
by swortain
Mon Jul 17, 2023 6:45 am
Forum: ESP-IDF
Topic: if it is possible to enable DFU mode on ESP32-S3(S2) by software?
Replies: 4
Views: 1139

if it is possible to enable DFU mode on ESP32-S3(S2) by software?

Hi, I'm working on a project that using a USB HID on esp32-s3, and cannot control the GPIO0 phisically.
So I'm wonderring if I can enable the DFU mode by ESP32-S3 itself? like receivng a message on HID then the device reboot and go to the DFU mode rather then original USB HID origin.