We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 517393a commit c678614Copy full SHA for c678614
src/js/tabs/pid_tuning.js
@@ -2697,6 +2697,10 @@ TABS.pid_tuning.changeRatesSystem = function(sameType) {
2697
rc_rate_pitch_e.val((FC.RC_TUNING.rcPitchRate * 1000).toFixed(0));
2698
rc_rate_e.val((FC.RC_TUNING.RC_RATE * 1000).toFixed(0));
2699
rc_rate_yaw_e.val((FC.RC_TUNING.rcYawRate * 1000).toFixed(0));
2700
+ } else if (semver.gte(FC.CONFIG.apiVersion, API_VERSION_1_44)) {
2701
+ rcRateDefault = (70).toFixed(0);
2702
+ rateDefault = (670).toFixed(0);
2703
+ expoDefault = (0).toFixed(2);
2704
} else {
2705
rcRateDefault = (200).toFixed(0);
2706
rateDefault = (670).toFixed(0);
0 commit comments