1
0
Fork 0
mirror of https://github.com/betaflight/betaflight-configurator.git synced 2025-07-24 16:55:24 +03:00

Switches enable/disable notch filters (configurator side only)

This commit is contained in:
Bas Delfos 2017-07-30 16:00:52 +02:00
parent e0733b77f4
commit a6ab3d9a3a
3 changed files with 30 additions and 25 deletions

View file

@ -56,6 +56,7 @@ var FILTER_CONFIG;
var ADVANCED_TUNING;
var SENSOR_CONFIG;
var COPY_PROFILE;
var DEFAULT;
var FC = {
resetState: function() {
@ -392,5 +393,14 @@ var FC = {
};
RXFAIL_CONFIG = [];
DEFAULT = {
gyro_soft_notch_cutoff_1: 300,
gyro_soft_notch_hz_1: 400,
gyro_soft_notch_cutoff_2: 200,
gyro_soft_notch_hz_2: 300,
dterm_notch_cutoff: 160,
dterm_notch_hz: 260,
};
}
};