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

Removed support for 32 kHz gyro mode.

This commit is contained in:
mikeller 2019-02-12 22:59:22 +13:00
parent c30c2142b1
commit cc31ceb896
3 changed files with 22 additions and 8 deletions

View file

@ -209,7 +209,7 @@ TABS.onboard_logging.initialize = function (callback) {
var loggingRates = [];
var pidRateBase = 8000;
if (PID_ADVANCED_CONFIG.gyroUse32kHz !== 0) {
if (semver.gte(CONFIG.apiVersion, "1.25.0") && semver.lt(CONFIG.apiVersion, "1.41.0") && PID_ADVANCED_CONFIG.gyroUse32kHz !== 0) {
pidRateBase = 32000;
}