expand msc tx_buffer to 64

This commit is contained in:
sakumisu
2022-03-23 14:33:39 +08:00
parent eb8048e98e
commit be3e9d5425

View File

@@ -345,7 +345,7 @@ int usbh_msc_connect(struct usbh_hubport *hport, uint8_t intf)
hport->config.intf[intf].priv = msc_class;
msc_class->tx_buffer = usb_iomalloc(32);
msc_class->tx_buffer = usb_iomalloc(64);
if (msc_class->tx_buffer == NULL) {
USB_LOG_ERR("Fail to alloc tx_buffer\r\n");
return -ENOMEM;