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:
timecop 2012-03-23 04:47:33 +00:00
parent 8318331f27
commit be56a148f6
2 changed files with 2594 additions and 2592 deletions

File diff suppressed because it is too large Load Diff

View File

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