1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-14 03:50:02 +03:00

renaming of serial bool returning vars into isFoo(), also fixed bool returned as uint16_t type

git-svn-id: https://afrodevices.googlecode.com/svn/trunk/baseflight@354 7c89a4a9-59b9-e629-4cfe-3a2d53b20e61
This commit is contained in:
timecop@gmail.com 2013-06-25 07:09:47 +00:00
parent 539f2cb6db
commit 4bd505972d
7 changed files with 16 additions and 16 deletions

View file

@ -913,7 +913,7 @@ void cliProcess(void)
cliPrompt();
}
while (uartAvailable()) {
while (isUartAvailable()) {
uint8_t c = uartRead();
/* first step: translate "ESC[" -> "CSI" */