1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-15 20:35:33 +03:00

Re-added delay for CLI prints for F4.

This commit is contained in:
Michael Keller 2016-08-11 07:16:49 +12:00
parent 530c1fbf42
commit ee1f59b266

View file

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