From: Ton H. <a.j...@ch...> - 2005-04-06 21:33:26
|
Hi, I am working on a synth driver for the ADA MP2 midi guitar preamp. It's is a rather old device with variable sized patches. Values greater than 0x40 are preceded by a byte containing 0x41. Values greater than 0x80, are two bytes long preceded by 0x42. In order to get it working, I have to convert each patch to a fixed size, in which each value is represented by exact one byte. The only backdraw is that when I want to export the patch, it is in a format only my synth driver can handle. When I want to send the exported sysex with other software (like midiOx etc.) it is in the wrong format, so my ADA MP2 can't handle it. When the export method is changed from public final to public, I can override it and write a conversion method to change the patch to the right format. Thanks in advance, Ton Holsink |