New settings for better portamento performance on Roland SE-02. SEL for switching between OFF and LIN, SEE for switching between OFF and EXP.
This commit is contained in:
parent
6183f0faee
commit
7eccf7eeec
4 changed files with 12 additions and 3 deletions
|
@ -1332,6 +1332,10 @@ void portamento_() {
|
|||
void portOn() {
|
||||
if (portamento == 2) { // if portamento midi switching is enabled
|
||||
midiSendControlChange(CCN_PortOnOff, 127);
|
||||
} else if (portamento == 3) { // if portamento midi switching is enabled - SE02 OFF/LIN
|
||||
midiSendControlChange(CCN_PortSE02, 64);
|
||||
} else if (portamento == 4) { // if portamento midi switching is enabled - SE02 OFF/EXP
|
||||
midiSendControlChange(CCN_PortSE02, 127);
|
||||
}
|
||||
portIsOn = 1;
|
||||
}
|
||||
|
@ -1360,6 +1364,10 @@ void portOff() {
|
|||
}
|
||||
if (portamento == 2) { // if portamento midi switching is enabled
|
||||
midiSendControlChange(CCN_PortOnOff, 0);
|
||||
} else if (portamento == 3) { // if portamento midi switching is enabled - SE02 OFF/LIN
|
||||
midiSendControlChange(CCN_PortSE02, 0);
|
||||
} else if (portamento == 4) { // if portamento midi switching is enabled - SE02 OFF/EXP
|
||||
midiSendControlChange(CCN_PortSE02, 0);
|
||||
}
|
||||
portIsOn = 0;
|
||||
oldport = 0;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue