We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9398e48 + b03028c commit 26a8f37Copy full SHA for 26a8f37
cores/esp32/esp32-hal-tinyusb.c
@@ -61,7 +61,12 @@ typedef struct {
61
62
static bool usb_otg_deinit(void * busptr) {
63
// Once USB OTG is initialized, its GPIOs are assigned and it shall never be deinited
64
+ // except when S3 swithicng usb from cdc to jtag while resetting to bootrom
65
+#if CONFIG_IDF_TARGET_ESP32S3
66
+ return true;
67
+#else
68
return false;
69
+#endif
70
}
71
72
static void configure_pins(usb_hal_context_t *usb)
0 commit comments