Browse Source

AP_Param: Delay param dumps to avoid running out of buffer space

master
Michael du Breuil 6 years ago committed by Andrew Tridgell
parent
commit
f06251a07f
  1. 1
      libraries/AP_Param/AP_Param.cpp

1
libraries/AP_Param/AP_Param.cpp

@ -2325,6 +2325,7 @@ void AP_Param::show_all(AP_HAL::BetterStream *port, bool showKeyValues) @@ -2325,6 +2325,7 @@ void AP_Param::show_all(AP_HAL::BetterStream *port, bool showKeyValues)
port->printf("Key %i: Index %i: GroupElement %i : ", token.key, token.idx, token.group_element);
}
show(ap, token, type, port);
hal.scheduler->delay(1);
}
}
#endif // AP_PARAM_KEY_DUMP

Loading…
Cancel
Save