usb_cdcacm: increase output buffer size for more smooth output

This commit is contained in:
King Kévin 2019-12-09 19:38:37 +01:00
parent dfa24b30a8
commit e4b8be4e5a
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[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 */