AP_Bootloader: change timeout on external flash init

This commit is contained in:
Andy Piper 2022-03-31 21:34:17 +01:00 committed by Andrew Tridgell
parent e89eb34d55
commit 64743b73ca
1 changed files with 1 additions and 1 deletions

View File

@ -163,7 +163,7 @@ int main(void)
while (!ext_flash.init()) {
// keep trying until we get it working
// there's no future without it
chThdSleep(1000);
chThdSleep(chTimeMS2I(20));
}
#endif