diff options
| author | hathach <[email protected]> | 2013-09-13 22:30:11 +0700 |
|---|---|---|
| committer | hathach <[email protected]> | 2013-09-13 22:30:11 +0700 |
| commit | ad0ef2e266475c643b36cb34d3ab1b8876bb6ec2 (patch) | |
| tree | cfdd80fe2332b30c7c1f95b925e1c2decf7690ed /demos/host/src | |
| parent | c71f5c6f1ba46a23847a2eea83176e15058f21e6 (diff) | |
all project can run ok
Diffstat (limited to 'demos/host/src')
| -rw-r--r-- | demos/host/src/cdc_serial_app.c | 2 | ||||
| -rw-r--r-- | demos/host/src/keyboard_app.c | 2 | ||||
| -rw-r--r-- | demos/host/src/main.c | 2 | ||||
| -rw-r--r-- | demos/host/src/mouse_app.c | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/demos/host/src/cdc_serial_app.c b/demos/host/src/cdc_serial_app.c index f676bc043..197d60a84 100644 --- a/demos/host/src/cdc_serial_app.c +++ b/demos/host/src/cdc_serial_app.c @@ -49,7 +49,7 @@ //--------------------------------------------------------------------+ // MACRO CONSTANT TYPEDEF //--------------------------------------------------------------------+ -OSAL_TASK_DEF("cdc serial app", cdc_serial_app_task, 128, CDC_SERIAL_APP_TASK_PRIO); +OSAL_TASK_DEF(cdc_serial_app_task, 128, CDC_SERIAL_APP_TASK_PRIO); OSAL_QUEUE_DEF(queue_def, QUEUE_SERIAL_DEPTH, uint8_t); static osal_queue_handle_t queue_hdl; diff --git a/demos/host/src/keyboard_app.c b/demos/host/src/keyboard_app.c index 91b81406c..27d5c0cfe 100644 --- a/demos/host/src/keyboard_app.c +++ b/demos/host/src/keyboard_app.c @@ -55,7 +55,7 @@ //--------------------------------------------------------------------+ // INTERNAL OBJECT & FUNCTION DECLARATION //--------------------------------------------------------------------+ -OSAL_TASK_DEF("keyboard app", keyboard_app_task, 128, KEYBOARD_APP_TASK_PRIO); +OSAL_TASK_DEF(keyboard_app_task, 128, KEYBOARD_APP_TASK_PRIO); OSAL_QUEUE_DEF(queue_kbd_def, QUEUE_KEYBOARD_REPORT_DEPTH, tusb_keyboard_report_t); static osal_queue_handle_t queue_kbd_hdl; diff --git a/demos/host/src/main.c b/demos/host/src/main.c index 5c0534bf7..ebbacfc4a 100644 --- a/demos/host/src/main.c +++ b/demos/host/src/main.c @@ -72,7 +72,7 @@ // INTERNAL OBJECT & FUNCTION DECLARATION //--------------------------------------------------------------------+ OSAL_TASK_FUNCTION( led_blinking_task ) (void* p_task_para); -OSAL_TASK_DEF("led blinking", led_blinking_task, 128, LED_BLINKING_APP_TASK_PRIO); +OSAL_TASK_DEF(led_blinking_task, 128, LED_BLINKING_APP_TASK_PRIO); void print_greeting(void); static inline void wait_blocking_ms(uint32_t ms); diff --git a/demos/host/src/mouse_app.c b/demos/host/src/mouse_app.c index 1c6049729..425be056f 100644 --- a/demos/host/src/mouse_app.c +++ b/demos/host/src/mouse_app.c @@ -56,7 +56,7 @@ //--------------------------------------------------------------------+ // INTERNAL OBJECT & FUNCTION DECLARATION //--------------------------------------------------------------------+ -OSAL_TASK_DEF("mouse app", mouse_app_task, 128, MOUSE_APP_TASK_PRIO); +OSAL_TASK_DEF(mouse_app_task, 128, MOUSE_APP_TASK_PRIO); OSAL_QUEUE_DEF(queue_mouse_def, QUEUE_MOUSE_REPORT_DEPTH, tusb_mouse_report_t); static osal_queue_handle_t queue_mouse_hdl; |
