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

Fixed RC yaw rate scaling problem.

This commit is contained in:
mikeller 2016-07-29 02:12:21 +12:00 committed by Michael Keller
parent 6da7383d61
commit 8d43ba6681

View file

@ -1446,7 +1446,7 @@ MSP.crunch = function (code) {
if (semver.gte(CONFIG.apiVersion, "1.10.0")) {
buffer.push(Math.round(RC_tuning.RC_YAW_EXPO * 100));
if (semver.gte(CONFIG.apiVersion, "1.20.0")) {
buffer.push(Math.round(RC_tuning.rcYawRate));
buffer.push(Math.round(RC_tuning.rcYawRate * 100));
}
}
break;