From 3f46609c1d99940268c05e7e0aebb829212016d7 Mon Sep 17 00:00:00 2001 From: Kevin O'Connor Date: Tue, 10 Aug 2021 00:03:20 -0400 Subject: [PATCH] usb_cdc: Increase USB transmit size Increase the transmit buffer size to better support bulk transmission of sensor data. Signed-off-by: Kevin O'Connor --- src/generic/usb_cdc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/generic/usb_cdc.c b/src/generic/usb_cdc.c index e522abff..577a8635 100644 --- a/src/generic/usb_cdc.c +++ b/src/generic/usb_cdc.c @@ -30,7 +30,7 @@ ****************************************************************/ static struct task_wake usb_bulk_in_wake; -static uint8_t transmit_buf[96], transmit_pos; +static uint8_t transmit_buf[192], transmit_pos; void usb_notify_bulk_in(void)