Skip to content
Snippets Groups Projects
Commit d54e2261 authored by Beat Küng's avatar Beat Küng Committed by Lorenz Meier
Browse files

fix mavlink ulog: return if initial ack not yet received

Avoid sending data before we have an ack from the logger.
parent a96ee504
No related branches found
No related tags found
No related merge requests found
......@@ -95,6 +95,7 @@ int MavlinkULog::handle_update(mavlink_channel_t channel)
PX4_WARN("no ack from logger (is it running?)");
return -1;
}
return 0;
}
// check if we're waiting for an ACK
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment