1
0
Fork 0
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:
Michael Jakob 2016-08-12 05:35:00 +02:00
parent 2c9776861d
commit d10e6a8f87

View file

@ -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;
}