AP_BoardConfig: change message interval to 5 seconds to match scheduler_delay_callback
This commit is contained in:
parent
c054218568
commit
30a9bb4ff4
@ -382,7 +382,7 @@ void AP_BoardConfig::config_error(const char *fmt, ...)
|
||||
uint32_t last_print_ms = 0;
|
||||
while (true) {
|
||||
uint32_t now = AP_HAL::millis();
|
||||
if (now - last_print_ms >= 3000) {
|
||||
if (now - last_print_ms >= 5000) {
|
||||
last_print_ms = now;
|
||||
va_list arg_list;
|
||||
char printfmt[MAVLINK_MSG_STATUSTEXT_FIELD_TEXT_LEN+2];
|
||||
|
Loading…
Reference in New Issue
Block a user