From 2a3b2ee8c2568835bc683dc75d1e4f2b15ff0671 Mon Sep 17 00:00:00 2001 From: Javier Nonis Date: Mon, 30 Dec 2024 23:09:19 -0300 Subject: [PATCH] Fix for RPI 1 support --- src/minidexed.cpp | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/minidexed.cpp b/src/minidexed.cpp index 929c25b..c89d5f7 100644 --- a/src/minidexed.cpp +++ b/src/minidexed.cpp @@ -315,16 +315,12 @@ bool CMiniDexed::Initialize (void) } // setup and start the sound device - int Channels = 1; // 16-bit Mono + int Channels = 2; // 16-bit Stereo #ifdef ARM_ALLOW_MULTI_CORE if (m_bQuadDAC8Chan) { Channels = 8; // 16-bit 8-channel mono } - else - { - Channels = 2; // 16-bit Stereo - } #endif // Need 2 x ChunkSize / Channel queue frames as the audio driver uses // two DMA channels each of ChunkSize and one single single frame