mirror of
https://github.com/betaflight/betaflight.git
synced 2025-07-16 21:05:35 +03:00
Added missing delay for F4 to CLI
This commit is contained in:
parent
2240381caf
commit
66f1abe1be
1 changed files with 5 additions and 1 deletions
|
@ -2975,6 +2975,10 @@ 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);
|
||||||
|
|
||||||
|
#ifdef USE_SLOW_SERIAL_CLI
|
||||||
|
delay(1);
|
||||||
|
#endif
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue