From 44e6aee722aedf3b642228f51c8f853b302ae94e Mon Sep 17 00:00:00 2001 From: jacqueline Date: Wed, 3 Jan 2024 19:33:24 +1100 Subject: fix yet more mono i2s issues --- src/drivers/include/i2s_dac.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/drivers/include') 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. -- cgit v1.2.3