1
0
Fork 0
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:
borisbstyle 2016-08-21 03:16:23 +02:00 committed by GitHub
parent 13254b19b8
commit b1726c2753

View file

@ -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;