From 1331aa69acec6b840f3550c2920043818df411da Mon Sep 17 00:00:00 2001 From: probonopd Date: Sat, 1 Jul 2023 10:54:13 +0200 Subject: [PATCH] 2 Tone Generators on RPi 1 with further reduced polyphony Experiment for https://github.com/probonopd/MiniDexed/discussions/516#discussioncomment-6331321 --- src/config.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/config.h b/src/config.h index a316be8..f4fd443 100644 --- a/src/config.h +++ b/src/config.h @@ -32,7 +32,7 @@ class CConfig // Configuration for MiniDexed { public: #ifndef ARM_ALLOW_MULTI_CORE - static const unsigned ToneGenerators = 1; + static const unsigned ToneGenerators = 2; #else static const unsigned TGsCore1 = 2; // process 2 TGs on core 1 static const unsigned TGsCore23 = 3; // process 3 TGs on core 2 and 3 each @@ -40,7 +40,7 @@ public: #endif #if RASPPI == 1 - static const unsigned MaxNotes = 8; // polyphony + static const unsigned MaxNotes = 4; // polyphony #else static const unsigned MaxNotes = 16; #endif