summaryrefslogtreecommitdiff
path: root/src/device
AgeCommit message (Collapse)Author
2020-04-15use IAD to assign itf2drv mapping correctlyhathach
merge net_data back into net driver
2020-04-15add IAD for CDC ECM, remove EEM descriptor templatehathach
2020-04-15change cdc template protocol to Nonehathach
2020-04-15clean uphathach
2020-04-15clean uphathach
2020-04-15tested usbnet, completely remove class codehathach
2020-04-15remove class_code/subclass/protocol from driver structure, add name for logginghathach
2020-04-15Merge branch 'master' into class-driver-idhathach
2020-04-14usbnet: remove CDC-EEMPeter Lawrence
2020-04-15use class driver open() for interface support detectionhathach
tested with dfu_runtime
2020-04-14use explicit all_subclass and all_protocol since 0xFF is stil validhathach
2020-04-14complete adding subclass and protocol to driver idhathach
2020-04-14adding subclass & protocol to class driver structurehathach
2020-04-14Merge pull request #334 from majbthrd/usbnet_osagnosticHa Thach
usbnet: OS-agnostic (Windows/Linux/macOS) network driver
2020-04-12usbnet: OS-agnostic (Windows/Linux/macOS) network driverPeter Lawrence
2020-04-11Merge branch 'master' into refactor-irqhandlerHa Thach
2020-04-11Merge pull request #332 from pigrew/stm32fsdev-dcdconnectHa Thach
stm32fsdev: Implement dcd_connect.
2020-04-10Merge pull request #319 from hathach/add-esp32s2Ha Thach
port ESP32 S2
2020-04-10stm32fsdev: set dcd_connect API definitions to strong, Modify documentation.Nathan Conrad
2020-04-10fix uint32_t format with loghathach
2020-04-09stm32fsdev: Implement dcd_connect.Nathan Conrad
2020-04-09adding dcd_connect/disconnecthathach
2020-04-06call tud_irq_handler() for all nrf5x boardhathach
2020-04-06mass rename dcd_isr() to dcd_irq_handler()hathach
2020-04-06mass rename tud_isr to tud_irq_handlerhathach
2020-04-06house keepinghathach
2020-04-06move irqhandler to applicationhathach
tud_isr() must be called by application to forward the irqhandle to the stack
2020-03-31revise argument order for TUD_CONFIG_DESCRIPTOR macroPeter Lawrence
2020-03-30add provision for multiple configurationsPeter Lawrence
2020-03-27USBD: Use tud_control_xfer only for dataNathan Conrad
2020-03-22Merge branch 'master' into cr1901-msp430f5529hathach
2020-03-14Use CRLF on UART.Nathan Conrad
2020-03-08fix zlp for nrf52840hathach
2020-03-08fix log printfhathach
2020-03-07Merge pull request #291 from hathach/port-samg55Ha Thach
Port samg55
2020-03-02add CDC-ECM/RNDIS/CDC-EEM network device class with examplePeter Lawrence
2020-02-26Add langid support to descriptor string callback.Chang Feng
Signed-off-by: Chang Feng <[email protected]>
2020-02-07more log for debugginghathach
2020-01-15Normalize line endingsNathan Conrad
2020-01-05Merge pull request #254 from majbthrd/multi-setconfigHa Thach
gracefully handle multiple SET_CONFIGURATION requests
2019-12-30Let device respond to endpoint requests on EP0 (#251)Jeremy Herbert
Since endpoint 0 is used for control requests, it doesn't have a class driver attached to it. As such, the corresponding `_usbd_dev.ep2drv` entry points to driver `0xFF`, which is invalid and this makes the `TU_ASSERT(drvid < USBD_CLASS_DRIVER_COUNT);` line fail, and eventually causes an endpoint stall. So as-is the stack cannot respond to any endpoint requests on endpoint 0. However, standard requests on endpoint 0 do not need a class driver to produce a valid response. This commit changes the order of execution so that the assert is only checked if the endpoint is not 0.
2019-12-28gracefully handle multiple SET_CONFIGURATION requestsPeter Lawrence
2019-12-24Merge branch 'master' into develophathach
2019-12-23adding lookup table for debugginghathach
add msc scsi command list
2019-12-21able to response to scsi inquiry, but failed to response to test unit readyhathach
2019-12-20clean warningshathach
2019-11-28use dcd_edpt0_status_complete() to set address without blocking for ↵hathach
samd21/samd51/stm32_fsdev
2019-11-28get passed set addresshathach
2019-11-28add dcd_edpt0_status_complete() which is useful for several mcu porthathach
2019-11-27get passed first get device descriptorhathach