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:
parent
6da7383d61
commit
8d43ba6681
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue