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.
1 parent 3a0892d commit bfb897aCopy full SHA for bfb897a
ports/espressif/supervisor/usb.c
@@ -138,3 +138,10 @@ void tud_cdc_rx_wanted_cb(uint8_t itf, char wanted_char) {
138
mp_sched_keyboard_interrupt();
139
}
140
141
+
142
+void tud_cdc_rx_cb(uint8_t itf) {
143
+ (void)itf;
144
+ // Workaround for "press any key to enter REPL" response being delayed on espressif.
145
+ // Wake main task when any key is pressed.
146
+ port_wake_main_task();
147
+}
0 commit comments