summaryrefslogtreecommitdiff
path: root/tinyusb
AgeCommit message (Collapse)Author
2013-07-06refractor qhd_xfer_error_isr (omit xfer_type para)hathach
add accumulated total xferred byte for an endpoint until transfer with IOC set - control xfer will have length of data phase in usbh_xfer_isr callback
2013-07-06refractor ehci.c adding qhd_get_xfer_typehathach
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 a minor bughathach
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-04host enum task use static control_request variable instead of literal of ↵hathach
requests increase enum task stack size from 128 to 150 as it comes dangerously close to overflow
2013-07-04refractor control request used in enumeration task to reduce task datahathach
--> enum task now can work with 128 depth
2013-07-04port osal_mutex to freeRTOS, able to mount mouse & cdc devicehathach
tinyusb host stack overflow though
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-03change some license texthathach
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-02update usbh_xfer_isr to take actual byte transferred and correct testshathach
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
2013-07-02add tusbh_cdc_serial_is_mounted APIhathach
test for cdch close driver
2013-07-02add cdc_rndis enum & structhathach
2013-07-02extract qhd_xfer_error_isrhathach
add support for period list in xfer_error_isr pass period TUSB_EVENT_XFER_ERROR & TUSB_EVENT_XFER_STALLED tests
2013-07-02refractor extract list_nexthathach
add support for TUSB_EVENT_XFER_STALL add test for error/stall in periodic list
2013-07-01refractor codehathach
2013-07-01add cdc host driver close cdch_closehathach
refractor - add helper function in ehci qhd_next & qtd_next - extract function qhd_create_pipe_handle rename tusb_transfer_type_t to tusb_xfer_type_t add some handling for stall
2013-07-01change control xfer check in usbh_xfer_isrhathach
rename - async_list_process_isr to async_list_xfer_complete_isr - period_list_process_isr to period_list_xfer_complete_isr extract function void qhd_xfer_complete_isr(ehci_qhd_t * p_qhd, tusb_transfer_type_t xfer_type)
2013-07-01rename usbh_isr to usbh_xfer_isrhathach
2013-07-01house keepinghathach
2013-07-01add acm_capability saving to host data & its testhathach
2013-07-01fix compilation errorhathach
2013-07-01add & pass a first few test for cdc hosthathach
implement cdch_open_subtask
2013-06-29test refractorhathach
2013-06-29add SUBTASK_EXIT in osal.h for TDD projecthathach
2013-06-29[CDC]hathach
- add configure option - add include path - add driver function table
2013-06-29adding descriptor, structure, enum support for cdchathach
2013-06-27use SUBTASK_EXIT to restart & exit task without "assert"hathach
2013-06-27add mutex support for osalhathach
add test for mutex in test_osal_none.c implement usbh_control_xfer using mutex to get access to queue xfer on control pipe (while semaphore is used to sync with hcd DMA) failed to issue control xfer: set idle & get report descriptor in hidh_open_subtask (more to work on)
2013-06-27add set idle request for hidh_open_subtaskhathach
add interface number to hidh_interface_info_t refractor hidh_open_subtask to be a true subtask cannot run with set idle code ON because of semaphore misuse
2013-06-26remove app_os_prio.h in os_none configurehathach
remove instance_num in hidh API temporarily pause device stack developement should fix travis-ci build error
2013-06-23add custom bulk out testhathach
2013-06-22fix bug with custom class that terminate xfer after the first QTDhathach
2013-06-22fix licensehathach
2013-06-21fix a stupid bughathach
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-06-21[host lpc43xx] adding support for host custom classhathach
refractor usbh class driver indexing opt out periodic list code in EHCI (need to refractor/group later) [device lpc176x] rename dcd_endpoint_configure to dcd_pipe_open add usbd_pipe_open to manage pipe
2013-06-16house keepinghathach
2013-06-16refractor set endpoint max packet sizehathach