diff options
Diffstat (limited to 'examples/device/device_virtual_com/src/main.c')
| -rw-r--r-- | examples/device/device_virtual_com/src/main.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/examples/device/device_virtual_com/src/main.c b/examples/device/device_virtual_com/src/main.c index c512f7c05..5aa9cf5ff 100644 --- a/examples/device/device_virtual_com/src/main.c +++ b/examples/device/device_virtual_com/src/main.c @@ -56,7 +56,9 @@ // INTERNAL OBJECT & FUNCTION DECLARATION //--------------------------------------------------------------------+ void print_greeting(void); +void led_blinking_task(void); +/*------------- MAIN -------------*/ int main(void) { board_init(); @@ -71,7 +73,7 @@ int main(void) { tusb_task(); - led_blinking_task(NULL); + led_blinking_task(); cdc_serial_app_task(NULL); } |
