summaryrefslogtreecommitdiff
path: root/src/common
AgeCommit message (Collapse)Author
2019-09-09Remove some type conversion warnings (using GCC pedantic warnings)Nathan Conrad
2019-09-09Add dummy arguments to GET_NTH_ARG to make GCC happy (removes pedantic warnings)Nathan Conrad
2019-09-01clean uphathach
2019-08-31support LPC51u68 #100hathach
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-07-30clean uphathach
2019-07-30added BOS MS OS 2.0 descriptor to webusb example, it work with windowshathach
2019-07-16clean uphathach
2019-07-12clean up, rename internal driver control_request_complete to simply ↵hathach
control_complete
2019-07-12change TUD_HID_INOUT_DESCRIPTOR epout & epin orderhathach
clean up, adding template for BOS & BOS platform descriptor
2019-07-12clean uphathach
2019-07-12added tud_descriptor_bos_cb(), add support for BOS get descriptorhathach
2019-07-11add BOS descriptor and device capability constanthathach
2019-07-01improving midi support, adding midi exmaplehathach
rename TUSB_DESC_CLASS_SPECIFIC to TUSB_DESC_CS_INTERFACE
2019-06-06add TU_ prefix to compiler ATTR to prevent name conflict with applicationhathach
2019-05-29added usbd_edpt_xfer/usbd_edpt_busy to replace dcd_edpt_transfer/dcd_edpt_busy()hathach
- 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()
2019-05-14enable CFG_TUSB_DEBUG on DEBUG buildhathach
2019-05-14clean uphathach
2019-05-14more clean up use inline bit funciton instead of macroshathach
2019-05-14clean up endian convert functionhathach
2019-05-14remove deprecated tusb_task, clean up tusb compilerhathach
2019-05-14update license year to 2019hathach
2019-05-14clean uphathach
2019-05-12change tud_descriptor_string_cb() to be consistent with other descriptor ↵hathach
callback
2019-05-11add tud_descriptor_string_cb() for getting string descriptor from applicationhathach
- remove tud_desc_set.string_arr/string_count
2019-05-02support hid generic inout #58hathach
- add report descriptor template TUD_HID_REPORT_DESC_GENERIC_INOUT - add TUD_HID_INOUT_DESCRIPTOR & TUD_HID_INOUT_DESC_LEN - add hid_generic_inout example
2019-04-11clean uphathach
2019-03-30self powered and remote wakeup support are from configuration descriptor ↵hathach
attribute
2019-03-29working on suspend and resumehathach
change dcd_init signature
2019-03-24remove tusb_hal_millis() usage, less work for portinghathach
2019-03-23add board_noos_millis() for blinkyhathach
2019-03-20migrate license from BSD 3 clause to MIThathach
2019-03-15stm32 update TX Fifo for edpt IN, both CDC + MSC work greathathach
- call dcd_event_xfer_complete() when enough bytes received - add dcd_get_frame_number()
2019-01-08Remove txbuf in favor of fifo.Scott Shawcroft
Fifo incurs a second copy into a USB buffer but this ensures the correct USB buffer alignment. Some LPC chips require 64 byte alignment that txbuf couldn't do.
2019-01-04Split out txbuf and add unit test.Scott Shawcroft
2018-12-17add dcd_get_microframe()hathach
2018-12-14merge binary.h into tusb_common.hhathach
2018-12-14rename bit_* helper to tu_bit_*, BIT_* to TU_BIT_* for consistencyhathach
2018-12-14clean up compiler attributehathach
2018-12-13clean up error enumhathach
2018-12-13osal clean uphathach
remove OSAL_TASK_DEF, osal_task_create. Applicaton should create a task and call tinyusb_task(). This make API consistent with NO OS.
2018-12-12clean uphathach
2018-12-12rename descriptor_* helper to tu_desc_*hathach
2018-12-12rename edpt_dir/number/addr to tu_edpt_*hathach
2018-12-12replace all hcd pipe close by hcd_device_removehathach
2018-12-11fix build error with ohcihathach
2018-12-10add ep addr to host cdchathach
2018-12-07change usbh_control_xfer name and signaturehathach
2018-12-05add role to OSAL_QUEUE_DEF() to disable correct dcd/hcd isrhathach
2018-11-23remove pragma GCC diagnostichathach