diff options
| author | HiFiPHile <[email protected]> | 2026-09-04 11:18:06 +0200 |
|---|---|---|
| committer | HiFiPHile <[email protected]> | 2026-09-04 11:18:06 +0200 |
| commit | 3976e532800cfa065b4fbf3f32b01b4a68e4d7f4 (patch) | |
| tree | 65a2d91d0a3ea8abefd78c83e2974da3b5971b32 /examples/device/audio_test | |
| parent | cd9bbed39f5851d5e4dc64271f18b8db777acb53 (diff) | |
| parent | 29851564af08cb4909175315d20c71f5eca13040 (diff) | |
Merge remote-tracking branch 'origin/master' into codex/class-reference-docs
Diffstat (limited to 'examples/device/audio_test')
| -rw-r--r-- | examples/device/audio_test/skip.txt | 1 | ||||
| -rw-r--r-- | examples/device/audio_test/src/usb_descriptors.c | 4 |
2 files changed, 4 insertions, 1 deletions
diff --git a/examples/device/audio_test/skip.txt b/examples/device/audio_test/skip.txt index 42394bb11..862c91c6f 100644 --- a/examples/device/audio_test/skip.txt +++ b/examples/device/audio_test/skip.txt @@ -1,5 +1,4 @@ mcu:SAMD11 -mcu:SAME5X mcu:SAMG family:espressif mcu:CH583 diff --git a/examples/device/audio_test/src/usb_descriptors.c b/examples/device/audio_test/src/usb_descriptors.c index 8c25fc290..d16526116 100644 --- a/examples/device/audio_test/src/usb_descriptors.c +++ b/examples/device/audio_test/src/usb_descriptors.c @@ -92,6 +92,10 @@ enum // Only EP3 is available for ISO #define EPNUM_AUDIO 0x03 +#elif CFG_TUSB_MIMXRT1XXX_ERRATA_ERR050101 + // ERR050101 (see CFG_TUSB_MIMXRT1XXX_ERRATA_ERR050101): an isochronous IN endpoint needs a number + // no other device on the bus uses + #define EPNUM_AUDIO 0x07 #else #define EPNUM_AUDIO 0x01 #endif |
