Hmm, this is the first time I’ve heard of this problem. So when you use your Cabbage plugin in a DAW, it doesn’t react at all to the pitchbend wheel? I don’t have access to a MIDI keyboard right now, but perhaps you could add a csoundoutput
to your instrument, and add the following code:
kstatus, kchan, kdata1, kdata2 midiin
k1 changed kstatus
k2 changed kchan
k3 changed kdata1
k4 changed kdata2
if((k1==1)||(k2==1)||(k3==1)||(k4==1)) then
printks "Value:%d ChanNo:%d CtrlNo:%d\n" , 0, kdata2, kchan, kdata1
At least this way we can see what, if any, MIDI messages are coming through. Might be good to try this in Cabbage, and then again in a DAW just to compare.