mirror of
https://github.com/betaflight/betaflight.git
synced 2025-07-24 16:55:36 +03:00
Merge pull request #10724 from ctzsnooze/Default-to-Actual-Rates
default to Actual rates
This commit is contained in:
commit
ff308a98b3
1 changed files with 7 additions and 7 deletions
|
@ -47,16 +47,16 @@ void pgResetFn_controlRateProfiles(controlRateConfig_t *controlRateConfig)
|
|||
.thrExpo8 = 0,
|
||||
.dynThrPID = 65,
|
||||
.tpa_breakpoint = 1350,
|
||||
.rates_type = RATES_TYPE_BETAFLIGHT,
|
||||
.rcRates[FD_ROLL] = 100,
|
||||
.rcRates[FD_PITCH] = 100,
|
||||
.rcRates[FD_YAW] = 100,
|
||||
.rates_type = RATES_TYPE_ACTUAL,
|
||||
.rcRates[FD_ROLL] = 7,
|
||||
.rcRates[FD_PITCH] = 7,
|
||||
.rcRates[FD_YAW] = 7,
|
||||
.rcExpo[FD_ROLL] = 0,
|
||||
.rcExpo[FD_PITCH] = 0,
|
||||
.rcExpo[FD_YAW] = 0,
|
||||
.rates[FD_ROLL] = 70,
|
||||
.rates[FD_PITCH] = 70,
|
||||
.rates[FD_YAW] = 70,
|
||||
.rates[FD_ROLL] = 67,
|
||||
.rates[FD_PITCH] = 67,
|
||||
.rates[FD_YAW] = 67,
|
||||
.throttle_limit_type = THROTTLE_LIMIT_TYPE_OFF,
|
||||
.throttle_limit_percent = 100,
|
||||
.rate_limit[FD_ROLL] = CONTROL_RATE_CONFIG_RATE_LIMIT_MAX,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue