summaryrefslogtreecommitdiff
path: root/src/device
AgeCommit message (Collapse)Author
2019-10-02usbd_control.c: Decide whether a control transfer has a data stageWilliam D. Jones
based on setup packet wLength.
2019-10-02Merge branch 'master' into ZLP_Request2Nathan Conrad
2019-10-012nd attempt to fix #161hathach
2019-10-01fix #161 added volatile for ep_busy_map/ep_stall_maphathach
2019-09-29Github's web interface changed line endings without asking me. Oops.Nathan Conrad
2019-09-29Merge branch 'master' into ZLP_Request2Nathan Conrad
2019-09-27Fix typo of CFG_TUD_ENDOINT0_SIZE.Nathan Conrad
2019-09-27Fix typo of CFG_TUD_ENDOINT0_SIZE.Nathan Conrad
2019-09-27Merge branch 'master' into ZLP_Request2Nathan Conrad
2019-09-21Merge branch 'clear_feature_ordering' into usbtmcNathan Conrad
2019-09-21Changing the bitwise to a logical OR created a huge hard to find bug. It ↵Nathan Conrad
shortcutted the call to the class function, so, lets use shortcutting anyway?
2019-09-21logical or.Nathan Conrad
2019-09-21Correct wording of comment on handling EP requests.Nathan Conrad
2019-09-21When unstalling, EP must be marked as not busy. Also, mark EP as busy when ↵Nathan Conrad
stalling as xfer requests should fail.
2019-09-21Make type casting explicitNathan Conrad
2019-09-21Calling EP open with bad parameters should be considered a bug.Nathan Conrad
2019-09-21Reorder handling of EP control requests,Nathan Conrad
2019-09-21USB Control: Pointer arithmetic on void* is forbidenNathan Conrad
2019-09-19Rename functions to include tud_ and _cbNathan Conrad
2019-09-19Move descriptors to usbd.hNathan Conrad
2019-09-17Merge branch 'master' into usbtmcNathan Conrad
2019-09-16follow up to suggestion to pr 155hathach
2019-09-14Add usbtmc class driver.Nathan Conrad
2019-09-13fix #154 forward all endpoint recipeint request to class driverhathach
fix typo remove magic number 0xff of driver id
2019-09-13fix #152, potential memory issuehathach
2019-09-13fix #139, correct usbd request intepreting, Non-STD request to Interface ↵hathach
must be forward to class driver
2019-09-12For control transfers, compare the transmitted length against the requested ↵Nathan Conrad
length to know if a ZLP needs to happen. (fixes #139)
2019-09-09Fix typo of ENDOINTNathan Conrad
2019-08-23fix warnings of template descriptorhathach
2019-08-01clean uphathach
- remove TUD_WEBUSB_URL_DESCRIPTOR to avoid flexible array member (C++ forbid in strict mode) - remove unused TUD_DESC_STRLEN/TUD_DESC_STR_HEADER/TUD_DESC_STR_HEADER
2019-08-01add vendor peek, change cdc peek signature, change cdc read_char() return ↵hathach
from signed char to int32_t
2019-07-30added BOS MS OS 2.0 descriptor to webusb example, it work with windowshathach
2019-07-26fix stall response with SET_INTERFACE/GET_INTERFACEhathach
webusb work with linux & macos
2019-07-26webusb work great with linuxhathach
2019-07-25more webusb + vendorhathach
2019-07-24move tud_vendor_control_* to usbd.hhathach
2019-07-24update vendor device similar to cdc read/writehathach
maybe refactor later
2019-07-24rename tud_control_vendor_request_cb/complete_cb to ↵hathach
tud_vendor_control_request_cb/complete_cb
2019-07-19more house keepinghathach
2019-07-19house keepinghathach
2019-07-19rename CFG_TUD_CUSTOM_CLASS to CFG_TUD_VENDORhathach
2019-07-16add tud_control_vendor_request_cb()/tud_control_vendor_complete_cb(), expose ↵hathach
usbd control transfer rename usbd_control_transfer/status to tud_control_transfer/status
2019-07-12clean up, rename internal driver control_request_complete to simply ↵hathach
control_complete
2019-07-12updating webusb with cdchathach
2019-07-12change TUD_HID_INOUT_DESCRIPTOR epout & epin orderhathach
clean up, adding template for BOS & BOS platform descriptor
2019-07-12added tud_descriptor_bos_cb(), add support for BOS get descriptorhathach
2019-07-09fix incorrect midi descriptor templatehathach
2019-07-05midi only use audio 1.0 without IADhathach
2019-07-01fix midi templatehathach
2019-07-01improving midi support, adding midi exmaplehathach
rename TUSB_DESC_CLASS_SPECIFIC to TUSB_DESC_CS_INTERFACE