summaryrefslogtreecommitdiff
path: root/examples/device/cdc_uac2/src/main.c
diff options
context:
space:
mode:
authorHiFiPhile <[email protected]>2025-06-14 19:37:10 +0200
committerHiFiPhile <[email protected]>2025-06-14 22:46:52 +0200
commit545690c83435fc9e972a65a4e46539c88f2a2853 (patch)
tree3cd4826134d4d75b40bec3375795ec3d6f7fe198 /examples/device/cdc_uac2/src/main.c
parent19b5ec5fd9b5fb423ceacf24d542ebba7f805316 (diff)
audio: update examples
Signed-off-by: HiFiPhile <[email protected]>
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