1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-16 04:45:24 +03:00

Added missing delay for F4 to CLI

This commit is contained in:
blckmn 2016-08-10 20:54:26 +10:00
parent 2240381caf
commit 66f1abe1be

View file

@ -2975,7 +2975,11 @@ static bool cliDumpPrintf(uint8_t dumpMask, bool equalsDefault, const char *form
tfp_format(cliWriter, cliPutp, format, va); tfp_format(cliWriter, cliPutp, format, va);
va_end(va); va_end(va);
return true; #ifdef USE_SLOW_SERIAL_CLI
delay(1);
#endif
return true;
} }
return false; return false;