Added note.

10.5.x-maintenance
mikeller 2019-02-13 02:26:10 +13:00
parent cc31ceb896
commit 3144767f47
3 changed files with 11 additions and 1 deletions

View File

@ -1210,6 +1210,9 @@
"configurationLoopTimeHelp": {
"message": "<strong>Note:</strong> Make sure your FC is able to operate at these speeds! Check CPU and cycletime stability. Changing this may require PID re-tuning. TIP: Disable Accelerometer and other sensors to gain more performance."
},
"configurationLoopTimeNo32KhzHelp": {
"message": "$t(configurationLoopTimeHelp.message)<br><strong>Note about 32 kHz gyro gyro sampling mode:</strong> Support for 32 kHz gyro gyro sampling mode was added to Betaflight as an experimental feature. In the years that it was available, it has never shown that it has any advantage over 8 kHz gyro sampling mode, due to its susceptibility to vibrations, and its high noise level which require aggressive filtering, causing delays in the control loop. For this reason, <strong>support for 32 kHz gyro sampling mode has been dropped</strong> in Betaflight 4.0."
},
"configurationGPS": {
"message": "GPS"
},

View File

@ -464,6 +464,13 @@ TABS.configuration.initialize = function (callback, scrollPosition) {
updateGyroDenom(8);
}
if (semver.gte(CONFIG.apiVersion, "1.41.0")) {
$('.systemconfigNote').html(i18n.getMessage('configurationLoopTimeNo32KhzHelp'));
} else {
$('.systemconfigNote').html(i18n.getMessage('configurationLoopTimeHelp'));
}
gyro_select_e.val(PID_ADVANCED_CONFIG.gyro_sync_denom);
gyro_select_e.change(function () {

View File

@ -55,7 +55,7 @@
<div class="spacer_box">
<div class="note">
<div class="note_spacer">
<p i18n="configurationLoopTimeHelp"></p>
<p class="systemconfigNote" i18n="configurationLoopTimeHelp"></p>
</div>
</div>
<div class="select gyroUse32kHz">