generated from betaflight/template
-
-
Notifications
You must be signed in to change notification settings - Fork 585
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Ivan Efimov
authored
Dec 8, 2023
1 parent
95cfc6f
commit b05b386
Showing
1 changed file
with
48 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
#$ TITLE: Default 4.5 Filter settings | ||
#$ FIRMWARE_VERSION: 4.5 | ||
#$ CATEGORY: FILTERS | ||
#$ STATUS: OFFICIAL | ||
#$ KEYWORDS: defaults, filter, filters, reset | ||
#$ AUTHOR: Betaflight | ||
#$ DESCRIPTION: Resets Filter settings to 4.5 defaults | ||
|
||
set gyro_hardware_lpf = NORMAL | ||
set gyro_lpf1_type = PT1 | ||
set gyro_lpf1_static_hz = 250 | ||
set gyro_lpf2_type = PT1 | ||
set gyro_lpf2_static_hz = 500 | ||
set gyro_notch1_hz = 0 | ||
set gyro_notch1_cutoff = 0 | ||
set gyro_notch2_hz = 0 | ||
set gyro_notch2_cutoff = 0 | ||
|
||
defaults group_id 554 nosave # PG_DYN_NOTCH_CONFIG | ||
|
||
set gyro_lpf1_dyn_min_hz = 250 | ||
set gyro_lpf1_dyn_max_hz = 500 | ||
set gyro_lpf1_dyn_expo = 5 | ||
set gyro_filter_debug_axis = ROLL | ||
|
||
set acc_lpf_hz = 25 | ||
|
||
set dshot_bidir = OFF | ||
|
||
set simplified_gyro_filter = ON | ||
set simplified_gyro_filter_multiplier = 100 | ||
|
||
defaults group_id 544 nosave # PG_RPM_FILTER_CONFIG | ||
|
||
set dterm_lpf1_dyn_min_hz = 75 | ||
set dterm_lpf1_dyn_max_hz = 150 | ||
set dterm_lpf1_dyn_expo = 5 | ||
set dterm_lpf1_type = PT1 | ||
set dterm_lpf1_static_hz = 75 | ||
set dterm_lpf2_type = PT1 | ||
set dterm_lpf2_static_hz = 150 | ||
set dterm_notch_hz = 0 | ||
set dterm_notch_cutoff = 0 | ||
|
||
set yaw_lowpass_hz = 100 | ||
|
||
set simplified_dterm_filter = ON | ||
set simplified_dterm_filter_multiplier = 100 |