From 5f8f19d5fca0ddd58dc0ffd457c733560c67f336 Mon Sep 17 00:00:00 2001 From: Kevin <68612569+diyelectromusic@users.noreply.github.com> Date: Sun, 10 Mar 2024 14:38:42 -0700 Subject: [PATCH] 32 note polyphony on a PI 4 --- src/config.h | 2 ++ src/minidexed.cpp | 2 ++ 2 files changed, 4 insertions(+) diff --git a/src/config.h b/src/config.h index f83c177..67e19e3 100644 --- a/src/config.h +++ b/src/config.h @@ -41,6 +41,8 @@ public: #if RASPPI == 1 static const unsigned MaxNotes = 8; // polyphony +#elif RASPPI == 4 + static const unsigned MaxNotes = 32; #else static const unsigned MaxNotes = 16; #endif diff --git a/src/minidexed.cpp b/src/minidexed.cpp index 968320a..4e08540 100644 --- a/src/minidexed.cpp +++ b/src/minidexed.cpp @@ -101,6 +101,8 @@ CMiniDexed::CMiniDexed (CConfig *pConfig, CInterruptSystem *pInterrupt, m_pTG[i]->activate (); } + LOGNOTE ("Polyphony = %d", CConfig::MaxNotes); + if (pConfig->GetUSBGadgetMode()) { LOGNOTE ("USB In Gadget (Device) Mode");