mirror of
https://github.com/betaflight/betaflight.git
synced 2025-07-24 00:35:39 +03:00
Fix maxthrottle value for brushed targets
This commit is contained in:
parent
2c9776861d
commit
d10e6a8f87
1 changed files with 1 additions and 1 deletions
|
@ -311,9 +311,9 @@ void resetEscAndServoConfig(escAndServoConfig_t *escAndServoConfig)
|
|||
#ifdef BRUSHED_MOTORS
|
||||
escAndServoConfig->minthrottle = 1000;
|
||||
#else
|
||||
escAndServoConfig->maxthrottle = 2000;
|
||||
escAndServoConfig->minthrottle = 1070;
|
||||
#endif
|
||||
escAndServoConfig->maxthrottle = 2000;
|
||||
escAndServoConfig->mincommand = 1000;
|
||||
escAndServoConfig->servoCenterPulse = 1500;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue