usb_cdcacm: increase TX buffer for more logging

This commit is contained in:
King Kévin 2021-01-28 11:04:32 +01:00
parent 69944a24cf
commit 58924500e3
1 changed files with 1 additions and 1 deletions

View File

@ -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 */