1
0
Fork 0
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:
Michael Keller 2021-05-17 19:54:20 +12:00 committed by GitHub
commit ff308a98b3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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,