mirror of
https://github.com/betaflight/betaflight-configurator.git
synced 2025-07-17 21:35:33 +03:00
Fix airmodeActivateTHreshold
This commit is contained in:
parent
13254b19b8
commit
b1726c2753
1 changed files with 1 additions and 1 deletions
|
@ -545,7 +545,7 @@ MspHelper.prototype.process_data = function(dataHandler) {
|
|||
if (semver.gte(CONFIG.apiVersion, "1.20.0")) {
|
||||
RX_CONFIG.rcInterpolation = data.readU8();
|
||||
RX_CONFIG.rcInterpolationInterval = data.readU8();
|
||||
RX_CONFIG.airModeActivateThreshold = data.readU8();
|
||||
RX_CONFIG.airModeActivateThreshold = data.readU16();
|
||||
} else {
|
||||
RX_CONFIG.rcInterpolation = 0;
|
||||
RX_CONFIG.rcInterpolationInterval = 0;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue