summaryrefslogtreecommitdiff
path: root/tinyusb/class
AgeCommit message (Collapse)Author
2013-10-25more doxygen workhathach
rename tusb_mouse_report_t (keyboard) to hid_mouse_report_t (keyboard)
2013-10-24partially document CDC & RNDIShathach
2013-10-24document msc hosthathach
2013-10-24refractor HID documenthathach
2013-10-24change TUSB_CFG_CONTROLLER0/1_MODE to TUSB_CFG_CONTROLLER_0/1_MODE for clearancehathach
adding configuration docs for tinyusb_config.h document HID mouse & keyboard API
2013-10-02clean up warnings here and therehathach
2013-10-02enhacne msc demo, update IAR project filehathach
2013-10-01- move disconnection handle to enum task --> move tusbh_xxx_unmount is ↵hathach
invoked in non-isr context
2013-09-30able to mount one device on the hubhathach
2013-09-28clean up hid host (temp let test failed)hathach
2013-09-27fix an "extra" semaphore wait in msc hosthathach
2013-09-27house keepinghathach
2013-09-26add scsi write10 & test unit readyhathach
done copy command implement get_fattime using __DATE__ and number of calls
2013-09-26add cat command to clihathach
2013-09-26refractor mschhathach
2013-09-25add tusbh_msc_statushathach
reanme PRINTF_TARGET_DEBUG_CONSOLE to PRINTF_TARGET_SEMIHOST add read10 implementation able to read fat root sector
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-24add some tests support for msc hosthathach
refractor msch buffer for getting inital scsi like inquiry, read capacity adding support for resovling stall on control pipe
2013-09-23refractor, add wheel for mouse demohathach
2013-09-23refractor hcd API to allow queue xfer without actually transferring datahathach
2013-09-22added read capacity 10 with hacking codehathach
2013-09-22fix pingstate for highspeed bulk out transferhathach
temp implementation of msc host --> can issue inquiry command
2013-09-21house keeping, clean up warningshathach
2013-09-21house keepinghathach
2013-09-21remove ATTR_WEAK for all necessary driver callbackhathach
fix ceedling tests
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-09-20refine hid host driverhathach
2013-09-19starting to add support for IAR workbenchhathach
2013-09-18clean up warningshathach
2013-09-11add set msg & get set cmplt for OID_GEN_CURRENT_PACKET_FILTER (default = 0 ↵hathach
reject all) to ○ NDIS_PACKET_TYPE_DIRECTED ○ NDIS_PACKET_TYPE_MULTICAST ○ NDIS_PACKET_TYPE_BROADCAST
2013-07-19print out mac addresshathach
2013-07-19add implementation forhathach
- tusbh_cdc_rndis_is_mounted - tusbh_cdc_rndis_get_mac_addr
2013-07-19add test & code to send rndis msg query for permanent address (MAC address)hathach
2013-07-14extract send message & wait & get complete message to ↵hathach
send_message_get_response_subtask
2013-07-13add some required NDIS OID definehathach
2013-07-06pass the initialize_cmplthathach
2013-07-05fix bug with RNDIS class open using non-static variable p_cdchathach
fix bug with SUBTASK_EXIT with single if (add do while wrapper) add payloay message able to send initialize & wait on notification pipe & get initialize cmpt
2013-07-05adding subclass RNDIS-CDC driver APIhathach
- implement init - close - xfer_isr - open adding waiting for notification after send rndis_initalize_msg
2013-07-05fix bug with rndis overshadow the normal cdc callbackhathach
2013-07-05change usbh_control_xfer_subtask to use flat API instead of passing ↵hathach
tusb_control_request_t struct
2013-07-05implementing initializing for RNDIShathach
2013-07-04no big deal, only rename tusb_std_request_t to tusb_control_request_thathach
2013-07-04add some printf when a class is mountedhathach
add initial tests for rndis
2013-07-04change class (hid/cdc) _mounted_isr to _mounted_cbhathach
2013-07-03adding _mounted_isr & _umounted_isr callback for host keyboard & mousehathach
remove TUSB_EVENT_INTERFACE_OPEN & TUSB_EVENT_INTERFACE_CLOSE
2013-07-03temporarily check cdc mounted by pipe_in & pipe_outhathach
add tests for tusbh_cdc_xfer_isr
2013-07-03replace tusbh_cdc_isr by tusbh_cdc_xfer_isr with extra parameter ashathach
- pipe id - xferred_bytes host_class_driver_t add xferred_bytes parameter void (* const isr) (pipe_handle_t, tusb_event_t); --> void (* const isr) (pipe_handle_t, tusb_event_t, uint32_t); update hid_host & its tests
2013-07-03rename cdc descriptor typehathach
add tusbh_cdc_mounted_isr & tusbh_cdc_unmounted_isr
2013-07-02add way to calculate the actual byte transferred with ehcihathach
add come callback for cdch add code for cdc serial demo
2013-07-02add tusbh_cdc_send, t usbh_cdc_receivehathach
add cdc_serial_app for virtual com demo