added missing vco3 pw midi control on daisy seed

This commit is contained in:
Stefano D'Angelo 2023-02-22 14:35:50 +01:00
parent 75caf17b16
commit fd2b8e69fe

View File

@ -26,7 +26,7 @@ struct config_cc {
unsigned char cc; unsigned char cc;
}; };
#define NUM_CCS 37 #define NUM_CCS 38
static struct config_cc config_ccs[NUM_CCS] = { static struct config_cc config_ccs[NUM_CCS] = {
{ 0, 7 }, // Volume { 0, 7 }, // Volume
@ -49,23 +49,24 @@ static struct config_cc config_ccs[NUM_CCS] = {
{ 17, 31 }, // VCO3 coarse { 17, 31 }, // VCO3 coarse
{ 18, 85 }, // VCO3 fine { 18, 85 }, // VCO3 fine
{ 19, 86 }, // VCO3 waveform { 19, 86 }, // VCO3 waveform
{ 20, 87 }, // VCO3 level { 20, 87 }, // VCO3 puslse width/slope
{ 21, 89 }, // Noise color { 21, 89 }, // VCO3 level
{ 22, 90 }, // Noise level { 22, 90 }, // Noise color
{ 23, 102 }, // VCF modulation { 23, 102 }, // Noise level
{ 24, 103 }, // VCF keyboard control { 24, 103 }, // VCF modulation
{ 25, 74 }, // VCF cutoff { 25, 104 }, // VCF keyboard control
{ 26, 71 }, // VCF Q { 26, 74 }, // VCF cutoff
{ 27, 104 }, // VCF contour { 27, 71 }, // VCF Q
{ 28, 105 }, // VCF attack { 28, 105 }, // VCF contour
{ 29, 106 }, // VCF decay { 29, 106 }, // VCF attack
{ 30, 107 }, // VCF sustain { 30, 107 }, // VCF decay
{ 31, 108 }, // VCF release { 31, 108 }, // VCF sustain
{ 32, 73 }, // VCA attack { 32, 109 }, // VCF release
{ 33, 109 }, // VCA decay { 33, 73 }, // VCA attack
{ 34, 110 }, // VCA sustain { 34, 110 }, // VCA decay
{ 35, 72 }, // VCA release { 35, 111 }, // VCA sustain
{ 36, 111 } // A440 { 36, 72 }, // VCA release
{ 37, 112 } // A440
}; };
#endif #endif