Merge pull request #626 from iNavFlight/dzikuvx-smix-reverse-support-removed

Removed never working smix reverse partial support
pull/631/head
Paweł Spychalski 6 years ago committed by GitHub
commit d83c52c966
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -565,10 +565,9 @@ var mspHelper = (function (gui) {
'max': data.getInt16(i + 2, true), 'max': data.getInt16(i + 2, true),
'middle': data.getInt16(i + 4, true), 'middle': data.getInt16(i + 4, true),
'rate': data.getInt8(i + 6), 'rate': data.getInt8(i + 6),
'indexOfChannelToForward': data.getInt8(i + 9), 'indexOfChannelToForward': data.getInt8(i + 9)
'reversedInputSources': data.getUint32(i + 10)
}; };
data.getUint32(i + 10); // Skip 4 bytes that used to be reversed Sources
SERVO_CONFIG.push(arr); SERVO_CONFIG.push(arr);
} }
} }
@ -2160,10 +2159,11 @@ var mspHelper = (function (gui) {
} }
buffer.push(out); buffer.push(out);
buffer.push(specificByte(servoConfiguration.reversedInputSources, 0)); //Mock 4 bytes of servoConfiguration.reversedInputSources
buffer.push(specificByte(servoConfiguration.reversedInputSources, 1)); buffer.push(0);
buffer.push(specificByte(servoConfiguration.reversedInputSources, 2)); buffer.push(0);
buffer.push(specificByte(servoConfiguration.reversedInputSources, 3)); buffer.push(0);
buffer.push(0);
// prepare for next iteration // prepare for next iteration
servoIndex++; servoIndex++;

Loading…
Cancel
Save