diff options
| author | hathach <[email protected]> | 2023-01-06 11:51:17 +0700 |
|---|---|---|
| committer | hathach <[email protected]> | 2023-01-06 11:51:17 +0700 |
| commit | 2a1b81e3c50f5e37530c8318b7fb7767ba771979 (patch) | |
| tree | 38269377dfadb1db0ea86255d68fc716fd96205a /src/device | |
| parent | 9c73c1a532649630de5e55400632bcca90ebea06 (diff) | |
minimize tu_fifo size to 16
- remove non_used_index_space
- packed overwritable with item_size
Diffstat (limited to 'src/device')
| -rw-r--r-- | src/device/usbd.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/device/usbd.c b/src/device/usbd.c index f652a878e..6e0c6710d 100644 --- a/src/device/usbd.c +++ b/src/device/usbd.c @@ -388,6 +388,8 @@ bool tud_init (uint8_t rhport) TU_LOG(USBD_DBG, "USBD init on controller %u\r\n", rhport); TU_LOG_INT(USBD_DBG, sizeof(usbd_device_t)); + TU_LOG_INT(USBD_DBG, sizeof(tu_fifo_t)); + TU_LOG_INT(USBD_DBG, sizeof(tu_edpt_stream_t)); tu_varclr(&_usbd_dev); |
