summaryrefslogtreecommitdiff
path: root/tinyusb/osal
AgeCommit message (Collapse)Author
2014-04-24added all assert check to osal_queue_send and osal_semaphore_posthathach
2014-04-24correct dcd_pipe_is_busy to use list_qtd_idx[] instead of qtd_overlayhathach
flush usbd_queue_hdl when bus_reset add assert check for osal_queue_send increase ENUM_QUEUE_DEPTH for usbh change osal_freeRTOS.h implementation to - correctly waiting forever for semaphore wait, queue & mutex - not use ISR safe version since it is not as generic as we want
2014-04-18move osal_queue_send of osal_none to osal_none.chathach
2014-04-17move STRING & XSTRING & STATIC_ASSERT to compiler.hhathach
disable test for a class of cdc host temporarily disable test for test_osal_none.c change include in some core files remove osal.h from common.h
2014-04-09remove OSAL_VAR for the simplicityhathach
clean up osal.h
2014-03-25more doxygen stuffshathach
2014-03-25doxygen documentinghathach
2014-03-24doxygen documentinghathach
2014-03-23doxygen clean uphathach
2014-03-20fix cmsis rtx warninghathach
IAR host cmsis rtx work with lpc1769
2014-03-19#define SVCall_Handler SVC_Handler in lpcxpresso startup for lpc175x_6x & ↵hathach
lpc11uxx for better compatiable with other lib & toolchain. added lpc176x xpresso with cmsis rtx
2014-03-19reduce memory use by cmsis rtxhathach
able to run with IAR host cmsis rtx
2014-03-19change OSAL_TASK_FUNCTION to adapt with cmsis rtxhathach
2014-03-19remvoe main as thread of cmsis rtx for portability.hathach
Keil & lpcxpresso4 host_cmsis_rtx work well
2014-03-18rename TUSB_CFG_OS_TICKS_PER_SECOND to TUSB_CFG_TICKS_HZhathach
remove CFG_TICKS_PER_SECOND
2014-03-17remove hardfault handlerhathach
2014-03-17refrator, replace osal_tick_get / osal_tick_tock by tusb_tick_gethathach
2014-03-16doxygen documenthathach
2014-03-14more warning clean uphathach
2014-03-13fix some warningshathach
2014-03-12IAR line ending warninghathach
2014-03-12fix iar warninghathach
2014-02-28merge common define in osal/osal_cmsis_rtx.h & osal/osal_freeRTOS.hhathach
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
2013-11-26change endian conversion to native to be & be to nativehathach
completely deferred xfer isr event to usbd task complete read10, write10 sequence for large data transfer
2013-11-21add class mounted callback for hid mouse/keyboard & refractor mouse/keyboard apphathach
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-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-27fix osal_none timeout, instant return with OSAL_TIMEOUT_NOTIMEOUThathach
2013-10-25more doxygen workhathach
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-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-18clean up warningshathach
2013-09-14increase usb transaction time-out as host_cmsis_rtx easily timeoutedhathach
2013-09-13fix cmsis rtx tick configurationhathach
everything should work TODO: remove static for variable error in control xfer subtask
2013-09-13fix task def with cmsis rtxhathach
2013-09-13all project can run okhathach
2013-09-13integrate & able to run cmsis-rtx with current code basehathach
2013-09-10able to get blinky + greetinghathach
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-05implementing initializing for RNDIShathach
2013-07-04port osal_mutex to freeRTOS, able to mount mouse & cdc devicehathach
tinyusb host stack overflow though
2013-06-29test refractorhathach
2013-06-29add SUBTASK_EXIT in osal.h for TDD projecthathach
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-05-21fix issue with osal_none queue defhathach
2013-05-09test clean uphathach