Skip to content

Commit 7850858

Browse files
committed
Part 2 + Part 3 + Part 4 performance loading
Very basic part performance load implementation. Performance > Load Part 2 loads the performance into to TG 9-16 and adds 3 to each TG channel. Performance > Load Part 3 loads the performance into to TG 17-24 and adds 7 to each TG channel. Performance > Load Part 4 loads the performance into to TG 25-32 and adds 8 to each TG channel. This is just a test of how it sounds this way. Every part has a reverb. ToneGenerators=32 should be added to the minidexed.ini so you need rpi4 or rpi5. You should add fast=true at the top of cmdline.txt
1 parent 19f34ff commit 7850858

File tree

4 files changed

+614
-43
lines changed

4 files changed

+614
-43
lines changed

src/config.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,8 @@ class CConfig // Configuration for MiniDexed
4949
// These are max values, default is to support 8 in total with optional 16 TGs
5050
static const unsigned TGsCore1 = 2; // process 2 TGs on core 1
5151
static const unsigned TGsCore23 = 3; // process 3 TGs on core 2 and 3 each
52-
static const unsigned TGsCore1Opt = 2; // process optional additional 2 TGs on core 1
53-
static const unsigned TGsCore23Opt = 3; // process optional additional 3 TGs on core 2 and 3 each
52+
static const unsigned TGsCore1Opt = 6; // process optional additional 2 TGs on core 1
53+
static const unsigned TGsCore23Opt = 9; // process optional additional 3 TGs on core 2 and 3 each
5454
static const unsigned MinToneGenerators = TGsCore1 + 2*TGsCore23;
5555
static const unsigned AllToneGenerators = TGsCore1 + TGsCore1Opt + 2*TGsCore23 + 2*TGsCore23Opt;
5656
static const unsigned DefToneGenerators = MinToneGenerators;

0 commit comments

Comments
 (0)