diff options
| author | Ha Thach <[email protected]> | 2023-03-21 15:46:00 +0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2023-03-21 15:46:00 +0700 |
| commit | ec9c666107c0be0f8dc7c2a15e3bdea8c44a50b4 (patch) | |
| tree | 52adda5e8310b35e715c8793c81d4eaf6290ba47 /src | |
| parent | 096b6ec462efe612613498b44ec596e4bac763a7 (diff) | |
| parent | 42decd94e5de3a25fd7e7702da2f756b53a6c9f9 (diff) | |
Merge pull request #1965 from HiFiPhile/align
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. |
