| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2018-03-06 | rename demo to examples | hathach | |
| 2018-03-01 | clean up osal semaphore/queue/mutex | hathach | |
| 2014-04-03 | added rtos to greeting for easy testing | hathach | |
| correct all keil flash setting | |||
| 2014-03-26 | clean up | hathach | |
| 2014-03-24 | fix build error for keil host os none, freertos, cmsis-rtx | hathach | |
| 2014-03-24 | fix build for lpcxpreso host | hathach | |
| 2014-03-21 | clean up led blinking on host demo | hathach | |
| 2014-03-19 | change OSAL_TASK_FUNCTION to adapt with cmsis rtx | hathach | |
| 2014-03-19 | remvoe main as thread of cmsis rtx for portability. | hathach | |
| Keil & lpcxpresso4 host_cmsis_rtx work well | |||
| 2014-03-18 | rename TUSB_CFG_OS_TICKS_PER_SECOND to TUSB_CFG_TICKS_HZ | hathach | |
| remove CFG_TICKS_PER_SECOND | |||
| 2014-03-16 | doxygen document | hathach | |
| 2014-03-14 | fix some warnings | hathach | |
| 2014-03-14 | clean more warnings | hathach | |
| 2014-03-13 | fix some warnings | hathach | |
| 2014-03-12 | fixing build error | hathach | |
| 2014-03-06 | refractor app_os_prio.h | hathach | |
| 2014-03-06 | IAR work well with EA4357 on host os none | hathach | |
| 2014-03-05 | somehow could not get printf work with IAR both SWD & uart on NGX4330 | hathach | |
| 2014-03-04 | remove lwip code in main.c & boardGetMACaddr (board.c) | hathach | |
| NOTE: previous commit also removed some lwip's configure in board_ea4357 fix NGX4330 led blinking | |||
| 2013-11-05 | msc add support | hathach | |
| - SCSI_CMD_MODE_SELECT_6 - SCSI_CMD_MODE_SENSE_6 - SCSI_CMD_PREVENT_ALLOW_MEDIUM_REMOVAL fix msc device bug with no data unsupported command complete msc device demo with ram disk of 8KB | |||
| 2013-10-16 | refine mouse demo | hathach | |
| 2013-10-15 | add supported class to greeting | hathach | |
| 2013-09-27 | house keeping | hathach | |
| 2013-09-26 | add scsi write10 & test unit ready | hathach | |
| done copy command implement get_fattime using __DATE__ and number of calls | |||
| 2013-09-25 | almost complete cli for msc | hathach | |
| 2013-09-24 | added cli support | hathach | |
| 2013-09-22 | fix pingstate for highspeed bulk out transfer | hathach | |
| temp implementation of msc host --> can issue inquiry command | |||
| 2013-09-21 | house keeping, clean up warnings | hathach | |
| 2013-09-20 | start to add msc host, fix dangerous problem with unstable device when ↵ | hathach | |
| plugged --> 200 ms delay. 50ms delay after each port reset | |||
| 2013-09-18 | temporarily comment out all the lwip related code | hathach | |
| 2013-09-13 | all project can run ok | hathach | |
| 2013-09-13 | integrate & able to run cmsis-rtx with current code base | hathach | |
| 2013-09-10 | complete porting to keil | hathach | |
| - updated cgu - require microlib for printf retarget - cannot use fp enable option in keil (may require cmsis update) | |||
| 2013-09-10 | keil project can mount mouse, but cannot mount rndis | hathach | |
| 2013-07-19 | change printf retarget to make \n to \r\n automatically | hathach | |
| 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-02 | add tusbh_cdc_send, t usbh_cdc_receive | hathach | |
| add cdc_serial_app for virtual com demo | |||
| 2013-06-21 | add cmsis for lpc11u | hathach | |
| remove app_os_prio.h in host_os_none demo | |||
| 2013-05-14 | abstract os priority for application tasks | hathach | |
| 2013-05-09 | move cmsis to bsp/lpc43xx to keep all in repos for travis-ci run | hathach | |
| update setting for all project file respectively | |||
| 2013-05-06 | change format of file header & license spacing | hathach | |
| 2013-04-28 | clean up main | hathach | |
| 2013-04-26 | add hid_keycode_to_ascii_tbl for hid class | hathach | |
| improve keyboard_app, should display all displayable characters improve the de-bouncing keyboard (still got some issues) | |||
| 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-25 | finally able to get freeRTOS run with current mouse + keyboard example | hathach | |
| NOTES: print_greeting if is executed before the start of freeRTOS scheduler --> hardfault - print_greeting->vsprintf->systick -> bunch of ISR --> hardfault. printf using serial after the start of scheduler is ok though | |||
| 2013-04-25 | add attribute warn unused result for osal_create_* function | hathach | |
| taskify keyboard_app mouse_app & led_blinking | |||
| 2013-04-25 | add TUSB_CFG_OS_TASK_PRIO to mandatory option for using an RTOS | hathach | |
| using plain char for error enum character increase freeRTOS configMAX_PRIORITIES to 16 house keeping & clean up compiler warning | |||
| 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-22 | house keeping | hathach | |
| 2013-04-22 | change the board_leds API to on_mask, off_mask | hathach | |
| getting led toggling per second on host demo add greeting message | |||
