| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2013-07-06 | refractor 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-06 | refractor ehci.c adding qhd_get_xfer_type | hathach | |
| 2013-07-05 | fix bug with RNDIS class open using non-static variable p_cdc | hathach | |
| 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-05 | adding subclass RNDIS-CDC driver API | hathach | |
| - implement init - close - xfer_isr - open adding waiting for notification after send rndis_initalize_msg | |||
| 2013-07-05 | fix a minor bug | hathach | |
| 2013-07-05 | fix bug with rndis overshadow the normal cdc callback | hathach | |
| 2013-07-05 | change usbh_control_xfer_subtask to use flat API instead of passing ↵ | hathach | |
| tusb_control_request_t struct | |||
| 2013-07-05 | implementing initializing for RNDIS | hathach | |
| 2013-07-04 | host 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-04 | refractor control request used in enumeration task to reduce task data | hathach | |
| --> enum task now can work with 128 depth | |||
| 2013-07-04 | port osal_mutex to freeRTOS, able to mount mouse & cdc device | hathach | |
| tinyusb host stack overflow though | |||
| 2013-07-04 | no big deal, only rename tusb_std_request_t to tusb_control_request_t | hathach | |
| 2013-07-04 | add some printf when a class is mounted | hathach | |
| add initial tests for rndis | |||
| 2013-07-04 | change class (hid/cdc) _mounted_isr to _mounted_cb | hathach | |
| 2013-07-03 | change some license text | hathach | |
| 2013-07-03 | adding _mounted_isr & _umounted_isr callback for host keyboard & mouse | hathach | |
| remove TUSB_EVENT_INTERFACE_OPEN & TUSB_EVENT_INTERFACE_CLOSE | |||
| 2013-07-03 | temporarily check cdc mounted by pipe_in & pipe_out | hathach | |
| add tests for tusbh_cdc_xfer_isr | |||
| 2013-07-03 | replace tusbh_cdc_isr by tusbh_cdc_xfer_isr with extra parameter as | hathach | |
| - 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-03 | rename cdc descriptor type | hathach | |
| add tusbh_cdc_mounted_isr & tusbh_cdc_unmounted_isr | |||
| 2013-07-02 | update usbh_xfer_isr to take actual byte transferred and correct tests | hathach | |
| 2013-07-02 | add way to calculate the actual byte transferred with ehci | hathach | |
| add come callback for cdch add code for cdc serial demo | |||
| 2013-07-02 | add tusbh_cdc_send, t usbh_cdc_receive | hathach | |
| add cdc_serial_app for virtual com demo | |||
| 2013-07-02 | add tusbh_cdc_serial_is_mounted API | hathach | |
| test for cdch close driver | |||
| 2013-07-02 | add cdc_rndis enum & struct | hathach | |
| 2013-07-02 | extract qhd_xfer_error_isr | hathach | |
| add support for period list in xfer_error_isr pass period TUSB_EVENT_XFER_ERROR & TUSB_EVENT_XFER_STALLED tests | |||
| 2013-07-02 | refractor extract list_next | hathach | |
| add support for TUSB_EVENT_XFER_STALL add test for error/stall in periodic list | |||
| 2013-07-01 | refractor code | hathach | |
| 2013-07-01 | add cdc host driver close cdch_close | hathach | |
| 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-01 | change control xfer check in usbh_xfer_isr | hathach | |
| 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-01 | rename usbh_isr to usbh_xfer_isr | hathach | |
| 2013-07-01 | house keeping | hathach | |
| 2013-07-01 | add acm_capability saving to host data & its test | hathach | |
| 2013-07-01 | fix compilation error | hathach | |
| 2013-07-01 | add & pass a first few test for cdc host | hathach | |
| implement cdch_open_subtask | |||
| 2013-06-29 | test refractor | hathach | |
| 2013-06-29 | add SUBTASK_EXIT in osal.h for TDD project | hathach | |
| 2013-06-29 | [CDC] | hathach | |
| - add configure option - add include path - add driver function table | |||
| 2013-06-29 | adding descriptor, structure, enum support for cdc | hathach | |
| 2013-06-27 | use SUBTASK_EXIT to restart & exit task without "assert" | hathach | |
| 2013-06-27 | add mutex support for osal | hathach | |
| 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-27 | add set idle request for hidh_open_subtask | hathach | |
| 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-26 | remove app_os_prio.h in os_none configure | hathach | |
| remove instance_num in hidh API temporarily pause device stack developement should fix travis-ci build error | |||
| 2013-06-23 | add custom bulk out test | hathach | |
| 2013-06-22 | fix bug with custom class that terminate xfer after the first QTD | hathach | |
| 2013-06-22 | fix license | hathach | |
| 2013-06-21 | fix a stupid bug | hathach | |
| 2013-06-21 | add api for hcd: hcd_pipe_is_idle | hathach | |
| 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 class | hathach | |
| 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-16 | house keeping | hathach | |
| 2013-06-16 | refractor set endpoint max packet size | hathach | |
