I have this really simple code that I check with the midi monitor. Csound seems to run it without any problems and I see the pitch wheel message on the midi monitor. When I run the same code in cabbage nothing happens. I see the midi keys come in to cabbages console but the midi monitor is empty.
<Cabbage>
form caption("Untitled") size(400, 300), guiMode("queue"), pluginId("def1")
keyboard bounds(8, 158, 381, 95)
</Cabbage>
<CsoundSynthesizer>
<CsOptions>
; Select audio/midi flags here according to platform
; Audio out Audio in No messages
-+rtmidi=NULL -M0 -Q0 ;;;RT audio I/O with MIDI in
; For Non-realtime ouput leave only the line below:
; -o midiin.wav -W ;;; for file output any platform
</CsOptions>
<CsInstruments>
sr = 44100
ksmps = 10
nchnls = 1
massign 0, 130
pgmassign 0, 130
instr 130
kstatus, kchan, kdata1, kdata2 midiin
if (kstatus == 144 && kdata1%12==0 &&kdata2>0 ) then
outkpb 1, 70, -200, 200
endif
endin
</CsInstruments>
<CsScore>
i130 0 3600
e
</CsScore>