summaryrefslogtreecommitdiff
path: root/tinyusb/host
AgeCommit message (Collapse)Author
2014-03-19change OSAL_TASK_FUNCTION to adapt with cmsis rtxhathach
2014-03-18app descriptor renamehathach
2014-03-16doxygen documenthathach
2014-03-14clean up more warningshathach
2014-03-14Suppress Keil warnings #66-D: enumeration value is out of "int" rangehathach
2014-03-14more warnings clean uphathach
2014-03-14clean more warningshathach
2014-03-14clean up warning in lpcxpressohathach
remove -Wpacked -Wpadded in gcc
2014-03-14clean up compiler warning transfer of control bypasses initializationhathach
2014-03-13suppres compiler warning transfer of control bypasses initializationhathach
2014-03-13clean up more warningshathach
2014-03-13remove legacy code of msc_device.c read10 & write10hathach
clean up some warnings
2014-03-13fix some warningshathach
2014-03-12fix IAR alignment OHCI hcca will occupies the whole 256 (instead of just 252 ↵hathach
like the specs)
2014-03-12IAR line ending warninghathach
2014-03-10change desc_str_table to array of pointer of uint8_t* to be compatible with ↵hathach
IAR (lack of support for VLA initialization) IAR device os none works with ea4357
2014-03-10change IAR TUSB_CFG_ATTR_USBRAM to _Pragma("location=\".ahb_sram1\"") ↵hathach
instead of @ .ahb_sram1 so that we can place it before the variable for a cleaner code change pipe xfer API buffer from void* to uint8_t* change FIFO_DEF to have a separated buffer to be compatible with IAR\ refractor IAR data alignment pragma
2014-03-04change lpc17xx cmsis file & ohci to be able to build with IARhathach
2014-02-28refractor remove tusbh_msc_is_failedhathach
increase usbh enum task from 150 to 200 due to stack overflow when mounting msc device added task for msc host freeRTOS with stack = 300 (still cannot execute copy command)
2014-02-28EHCI: immediately reset port when device connected. This proves to help ↵hathach
prevent duplication connection event (also with OHCI) increase delay after reset to 100 ms (NXP's EHCI does not work with 50ms) --> fix all duplication connection with OHCI & EHCI
2014-02-20fix the duplicated plug connection status change with lpc17xx by using ↵hathach
immediate reset on isr. However Khanh's G5 mouse is not enumerated !! remove TUSB_CFG_CONFIGURATION_MAX from config file fix some warning
2014-02-20use hcd_pipe_is_busy instead of hcd_pipe_is_idlehathach
remove hcd_pipe_is_idle
2014-02-19re-enable blocking waiting in ehci controller reset (otherwise it wont works)hathach
2013-12-19remove immediately reset when device plug.hathach
check to make sure device is still plug after initial delay (200ms) before reset remove blocking waiting when reset in ehci.c
2013-12-19fix plug & unplug issue by reseting port immediately instead of waiting for ↵hathach
usbh enumeration task to do so
2013-12-19refractor ohci.chathach
2013-12-19able to run ohci hid mouse demohathach
- an old mouse cause double plug event - an old mouse failed to response the first get 8 byte device descriptor
2013-12-18implement hcd_pipe_close, able to plug & unplug device from ohci lpc17xxhathach
2013-12-18able to run MSC host demo on lpc17xxhathach
implement walk around for halted ED in OHCI
2013-12-17add in hcd_pipe_open & hcd_pipe_xferhathach
2013-12-16implement ohcihathach
- hcd_port_reset - hcd_port_connect_status - hcd_port_speed_get - hcd_pipe_control_open - hcd_pipe_control_xfer - done_queue_isr for control xfer able to go through enumeration with MSC device
2013-12-13able to get connect status change interrupt occuredhathach
2013-12-11add structure & define for ohcihathach
2013-11-25change MCU to TUSB_CFG_MCUhathach
2013-11-22clean uphathach
add some doxygen work finalize device disconnection & suspend - suspend & resume & remote wake up is not supported yet
2013-11-15refractor usbd, first step to make get configuration as sub taskhathach
2013-11-15add usbd_task to handle event task eg setup receivedhathach
2013-11-06refractor dcd_controller_reset & hcd_controller_reset to hal_controller_resethathach
2013-11-01implement msc device classhathach
usbd auto stall control for not supported return from class control request usbd implement xfer isr callback mechanism DCD - implement dcd multiple qtd support - dcd dcd_pipe_stall - implement dcd_pipe_queue_xfer - xfer_complete_isr - flush control endpoint if received new setup while previous transfer is not complete change msc_cmd_block_wrapper_t flags field to dir force full speed for easy testing NOTEs: somehow unable to get endpoint IN interrupt with ioc
2013-10-29implementing sw device stackhathach
2013-10-27static assert to check OSAL_QUEUE_DEF's queue_depth parameter < 256hathach
enable HOST_HCD_XFER_INTERRUPT by default (previously only enabled with HID), as it is widely used implement tusbh_cdc_is_busy add compilation switch in usbh enumeration for hub rewrite CDC serial application to address usb-serial race condition
2013-10-26more documenthathach
2013-10-25more doxygen workhathach
2013-10-24document hubhathach
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-16refractor hub apihathach
fix all test build errors
2013-10-02clean up warnings here and therehathach
2013-10-02update freertos projecthathach
temp hack to fix problem with no TD on status endpoint of hub in case of error
2013-10-01- move disconnection handle to enum task --> move tusbh_xxx_unmount is ↵hathach
invoked in non-isr context
2013-10-01ignore multiple level of hubhathach