| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2018-06-18 | rename subfolder source to src | hathach | |
| 2018-04-12 | add OSAL_TIMEOUT_CONTROL_XFER = OSAL_TIMEOUT_WAIT_FOREVER | hathach | |
| 2018-04-12 | rename ASSERT_ERR to TU_ASSERT_ERR to prevent conflict with user code | hathach | |
| 2018-04-12 | rename TUSB_OS_NONE, TUSB_OS_FREERTOS to OPT_OS_NONE, OPT_OS_FREERTOS | hathach | |
| 2018-04-10 | mass rename TUSB_CFG to CFG_TUSB | hathach | |
| 2018-03-30 | remove osal_common.h | hathach | |
| 2018-03-29 | rename VERIFY_STATUS to VERIFY_ERR | hathach | |
| 2018-03-29 | assert clean up | hathach | |
| 2018-03-22 | rename osal SUBSTASK to STASK | hathach | |
| 2018-03-22 | improve usbd control transfer | hathach | |
| 2018-03-21 | osal subtask rename | hathach | |
| 2018-03-14 | rename OSAL_SUBTASK_INVOKED | hathach | |
| 2018-03-12 | more rename | hathach | |
| 2018-03-05 | clean up | hathach | |
| 2018-03-05 | reame SUBTASK_EXIT to SUBTASK_RETURN | hathach | |
| 2018-03-01 | osal macro clean up | hathach | |
| 2018-03-01 | change osal_task_create signature | hathach | |
| 2018-03-01 | clean up osal semaphore/queue/mutex | hathach | |
| 2018-02-28 | refactor osal queue API | hathach | |
| 2018-02-28 | remove cmsis rtx support | hathach | |
| 2018-02-28 | osal clean up remove OSAL_TASK_DEF, OSAL_TASK_FUNCTION | hathach | |
| 2018-02-28 | osal clean up | hathach | |
| - task create, task def macros | |||
| 2014-04-17 | move STRING & XSTRING & STATIC_ASSERT to compiler.h | hathach | |
| 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-09 | remove OSAL_VAR for the simplicity | hathach | |
| clean up osal.h | |||
| 2014-03-25 | more doxygen stuffs | hathach | |
| 2014-03-25 | doxygen documenting | hathach | |
| 2014-03-24 | doxygen documenting | hathach | |
| 2014-03-23 | doxygen clean up | hathach | |
| 2014-03-19 | change OSAL_TASK_FUNCTION to adapt with cmsis rtx | hathach | |
| 2014-03-16 | doxygen document | hathach | |
| 2014-02-28 | merge common define in osal/osal_cmsis_rtx.h & osal/osal_freeRTOS.h | hathach | |
| 2013-10-25 | more doxygen work | hathach | |
| 2013-10-24 | change TUSB_CFG_CONTROLLER0/1_MODE to TUSB_CFG_CONTROLLER_0/1_MODE for clearance | hathach | |
| adding configuration docs for tinyusb_config.h document HID mouse & keyboard API | |||
| 2013-09-24 | allow a limited model to deal with stalled pipe/transaction | hathach | |
| 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-13 | all project can run ok | hathach | |
| 2013-09-13 | integrate & able to run cmsis-rtx with current code base | hathach | |
| 2013-07-05 | implementing initializing for RNDIS | hathach | |
| 2013-06-29 | test refractor | hathach | |
| 2013-06-29 | add SUBTASK_EXIT in osal.h for TDD project | 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-05-06 | change format of file header & license spacing | hathach | |
| 2013-04-25 | change OSAL_TASK_DEF to decouple variable name with task name | hathach | |
| implement osal_task_delay for freeRTOS & non_os getting both no_os & freertos running with mouse + keyboard | |||
| 2013-04-24 | - change OSAL_TASK_FUNCTION to have void* parameter (to be consistent with ↵ | hathach | |
| most popular RTOS) - add new error enum TUSB_ERROR_OSAL_TASK_CREATE_FAILED - move usbh_enumeration_task prototype to usbh.h - change OSAL_SUBTASK_INVOKED_AND_WAIT behavior, will not "return" in calling task when subtask got error status. calling task need to do that after the call - osal_queue_receive signature from uint32_t* to void* - implement osal_freertos.h for FreeRTOS 7.3 --> able to compile & build host_freertos + OSAL_TASK_FUNCTION + turn on FPU for M4 in both host_os_none & host_freertos (freertos requires FPU to be on to compile) + osal_task_create + OSAL_SUBTASK_INVOKED_AND_WAIT + SUBTASK_ASSERT + osal_semaphore_reset + osal_queue_flush + adding heap_1.c for memory management | |||
| 2013-04-24 | move main work in usbh_enumeration_task to its body subtask for task_assert ↵ | hathach | |
| style | |||
| 2013-04-23 | rename OSAL_TASK_DECLARE to OSAL_TASK_FUNCTION | hathach | |
| removing TASK_ASSERT to avoid using goto/continue statement with rtos configure | |||
| 2013-04-16 | getting build with freertos & host demo | hathach | |
| 2013-04-10 | change osal_queue_send(osal_queue_handle_t const queue_hdl, uint32_t data) ↵ | hathach | |
| signature to osal_queue_send(osal_queue_handle_t const queue_hdl, const void * data) - support any size queue message (instead of fixed uint32_t) | |||
| 2013-04-07 | add hal init for USB1 and trying to get USB1 working | hathach | |
| add hack delay 100 ms after a port reset (huge) for correct speed detection | |||
| 2013-03-25 | change website from tinyusb.net to tinyusb.org | hathach | |
| 2013-03-12 | add semaphore reset & queue flush API for osal | hathach | |
| add semaphore reset when opening control pipe | |||
