Update of /cvsroot/jsynthlib/JSynthLib/synthdrivers/YamahaTX802 In directory sc8-pr-cvs1:/tmp/cvs-serv24662/YamahaTX802 Modified Files: YamahaTX802AdditionalVoiceBankDriver.java YamahaTX802FractionalScalingBankDriver.java YamahaTX802MicroTuningBankDriver.java YamahaTX802PerformanceBankDriver.java Log Message: Testing the syncmail options. Index: YamahaTX802AdditionalVoiceBankDriver.java =================================================================== RCS file: /cvsroot/jsynthlib/JSynthLib/synthdrivers/YamahaTX802/YamahaTX802AdditionalVoiceBankDriver.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** YamahaTX802AdditionalVoiceBankDriver.java 2 Mar 2003 22:00:24 -0000 1.1 --- YamahaTX802AdditionalVoiceBankDriver.java 13 Mar 2003 17:28:03 -0000 1.2 *************** *** 254,258 **** ! Patch p = new Patch(sysex,getDeviceNum(),getDriverNum()); PatchEdit.getDriver(p.deviceNum,p.driverNum).calculateChecksum(p); return p; --- 254,258 ---- ! Patch p = new Patch(getDeviceNum(),sysex); // single sysex PatchEdit.getDriver(p.deviceNum,p.driverNum).calculateChecksum(p); return p; *************** *** 272,277 **** sysex[trimSize-1]=(byte)0xF7; ! Patch v = new Patch(TX802Constants.INIT_ADDITIONAL_VOICE); ! Patch p = new Patch(sysex,getDeviceNum(),getDriverNum()); for (int i=0;i<numPatches;i++) putPatch(p,v,i); --- 272,277 ---- sysex[trimSize-1]=(byte)0xF7; ! Patch v = new Patch(getDeviceNum(),TX802Constants.INIT_ADDITIONAL_VOICE); // single sysex ! Patch p = new Patch(sysex,getDeviceNum(),getDriverNum()); // bank sysex for (int i=0;i<numPatches;i++) putPatch(p,v,i); Index: YamahaTX802FractionalScalingBankDriver.java =================================================================== RCS file: /cvsroot/jsynthlib/JSynthLib/synthdrivers/YamahaTX802/YamahaTX802FractionalScalingBankDriver.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** YamahaTX802FractionalScalingBankDriver.java 2 Mar 2003 22:00:24 -0000 1.1 --- YamahaTX802FractionalScalingBankDriver.java 13 Mar 2003 17:28:04 -0000 1.2 *************** *** 188,192 **** } ! Patch p = new Patch(sysex,getDeviceNum(),getDriverNum()); PatchEdit.getDriver(p.deviceNum,p.driverNum).calculateChecksum(p); return p; --- 188,192 ---- } ! Patch p = new Patch(getDeviceNum(),sysex); // single sysex PatchEdit.getDriver(p.deviceNum,p.driverNum).calculateChecksum(p); return p; *************** *** 204,209 **** sysex[trimSize-1]=(byte)0xF7; ! Patch v = new Patch(TX802Constants.INIT_FRACTIONAL_SCALING); ! Patch p = new Patch(sysex,getDeviceNum(),getDriverNum()); for (int i=0;i<numPatches;i++) putPatch(p,v,i); --- 204,209 ---- sysex[trimSize-1]=(byte)0xF7; ! Patch v = new Patch(getDeviceNum(),TX802Constants.INIT_FRACTIONAL_SCALING); // single sysex ! Patch p = new Patch(sysex,getDeviceNum(),getDriverNum()); // bank sysex for (int i=0;i<numPatches;i++) putPatch(p,v,i); Index: YamahaTX802MicroTuningBankDriver.java =================================================================== RCS file: /cvsroot/jsynthlib/JSynthLib/synthdrivers/YamahaTX802/YamahaTX802MicroTuningBankDriver.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** YamahaTX802MicroTuningBankDriver.java 2 Mar 2003 22:00:24 -0000 1.1 --- YamahaTX802MicroTuningBankDriver.java 13 Mar 2003 17:28:05 -0000 1.2 *************** *** 184,188 **** } ! Patch p = new Patch(sysex,getDeviceNum(),getDriverNum()); PatchEdit.getDriver(p.deviceNum,p.driverNum).calculateChecksum(p); --- 184,188 ---- } ! Patch p = new Patch(getDeviceNum(),sysex); // single sysex PatchEdit.getDriver(p.deviceNum,p.driverNum).calculateChecksum(p); *************** *** 201,206 **** sysex[trimSize-1]=(byte)0xF7; ! Patch v = new Patch(TX802Constants.INIT_MICRO_TUNING); ! Patch p = new Patch(sysex,getDeviceNum(),getDriverNum()); for (int i=0;i<numPatches;i++) --- 201,206 ---- sysex[trimSize-1]=(byte)0xF7; ! Patch v = new Patch(getDeviceNum(),TX802Constants.INIT_MICRO_TUNING); // single sysex ! Patch p = new Patch(sysex,getDeviceNum(),getDriverNum()); // bank sysex for (int i=0;i<numPatches;i++) Index: YamahaTX802PerformanceBankDriver.java =================================================================== RCS file: /cvsroot/jsynthlib/JSynthLib/synthdrivers/YamahaTX802/YamahaTX802PerformanceBankDriver.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** YamahaTX802PerformanceBankDriver.java 2 Mar 2003 22:00:24 -0000 1.1 --- YamahaTX802PerformanceBankDriver.java 13 Mar 2003 17:28:05 -0000 1.2 *************** *** 366,370 **** ! Patch p = new Patch(sysex,getDeviceNum(),getDriverNum()); PatchEdit.getDriver(p.deviceNum,p.driverNum).calculateChecksum(p); --- 366,370 ---- ! Patch p = new Patch(getDeviceNum(),sysex); // single sysex PatchEdit.getDriver(p.deviceNum,p.driverNum).calculateChecksum(p); *************** *** 383,388 **** sysex[trimSize-1]=(byte)0xF7; ! Patch v = new Patch(TX802Constants.INIT_PERFORMANCE); ! Patch p = new Patch(sysex,getDeviceNum(),getDriverNum()); for (int i=0;i<numPatches;i++) --- 383,388 ---- sysex[trimSize-1]=(byte)0xF7; ! Patch v = new Patch(getDeviceNum(),TX802Constants.INIT_PERFORMANCE); // single sysex ! Patch p = new Patch(sysex,getDeviceNum(),getDriverNum()); // bank sysex for (int i=0;i<numPatches;i++) |