Merge pull request #1870 from McGiverGim/hide_32k_notice

Remove 32k notice
10.7.0-preview
Michael Keller 2020-02-07 09:13:39 +13:00 committed by GitHub
commit 41876c7281
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 8 deletions

View File

@ -1373,9 +1373,6 @@
"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 sampling mode:</strong> Support for 32 kHz 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

@ -625,11 +625,7 @@ TABS.configuration.initialize = function (callback, scrollPosition) {
}
if (semver.gte(CONFIG.apiVersion, "1.41.0")) {
$('.systemconfigNote').html(i18n.getMessage('configurationLoopTimeNo32KhzHelp'));
} else {
$('.systemconfigNote').html(i18n.getMessage('configurationLoopTimeHelp'));
}
$('.systemconfigNote').html(i18n.getMessage('configurationLoopTimeHelp'));
gyroSelectElement.change(function () {
const originalPidDenom = pidSelectElement.val();