diff options
| author | Mengsk <[email protected]> | 2023-03-21 07:58:39 +0100 |
|---|---|---|
| committer | Mengsk <[email protected]> | 2023-03-21 07:58:39 +0100 |
| commit | 42decd94e5de3a25fd7e7702da2f756b53a6c9f9 (patch) | |
| tree | 6c7157ed80e5c2cb4e79c522fc2009519466a029 /src | |
| parent | cbcf5d8c0866e6c0090b98ad9b3d6d504e313135 (diff) | |
UAC2: fix feedback EP buffer alignment.
Diffstat (limited to 'src')
| -rw-r--r-- | src/class/audio/audio_device.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/class/audio/audio_device.c b/src/class/audio/audio_device.c index 32ba5761e..f487fe60e 100644 --- a/src/class/audio/audio_device.c +++ b/src/class/audio/audio_device.c @@ -312,7 +312,7 @@ typedef struct #if CFG_TUD_AUDIO_ENABLE_FEEDBACK_EP struct { - uint32_t value; // Feedback value for asynchronous mode (in 16.16 format). + CFG_TUSB_MEM_ALIGN uint32_t value; // Feedback value for asynchronous mode (in 16.16 format). uint32_t min_value; // min value according to UAC2 FMT-2.0 section 2.3.1.1. uint32_t max_value; // max value according to UAC2 FMT-2.0 section 2.3.1.1. |
