summaryrefslogtreecommitdiff
path: root/examples/host/audio_host/src/main.c
diff options
context:
space:
mode:
authorHiFiPHile <[email protected]>2026-08-26 15:54:38 +0200
committerHiFiPHile <[email protected]>2026-08-27 10:34:33 +0200
commitcca648556dd0c096aa7210ee5a2b962efae36440 (patch)
treecbf897160767f5dab6b762ce7fc4fbe3b828f35e /examples/host/audio_host/src/main.c
parent804e54f9e59dc2b6442844d1194581e2b39c35b1 (diff)
audio: add UAC2 host streaming support
Add protocol-selectable UAC1/UAC2 parsing, UAC2 terminal and Feature Unit topology, Clock Source discovery, sampling-frequency ranges, and protocol-specific stream controls. Cover UAC2 playback, capture, control discovery, and malformed descriptors with unit tests. Signed-off-by: HiFiPHile <[email protected]>
Diffstat (limited to 'examples/host/audio_host/src/main.c')
-rw-r--r--examples/host/audio_host/src/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/host/audio_host/src/main.c b/examples/host/audio_host/src/main.c
index 3a3e18ab7..45c468f23 100644
--- a/examples/host/audio_host/src/main.c
+++ b/examples/host/audio_host/src/main.c
@@ -31,7 +31,7 @@ int main(void) {
board_init();
printf("TinyUSB Host USB Audio Example\r\n");
- printf("Connect a USB Audio Device (UAC 1.0) to test\r\n");
+ printf("Connect a USB Audio Device (UAC 1.0 or 2.0) to test\r\n");
// init host stack on configured roothub port
tusb_rhport_init_t host_init = {.role = TUSB_ROLE_HOST, .speed = TUSB_SPEED_AUTO};