| 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()
|
|
|
|
|
|
|
|
|
|
callback
|
|
- remove tud_desc_set.hid_report
- remove tud_desc_set_t
|
|
- remove tud_desc_set.string_arr/string_count
|
|
|
|
refactor usbd_open_edpt_pair
|
|
|
|
Application should declare its own device descriptor
|
|
|
|
|
|
attribute
|
|
|
|
|
|
|
|
- remove use of osal_queue_reset
|
|
|
|
|
|
change dcd_init signature
|
|
also rename DCD_EVENT_SUSPENDED to DCD_EVENT_SUSPEND
|
|
mark device as disconnected immed with DCD_EVENT_UNPLUGGED
|
|
|
|
|
|
- remove dcd_edpt_stalled() from dcd porting
|
|
|
|
and out
|
|
|
|
|
|
It also introduces a txbuffer which copies data into it but passes
the buffer straight to the USB rather than another copy.
|
|
tusb_task() still exists for backward compatible
|
|
|
|
remove OSAL_TASK_DEF, osal_task_create. Applicaton should create a task
and call tinyusb_task(). This make API consistent with NO OS.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
- replace tusb_hal_int_enable/disable to dcd_int_enable/disable,
hcd_int_enable/disable
- remove tusb_hal_init(), this will be part of dcd_init/hcd_init,
anything beyond dcd/hcd should be inited by bsp
|
|
|