Skip to content

Commit

Permalink
esp32/usb: Wake main thread when usb receives data.
Browse files Browse the repository at this point in the history
This improves latency on stdin.

Signed-off-by: Andrew Leech <andrew.leech@planetinnovation.com.au>
  • Loading branch information
Andrew Leech committed Nov 1, 2023
1 parent a614c1d commit 642affc
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion ports/esp32/usb.c
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,8 @@
static uint8_t usb_rx_buf[CONFIG_TINYUSB_CDC_RX_BUFSIZE];

static void usb_callback_rx(int itf, cdcacm_event_t *event) {
// TODO: what happens if more chars come in during this function, are they lost?
// IDF places tinyusb rx data onto freertos ringbuffer which this function
// forwards onto the stdin_ringbuf
for (;;) {
size_t len = 0;
esp_err_t ret = tinyusb_cdcacm_read(itf, usb_rx_buf, sizeof(usb_rx_buf), &len);
Expand All @@ -58,6 +59,7 @@ static void usb_callback_rx(int itf, cdcacm_event_t *event) {
ringbuf_put(&stdin_ringbuf, usb_rx_buf[i]);
}
}
xTaskNotifyGive(mp_main_task_handle);
}
}

Expand Down

0 comments on commit 642affc

Please sign in to comment.