diff options
| author | hathach <[email protected]> | 2018-03-08 00:00:35 +0700 |
|---|---|---|
| committer | hathach <[email protected]> | 2018-03-08 00:00:35 +0700 |
| commit | d28e7e3966bd4ac471b667c73d2cb1451808e641 (patch) | |
| tree | c99755642cb6426fd4ee941ba68c01980d92133b /examples/device/device_virtual_com/src/main.c | |
| parent | bd5f9ecdec79eef1c7c45647ad16cf566f572148 (diff) | |
clean up virtual com example
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); } |
