| Age | Commit message (Collapse) | Author |
|
|
|
implement cdch_open_subtask
|
|
- add configure option
- add include path
- add driver function table
|
|
remove instance_num in hidh API
temporarily pause device stack developement
should fix travis-ci build error
|
|
remove app_os_prio.h in host_os_none demo
|
|
dual host run without problem with mcb4300
|
|
- change descriptor.c/h able to build device example
|
|
|
|
update setting for all project file respectively
|
|
|
|
|
|
|
|
|
|
implement process mouser report to clarify mouse app task
|
|
complete keyboard app with key state & event TODO handle & check for non-printable(control) keycode
add unit test for osal_task_delay for non OS
|
|
improve keyboard_app, should display all displayable characters
improve the de-bouncing keyboard (still got some issues)
|
|
implement osal_task_delay for freeRTOS & non_os
getting both no_os & freertos running with mouse + keyboard
|
|
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
|
|
taskify keyboard_app mouse_app & led_blinking
|
|
using plain char for error enum character
increase freeRTOS configMAX_PRIORITIES to 16
house keeping & clean up compiler warning
|
|
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
|
|
removing TASK_ASSERT to avoid using goto/continue statement with rtos configure
|
|
|
|
getting led toggling per second on host demo
add greeting message
|
|
fix some compiler warnings
|
|
|
|
|
|
|
|
|