1
0
Fork 0
mirror of https://github.com/iNavFlight/inav-configurator.git synced 2025-07-24 00:35:20 +03:00

Fixed failsafe_throttle

This commit is contained in:
Pawel Spychalski (DzikuVx) 2017-01-12 20:49:35 +01:00
parent 04612a94e8
commit b74880f062

View file

@ -572,7 +572,7 @@ var mspHelper = (function (gui) {
offset++;
FAILSAFE_CONFIG.failsafe_off_delay = data.getUint8(offset);
offset++;
FAILSAFE_CONFIG.failsafe_throttle = data.getUint16(offset);
FAILSAFE_CONFIG.failsafe_throttle = data.getUint16(offset, true);
offset += 2;
if (semver.gte(CONFIG.apiVersion, "1.15.0")) {
FAILSAFE_CONFIG.failsafe_kill_switch = data.getUint8(offset);