forked from betaflight/bidircfg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
KISSFCV2F7.cf
82 lines (54 loc) · 2.25 KB
/
KISSFCV2F7.cf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
# To enable RPM filtering, first apply these settings
# timer and DMA changes for this target. These will ensure that your
# quad can receive telemetry frames on the motor signal lines.
# PA2, PC6, PA0, PB8, PB6, PB7, PC7, PB3, ADC
#Score: 10 m: 6, dmatt: 0 emc: 0 lmc: 0, ledmc 0, odmac: 1 adcc: 0 ledc: 0 tc: 0 tcc: 0 nt 2 mxt 1
#T09C1F2,T03C1F0,T05C1F1,T04C3F1,T04C1F0,T04C2F0,T03C2F0,T02C2F0,ADC2
#D0S0O0, D1S4O0, D1S2O0, D1S7O0, D1S0O0, D1S3O0, D1S5O0, D1S6O0, D2 S2
#Usable motors: M1 M2 M3 M4 M5 M6
timer c06
timer c07
timer b03
dma pin c06 0
dma pin c07 0
dma pin b03 0
# set looptime to 4k to have enough computational time
set gyro_sync_denom = 2
set pid_process_denom = 1
# works most reliably with DShot600
set motor_pwm_protocol=DSHOT600
# basic settings required to enable rpm filtering:
set scheduler_optimize_rate=on
set dshot_burst=off
set dshot_bidir=on
# enable debugging of rpm related settings (optional)
set debug_mode=rpm_filter
# reconfigure dynamic notch filter to focus on narrow frame resonances
# since motor noise will already be eliminated by the rpm filter.
set dyn_notch_width_percent = 0
set dyn_notch_q = 250
# set dterm lowpass 1
set dyn_lpf_dterm_min_hz = 150
set dyn_lpf_dterm_max_hz = 250
# turn off dterm lowpass 2 to reduce delay
set dterm_lowpass2_hz = 0
# turn off 1st gyro lpf and dynamic gyro lpf to reduce delay
set gyro_lowpass_hz = 0
set dyn_lpf_gyro_min_hz = 0
# Enable static gyro lowpass filter 2 at 150hz pt1 on gyro to
# eliminate any broadband residual noise. your quad might not need
# this - if motors are cold try removing it.
set gyro_lowpass2_hz = 150
set gyro_lowpass2_type = PT1
# Increase the d_min boost_gain to ramp up D faster when prop wash is
# encountered. This change can cause stick feel to change a bit due to
# higher D and will increase noise. Stick sharpness can be increased
# using FF to compensate.
set d_min_boost_gain=35
######################################################################
# The following settings increase d_min to allow a faster D response to
# prop wash. These changes can cause stick feel to change a bit due to
# higher D and will increase noise. Stick sharpness can be increased
# using FF to compensate.
set d_min_pitch=29
set d_min_roll=27