diff options
| author | hathach <[email protected]> | 2021-09-29 16:18:11 +0700 |
|---|---|---|
| committer | hathach <[email protected]> | 2021-09-29 16:18:11 +0700 |
| commit | 2f2fb3d8d92f35c756d66db0eb256037f0a7d62f (patch) | |
| tree | 9c52ac442c6970eeb0fb32b11e0f267da761af7d /examples/device/audio_4_channel_mic | |
| parent | a23944035dab67a206edad9e31e3ee7400b68bbb (diff) | |
clean up
Diffstat (limited to 'examples/device/audio_4_channel_mic')
| -rw-r--r-- | examples/device/audio_4_channel_mic/src/usb_descriptors.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/examples/device/audio_4_channel_mic/src/usb_descriptors.c b/examples/device/audio_4_channel_mic/src/usb_descriptors.c index 2b66bfe34..b6a5bd5c2 100644 --- a/examples/device/audio_4_channel_mic/src/usb_descriptors.c +++ b/examples/device/audio_4_channel_mic/src/usb_descriptors.c @@ -85,9 +85,11 @@ enum // LPC 17xx and 40xx endpoint type (bulk/interrupt/iso) are fixed by its number // 0 control, 1 In, 2 Bulk, 3 Iso, 4 In etc ... #define EPNUM_AUDIO 0x03 + #elif TU_CHECK_MCU(NRF5X) // nRF5x ISO can only be endpoint 8 #define EPNUM_AUDIO 0x08 + #else #define EPNUM_AUDIO 0x01 #endif |
