summaryrefslogtreecommitdiff
path: root/tinyusb/host/hcd.h
AgeCommit message (Collapse)Author
2018-06-18rename subfolder source to srchathach
2018-04-10mass rename TUSB_CFG to CFG_TUSBhathach
2018-03-23shorten descriptor typehathach
2018-03-12more renamehathach
2018-03-06remove tusb_isr(), rename hal_hcd_isr() and hal_dcd_isr()hathach
2014-04-17add script files, fix build error with devicehathach
2014-04-13merge EHCI_MAX_QHD/QTD and OHCI_MAX_QHD/QTD to HCD_MAX_ENDPOINT/XFER and ↵hathach
scale with number of enabled classes. default config to support up to 5 device (hub + 4 others)
2014-03-24doxygen documentinghathach
2014-03-16doxygen documenthathach
2014-03-12IAR line ending warninghathach
2014-02-20use hcd_pipe_is_busy instead of hcd_pipe_is_idlehathach
remove hcd_pipe_is_idle
2013-10-25more doxygen workhathach
2013-10-16refractor hub apihathach
fix all test build errors
2013-09-28clean up hid host (temp let test failed)hathach
2013-09-24allow a limited model to deal with stalled pipe/transactionhathach
added stall clear & able to mount the stupid toshiba thumb drive add HCD pipe API - bool hcd_pipe_is_busy(pipe_handle_t pipe_hdl); - bool hcd_pipe_is_stalled(pipe_handle_t pipe_hdl); - uint8_t hcd_pipe_get_endpoint_addr(pipe_handle_t pipe_hdl); - tusb_error_t hcd_pipe_clear_stall(pipe_handle_t pipe_hdl); remove tusbh_device_mount_failed_cb (not neccessary for user)
2013-09-23refractor hcd API to allow queue xfer without actually transferring datahathach
2013-09-20start to add msc host, fix dangerous problem with unstable device when ↵hathach
plugged --> 200 ms delay. 50ms delay after each port reset
2013-07-04no big deal, only rename tusb_std_request_t to tusb_control_request_thathach
2013-07-03change some license texthathach
2013-06-21add api for hcd: hcd_pipe_is_idlehathach
add api for usbh: tusbh_device_get_mounted_class_flag implement api for custom class - is mounted - read
2013-04-25implement hcd_port_speed_gethathach
move port reset & speed detection from isr context to usbh enumeration task - decrease time in isr significantly from 50 ms to 580us fix bug with osal_task_delay for freeRTOS buil
2013-03-26add code & test for hidh_isr (set status for keyboard)hathach
2013-03-26rename pipe_status_t to tusb_interface_status_thathach
add tusbh_hid_keyboard_status & test code
2013-03-25add several helper functionhathach
add test & code for hidh_keyboard_open_subtask - skip parsing HID descriptor for keyboard
2013-03-25change website from tinyusb.net to tinyusb.orghathach
2013-03-24refractor hidh keyboardhathach
changing class hidh behavior
2013-03-23change signature usbh_isr to add tusb_bus_event_t parameterhathach
change singature of call_isr as well
2013-03-23refractorhathach
- rename usbh_device_info_t.status to state - rename enum TUSB_DEVICE_STATUS_* to TUSB_DEVICE_STATE_*
2013-03-12implement port hcd_port_connect_statushathach
clean up
2013-03-12add project file for keilhathach
fix binary.h compiler specific add hal_init code to reset & set usbmode --> able to get USB ISR remove const qualifier from return function of - get_operational_register - get_period_frame_list - get_async_head - get_period_head - get_control_qhd add stub for - hcd_port_connect_status - hcd_port_speed
2013-03-09add class code to hcd_pipe_open to facilitate usb_complete callbackhathach
2013-03-09add int_on_complete parameter to hcd_pipe_xfer for TD chain class requesthathach
fix control transfer request: remove get_control_request_ptr()
2013-03-07add test code & hcd_pipe_xfer for bulk transferhathach
- test cross 4k boundary test for bulk transfer rename p_qtd_list to p_qtd_list_head
2013-03-07make "used" member of ehci_qtd_t into reserved place of buffer[1] (with ↵hathach
assert check in hcd init)
2013-03-06add prototype for hcd_pipe(control)_closehathach
- update test code for enum task respectively
2013-03-05add test & code for open bulk transfer to hcd_pipe_open()hathach
2013-03-05add test & code for hcd_pipe_control_openhathach
2013-03-04abstract call chains from hal usb isrhathach
2013-02-28start to add code for hcd_init testhathach
change hcd_init signature (omit hostid)
2013-02-06refractor move device_addr0 into usbh_device_poolhathach
enum_entry contains speed and enum task will not carry out disconnection clean up
2013-02-06refractor move test enum to its own filehathach
add assert with handler add task assert with error catcher
2013-02-04resolve conflict between usbh & hcdhathach
2013-02-04add usbh_hcd to hold common structure/typedef for usbh and hcdhathach
2013-02-04rename usbd_host to usbhhathach
2013-02-04refine ASSERT_DEFINE to allow special error_handler for os taskhathach
add device_addr0 for enumeration task start to add osal port for freeRTOS
2013-02-02refine OSAL_TASK_LOOP_BEGIN & OSAL_TASK_LOOP_ENDhathach
- add TASK_ASSERT & TASK_ASSERT_STATUS add more code for enumerate task add control requests & its type def add API for HCD - hcd_pipe_addr0_open - hcd_pipe_control_open - hcd_pipe_control_xfer - hcd_pipe_open - hcd_port_speed
2013-02-01house keepinghathach
add some more logic for enum task
2013-02-01add std=gnu99 for test buildhathach
add hcd_init to usbh_init and update test code add TUSB_CFG_OS_TICK_PER_SECOND define for TUSB_OS_NONE change osal_semaphore_wait and osal_queue_receive API to have timeout effectively
2013-01-27update license year from 2012 to 2013hathach
2013-01-22start to supporthathach
- usbd host - osal some global define #define TUSB_CFG_HOST_CONTROLLER_NUM #define TUSB_CFG_HOST_DEVICE_MAX #define TUSB_CFG_CONFIGURATION_MAX rename & refractor HID type structure & enum use CException to test asssertion library add test for hid_host_keyboard with usbd configure get & osal queue get stubs update test for assertion library refractor ASSERT_STATUS in assertion library update tusb_error_t values rename usb basic type & enum in tusb_types.h and std_descriptors.h