| Age | Commit message (Collapse) | Author |
|
|
|
- improve fifo write/read_n with only one lock
- use usbd_edpt_xfer/usbd_edpt_busy for hid/cdc/msc class driver
- replace cdc read's pending_read_from_host by usbd_edpt_busy()
|
|
|
|
|
|
|
|
|
|
|
|
tud_msc_capacity_cb() get zero size
|
|
|
|
add tud_msc_start_stop_cb() as optional callback
|
|
- rename tud_msc_maxlun_cb to tud_msc_get_maxlun_cb
|
|
|
|
|
|
|
|
refactor usbd_open_edpt_pair
|
|
|
|
- remove CFG_TUD_MSC_MAXLUN
- add tud_msc_maxlun_cb()
- add msc_dual_lun exmaple
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
- remove dcd_edpt_stalled() from dcd porting
|
|
|
|
|
|
This was causing a stringop-truncation compiler warning in gcc 8 when
the #defined values being copied from were string literals.
`error: 'strncpy' output truncated before terminating nul copying 8 bytes from a string of the same length [-Werror=stringop-truncation]`
These fields aren't NUL terminated C strings, they are a fixed width buffer
that is supposed to be space (0x20) padded.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|