summaryrefslogtreecommitdiff
path: root/src/device
AgeCommit message (Collapse)Author
2020-11-07Merge pull request #553 from hathach/host-async-controlHa Thach
Host async control
2020-10-31Rename CDC_COMM_SUBCLASS_ETHERNET_NETWORKING_CONTROL_MODELJacob Potter
This was a confusing name; "Ethernet control model" (CDC ECM) and "network control model" (CDC NCM) are two separate USB subclasses.
2020-10-15audio: Add two channel feature unit descriptorJerzy Kasenberg
Feature unit descriptor size depends on number of channels. So far only single channel feature unit was present. This change adds feature unit descriptor for two channels.
2020-10-12add usbh_edpt_claim/releasehathach
implement USBH_EVENT_FUNC_CALL
2020-10-11Merge branch 'master' into host-async-controlhathach
2020-10-09Revert dcd_alloc_mem_for_conf() but keep changes from @kasjer for ISO EPReinhard Panhuber
Add tud_audio_set_itf_close_EP_cb()
2020-10-07tab -> spaceshathach
2020-10-06Merge branch 'uac2' of https://github.com/PanRe/tinyusb into PanRe-uac2hathach
2020-10-01Change AUDIO_CS_INTERFACE_HEADER to AUDIO_CS_AC_INTERFACE_HEADERReinhard Panhuber
2020-10-01device: Make number of endpoints configurableJerzy Kasenberg
Currently number of endpoints was hard coded to 8. NRF52 has 9 IN and 9 OUT endpoints. ISO endpoints are 0x08 and 0x88 and without this change those two ISO endpoint could not be used.
2020-09-29Change AUDIO_FUNC_PROTOCOL_CODE_UNDEF for midi in usbd.hReinhard Panhuber
2020-09-28Merge remote-tracking branch 'upstream/master' into uac2Reinhard Panhuber
2020-09-28audio: Add descriptor for mono speakerJerzy Kasenberg
This provides descriptor for mono speaker with explicit feedback.
2020-09-28audio_device: Update explicit feedback supportJerzy Kasenberg
Feedback can be specified by the user code and will be sent at feedback endpoint specified interval.
2020-09-14more consthathach
2020-09-14cdc device: claim endpoint before checking fifo availabilityhathach
- add pre-check to reduce mutex lock in usbd_edpt_claim
2020-09-11clean uphathach
2020-09-10update claim edpt for hid and midihathach
2020-09-09update cdc edpt readhathach
2020-09-09introduce optional usbd_edpt_claim, usbd_edpt_release which can be used to ↵hathach
gain exclusive access to usbd_edpt_xfer
2020-09-05add in_isr to all hcd event functionshathach
2020-09-05clean uphathach
2020-09-04Merge remote-tracking branch 'upstream/master' into uac2Reinhard Panhuber
2020-09-03rename tuh_isr/hcd_isr to tuh_int_handler/hcd_int_handlerhathach
2020-08-16Merge remote-tracking branch 'upstream/master' into uac2Reinhard Panhuber
Conflicts: src/device/usbd.c src/device/usbd.h src/portable/st/synopsys/dcd_synopsys.c
2020-08-07update note for app driver list mustbe accesible at all time.hathach
2020-08-07allow application driver to overwrite built-in onehathach
- position application driver before built-in - remove dcd.h from public include.
2020-08-07Merge branch 'master' into add-app-driverhathach
2020-08-01enable pull-up in dcd_init() instead of usbdhathach
2020-07-27Implement dynamic reallocation of RX and TX fifos for EP0.Reinhard Panhuber
Tested with EP0 size 8/16/32/64.
2020-07-25Merge remote-tracking branch 'upstream/master' into uac2Reinhard Panhuber
2020-07-23example to call tud_init() after freeRTOS kernel is startedhathach
add note for usb init when using with RTOS
2020-07-21Merge pull request #466 from chang196700/feature/string_desc_msosHa Thach
Remove 0xEE index string if statement & change TU_ASSERT to TU_VERIFY
2020-07-19Remove 0xEE index string if statement & change TU_ASSERT to TU_VERIFYChang Feng
Signed-off-by: Chang Feng <[email protected]>
2020-07-17Intermediate commit.Reinhard Panhuber
2020-07-16add tud_speed_get()hathach
- define both fs and hs configuration descriptor - rename CFG_TUD_CDC_EPSIZE to CFG_TUD_CDC_EP_BUFSIZE with default size of 64 for FS, and 512 for HS
2020-06-30Merge branch 'master' into add-stm-hshathach
2020-06-20Merge branch 'master' into uac2Reinhard Panhuber
Conflicts: src/device/usbd.c
2020-06-20Get update from tinyusb.Reinhard Panhuber
2020-06-17Fix IAR warnings.Mengsk
Pa039 : use of address of unaligned structure member. Pe188: enumerated type mixed with another type.
2020-06-14Fix wrong comment for IAD checks.Reinhard Panhuber
2020-06-14improve usbd log for control transferhathach
2020-06-14Fix alignment.Reinhard Panhuber
2020-06-14Fix alignment.Reinhard Panhuber
2020-06-14Fix alignment.Reinhard Panhuber
2020-06-14Merge branch 'fix-too-strict-iad-checks' into uac2Reinhard Panhuber
Conflicts: src/device/usbd.c
2020-06-13Fix too strict checks on subclass and interface of iad descriptor.Reinhard Panhuber
2020-06-13Fix mic audio descriptor, fix too strict check on IAD desc. in usbd.cReinhard Panhuber
2020-06-11Merge branch 'master' into uac2Reinhard Panhuber
2020-06-01adding speed detect on bus resethathach