1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-16 04:45:24 +03:00
mistake in serial.c which made it impossible to do 'R' anymore.
fixed.

git-svn-id: https://afrodevices.googlecode.com/svn/trunk/baseflight@154 7c89a4a9-59b9-e629-4cfe-3a2d53b20e61
This commit is contained in:
timecop 2012-05-06 14:42:00 +00:00
parent 941f2f1762
commit 6da3320be8
3 changed files with 2631 additions and 2647 deletions

View file

@ -350,6 +350,8 @@ void serialCom(void)
// enable CLI
if (c == '#')
cliProcess();
else if (c == 'R')
systemReset(true); // reboot to bootloader
}
}
}