aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKevin O'Connor <kevin@koconnor.net>2021-08-10 00:03:20 -0400
committerKevin O'Connor <kevin@koconnor.net>2021-08-30 12:12:11 -0400
commit3f46609c1d99940268c05e7e0aebb829212016d7 (patch)
treee58346ee05934346ac5d48ee4bfe31aefe4c02c8 /src
parent15035ed2265b6518be7897abe755fdca7cd4cf7c (diff)
downloadkutter-3f46609c1d99940268c05e7e0aebb829212016d7.tar.gz
kutter-3f46609c1d99940268c05e7e0aebb829212016d7.tar.xz
kutter-3f46609c1d99940268c05e7e0aebb829212016d7.zip
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 <kevin@koconnor.net>
Diffstat (limited to 'src')
-rw-r--r--src/generic/usb_cdc.c2
1 files changed, 1 insertions, 1 deletions
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)