1
0
Fork 0
mirror of https://github.com/betaflight/betaflight-configurator.git synced 2025-07-19 14:25:14 +03:00

Remove 32k notice

This commit is contained in:
Miguel Angel Mulero Martinez 2020-02-05 12:44:45 +01:00
parent 2925646d82
commit 7881bd3673
2 changed files with 1 additions and 8 deletions

View file

@ -1373,9 +1373,6 @@
"configurationLoopTimeHelp": { "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." "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": { "configurationGPS": {
"message": "GPS" "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('configurationLoopTimeHelp'));
$('.systemconfigNote').html(i18n.getMessage('configurationLoopTimeNo32KhzHelp'));
} else {
$('.systemconfigNote').html(i18n.getMessage('configurationLoopTimeHelp'));
}
gyroSelectElement.change(function () { gyroSelectElement.change(function () {
const originalPidDenom = pidSelectElement.val(); const originalPidDenom = pidSelectElement.val();