summaryrefslogtreecommitdiff
path: root/src/class/cdc
AgeCommit message (Collapse)Author
2023-03-22add tuh_hid_itf_get_info() and change tuh_cdc_itf_get_info() to use new ↵hathach
tuh_itf_info_t
2023-03-21add tuh_set_interfacehathach
2023-03-17fix trailing space and new linehathach
temporarily disable codespell
2023-03-17update host example, add pio-pico-usb for rp2040hathach
2023-02-22use tu_static instead of static _fuzz_threadhathach
2023-02-22Merge pull request #1867 from silvergasp/thread_local_globalsHa Thach
fix: Change all static variables to thread when fuzzing
2023-02-22rename maros from FUZZ to _FUZZ, change TU_STATIC to static _fuzz_threadhathach
2023-02-12Correct bitfields for ↵Jeff Trull
cdc_desc_func_telephone_call_state_reporting_capabilities_t
2023-02-10Adjust reserved bitfields to make SDCC happyJeff Trull
- keep each field at or under 16b - For optimal packing, segment fields to 8b boundaries
2023-01-20fix: Change all static variables to thread when fuzzingNathaniel Brough
2022-12-24add tuh_cdc_peek()hathach
2022-12-22fix incorrect rx buf in cdchathach
2022-12-22clean uphathach
2022-12-22add tuh_cdc_get_local_line_coding()hathach
2022-12-22correct host cdc enumhathach
2022-12-22cdc host, add set line coding APIhathach
2022-12-22minor clean uphathach
2022-12-22finish moving edpt stream to tusb.chathach
2022-12-22fix stream read count computationhathach
2022-12-22moving edpt_stream API into common tusb.chathach
2022-12-21add tuh_cdc_write_clear, rename read_flush() to read_clear()hathach
2022-12-21add tuh_cdc_tx_complete_cb() callbackhathach
2022-12-21add more host cdc APIhathach
tuh_cdc_write_available(), tuh_cdc_read_flush(), tuh_cdc_rx_cb() callback
2022-12-21correct cdc host apphathach
2022-12-21add tu_edpt_stream_write_zlp_if_needed()hathach
2022-12-21rename tud_edpt_stream_write_xferhathach
2022-12-21minor debug loghathach
2022-12-21fix cihathach
2022-12-21finalizing cdc host, has a working read/writehathach
TODO: first character seems not to get echoed. set control line state seems to failed with LOG < 2
2022-12-20fix hid host incorrect edpt release if failed to transmithathach
add CDC_CONTROL_LINE_STATE_DTR/RTS, TUSB_INDEX_INVALID enum
2022-12-16correct cdc usbh_driver_set_config_complete()hathach
2022-12-16stubhathach
2022-12-16add common EPSIZE for bulk/iso in full and highspeedhathach
adding cdc host fifo tx/rx
2022-12-16minor renamehathach
2022-12-16cdc check for bNumEndpoints before checking for endpoint descriptorhathach
2022-12-16adding tuh_cdc_mount_cb/tuh_cdc_umount_cbhathach
start adding cdc_app.c to example
2022-12-15use OSAL_MUTEX_REQUIRED to replace CFG_FIFO_MUTEX/TUSB_OPT_MUTEXhathach
add macro to swallow mutex API in order to simplify code with mutex
2022-12-08fix typo, add -Wno-error=unreachable-code for fuzz due to latest cdc changeshathach
2022-12-06cdc: Fix autoflush for FIFO < MPSTomas Rezucha
2022-12-04Fix typosBastien Nocera
2022-06-27fix all warnings with host rp2040hathach
2022-06-24add more warning option, also fix -Wconversion with rp2040hathach
-Wuninitialized, -Wunused, -Wredundant-decls
2022-06-02rhport argument in usbd_ API() is not used (always use the initialized port)hathach
remove the usage of TUD_OPT_RHPORT in class driver
2022-03-19rename usbh_edpt_open() to tuh_edpt_open()hathach
2022-03-19add parse config descriptor to examplehathach
move usbh_edpt_open() to public API, remove rhport from its signature
2022-03-18move daddr into xfer structhathach
2022-03-17rename user_arg to user_datahathach
2022-03-17rename tuh_control_xfer_t to tuh_xfer_thathach
2022-03-17slightly change the signature of tuh_control_xferhathach
2022-03-17change tuh_control_xfer_t structhathach