From e4b8be4e5a3c03be108b10389ee475e3262dc961 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?King=20K=C3=A9vin?= Date: Mon, 9 Dec 2019 19:38:37 +0100 Subject: [PATCH] usb_cdcacm: increase output buffer size for more smooth output --- lib/usb_cdcacm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/usb_cdcacm.c b/lib/usb_cdcacm.c index 293a6ae..8daea4a 100644 --- a/lib/usb_cdcacm.c +++ b/lib/usb_cdcacm.c @@ -42,7 +42,7 @@ volatile bool usb_cdcacm_connecting = false; -static uint8_t usbd_control_buffer[128] = {0}; /**< buffer to be used for control requests */ +static uint8_t usbd_control_buffer[512] = {0}; /**< buffer to be used for control requests */ static usbd_device *usb_device = NULL; /**< structure holding all the info related to the USB device */ static volatile bool first_connection = false; /**< used to detect when the first connection occurred */