From 58924500e3080214538f3db573e6efe97db7bea9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?King=20K=C3=A9vin?= Date: Thu, 28 Jan 2021 11:04:32 +0100 Subject: [PATCH] usb_cdcacm: increase TX buffer for more logging --- 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 19646bd..ada2cdd 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[256] = {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 */