diff options
| author | jacqueline <me@jacqueline.id.au> | 2024-01-03 19:33:24 +1100 |
|---|---|---|
| committer | jacqueline <me@jacqueline.id.au> | 2024-01-03 19:33:24 +1100 |
| commit | 44e6aee722aedf3b642228f51c8f853b302ae94e (patch) | |
| tree | 67ab97aa526f509fd1ca6493be0bdf3d061c6250 /src/drivers/include | |
| parent | b6d16a20a4fc9e35c931af9064da309c64796689 (diff) | |
| download | tangara-fw-44e6aee722aedf3b642228f51c8f853b302ae94e.tar.gz | |
fix yet more mono i2s issues
Diffstat (limited to 'src/drivers/include')
| -rw-r--r-- | src/drivers/include/i2s_dac.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/drivers/include/i2s_dac.hpp b/src/drivers/include/i2s_dac.hpp index d66d9762..bd837ca0 100644 --- a/src/drivers/include/i2s_dac.hpp +++ b/src/drivers/include/i2s_dac.hpp @@ -32,7 +32,7 @@ namespace drivers { // means that at 48kHz, we have about 21ms of budget to fill each buffer. // We base this off of the maximum DMA size in order to minimise the amount of // work the CPU has to do to service the DMA callbacks. -constexpr size_t kI2SBufferLengthFrames = 1023; +constexpr size_t kI2SBufferLengthFrames = 1024; /** * Interface for a DAC that receives PCM samples over I2S. |
