send 1000us for low throttle during cal, not minthrottle.
git-svn-id: https://afrodevices.googlecode.com/svn/trunk/baseflight@123 7c89a4a9-59b9-e629-4cfe-3a2d53b20e61
This commit is contained in:
parent
8318331f27
commit
be56a148f6
5182
obj/baseflight.hex
5182
obj/baseflight.hex
File diff suppressed because it is too large
Load Diff
|
@ -11,13 +11,15 @@ void throttleCalibration(void)
|
|||
|
||||
LED1_ON;
|
||||
|
||||
// write maxthrottle (high)
|
||||
for (i = offset; i < len; i++)
|
||||
pwmWrite(i, cfg.maxthrottle);
|
||||
|
||||
delay(3000); // 3s delay on high
|
||||
|
||||
// write 1000us (low)
|
||||
for (i = offset; i < len; i++)
|
||||
pwmWrite(i, cfg.minthrottle);
|
||||
pwmWrite(i, 1000);
|
||||
|
||||
// blink leds to show we're calibrated and time to remove bind plug
|
||||
failureMode(4);
|
||||
|
|
Loading…
Reference in New Issue