diff options
| author | sakumisu <[email protected]> | 2024-06-23 13:50:23 +0800 |
|---|---|---|
| committer | sakumisu <[email protected]> | 2024-06-23 13:50:23 +0800 |
| commit | 69fe1598eddee105bc5aa1b4f1bde16661089ee3 (patch) | |
| tree | 1542da8a346e4d161c045ca4ae7f9aaf7ffd59e6 | |
| parent | 0f8ec31981f3c8a0b3099e2cada5680f9d5694e1 (diff) | |
update(core/usbd_core): increase intf array from 8 to 16
| -rw-r--r-- | core/usbd_core.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/usbd_core.c b/core/usbd_core.c index fe89fb43..e072d8a2 100644 --- a/core/usbd_core.c +++ b/core/usbd_core.c @@ -57,7 +57,7 @@ USB_NOCACHE_RAM_SECTION struct usbd_core_priv { #ifdef CONFIG_USBDEV_TEST_MODE bool test_req; #endif - struct usbd_interface *intf[8]; + struct usbd_interface *intf[16]; uint8_t intf_offset; struct usbd_tx_rx_msg tx_msg[CONFIG_USBDEV_EP_NUM]; |
