1
0
Fork 0
mirror of https://github.com/iNavFlight/inav-configurator.git synced 2025-07-15 04:15:28 +03:00

adapting RC_CONTROLS to Dominic's changes

This commit is contained in:
NightHawk32 2015-12-27 16:17:41 -05:00
parent f1a29d29e6
commit a13db678a9
3 changed files with 1 additions and 5 deletions

View file

@ -530,7 +530,6 @@ var MSP = {
RC_controls.deadband = data.getUint8(offset++, 1);
RC_controls.yaw_deadband = data.getUint8(offset++, 1);
RC_controls.alt_hold_deadband = data.getUint8(offset++, 1);
RC_controls.alt_hold_fast_change = data.getUint8(offset++, 1);
break;
case MSP_codes.MSP_SENSOR_ALIGNMENT:
var offset = 0;
@ -1285,7 +1284,6 @@ MSP.crunch = function (code) {
buffer.push(RC_controls.deadband);
buffer.push(RC_controls.yaw_deadband);
buffer.push(RC_controls.alt_hold_deadband);
buffer.push(RC_controls.alt_hold_fast_change);
break;
case MSP_codes.MSP_SET_SENSOR_ALIGNMENT: