Sysex dump request doesn't work
Posted: 20 Feb 2014 12:47
Hello, i'm new to Lemur but I made my first control panel of my Quasimidi Rave-O-Lution 309 groove box.
Some of parameters of this gear could be tweaked via simple MIDI CC, some via SysEx. SysEx Dump data to device works just fine (here is the example)
but I want to request some parameters from 309.
Here is the manual of 309
http://cl.ly/U13F/QUASIMIDI_309.pdf
At 23 page you can see sequence to request data from device. Here it is.
So I've made a button with a script executed on "x" change which should grab the KICK sound number, it is just one byte length
When I press the button I can see the LED indicating MIDI signal comes to my MidiSport MIDI interface input, but after that I can't see LED flash at MIDI output indicating requested data comes from 309.
I have an object with custom MIDI with ON MIDI execution that grabs all incoming events, so if I dump from 309 manually - everything works just fine. Could you help me to resolve the problem?
Some of parameters of this gear could be tweaked via simple MIDI CC, some via SysEx. SysEx Dump data to device works just fine (here is the example)
Code: Select all
midiout(0,{0xF0, 0x3F, 0x00, 0x25, 0x44, 0x01, 0x01, 0x04,round(Pan.x*127),0xF7});
Here is the manual of 309
http://cl.ly/U13F/QUASIMIDI_309.pdf
At 23 page you can see sequence to request data from device. Here it is.
So I've made a button with a script executed on "x" change which should grab the KICK sound number, it is just one byte length
Code: Select all
midiout(0,{0xF0, 0x3F, 0x00, 0x25, 0x52, 0x01, 0x01, 0x01, 0x00, 0x00, 0x01, 0xF7});
I have an object with custom MIDI with ON MIDI execution that grabs all incoming events, so if I dump from 309 manually - everything works just fine. Could you help me to resolve the problem?