diff options
| author | Jerzy Kasenberg <[email protected]> | 2020-09-11 10:56:17 +0200 |
|---|---|---|
| committer | Jerzy Kasenberg <[email protected]> | 2020-09-28 08:41:17 +0200 |
| commit | f4a44ee06337366680958013143657aa693c80ef (patch) | |
| tree | 0cf295d3543c04fd1848bc750bfe920c11859622 /src | |
| parent | 5ad2f8efc6ce77d3f58f3292838367dea8c41826 (diff) | |
audio: Update ISO endpoint attributes
Explicit feedback attribute was missing.
No synchronization now also has definition.
Diffstat (limited to 'src')
| -rw-r--r-- | src/class/audio/audio.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/class/audio/audio.h b/src/class/audio/audio.h index 5e64549ed..0027217cb 100644 --- a/src/class/audio/audio.h +++ b/src/class/audio/audio.h @@ -497,11 +497,13 @@ typedef enum /// Isochronous End Point Attributes typedef enum { + TUSB_ISO_EP_ATT_NO_SYNC = 0x00, TUSB_ISO_EP_ATT_ASYNCHRONOUS = 0x04, TUSB_ISO_EP_ATT_ADAPTIVE = 0x08, TUSB_ISO_EP_ATT_SYNCHRONOUS = 0x0C, TUSB_ISO_EP_ATT_DATA = 0x00, ///< Data End Point - TUSB_ISO_EP_ATT_FB = 0x20, ///< Feedback End Point + TUSB_ISO_EP_ATT_EXPLICIT_FB = 0x10, ///< Feedback End Point + TUSB_ISO_EP_ATT_IMPLICIT_FB = 0x20, ///< Data endpoint that also serves as an implicit feedback } tusb_iso_ep_attribute_t; /// Audio Class-Control Values UAC2 |
