summaryrefslogtreecommitdiff
path: root/examples/device/cdc_uac2/src/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'examples/device/cdc_uac2/src/main.c')
-rw-r--r--examples/device/cdc_uac2/src/main.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/examples/device/cdc_uac2/src/main.c b/examples/device/cdc_uac2/src/main.c
index b148593da..bc87f6e3c 100644
--- a/examples/device/cdc_uac2/src/main.c
+++ b/examples/device/cdc_uac2/src/main.c
@@ -39,6 +39,7 @@ extern uint32_t blink_interval_ms;
#endif
void led_blinking_task(void);
+void audio_task(void);
/*------------- MAIN -------------*/
int main(void)
@@ -62,7 +63,7 @@ int main(void)
{
tud_task(); // TinyUSB device task
led_blinking_task();
-
+ audio_task();
#if (CFG_TUSB_MCU == OPT_MCU_RP2040)
// printf("Hello, world!\r\n");
#endif