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:
parent
04612a94e8
commit
b74880f062
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue