Skip to content

Commit

Permalink
mavproxy_link: ignore MAV_CMD_IN_PROGRESS calibration acks
Browse files Browse the repository at this point in the history
  • Loading branch information
peterbarker authored and tridge committed Jan 5, 2023
1 parent f88e277 commit a64a5f3
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions MAVProxy/modules/mavproxy_link.py
Original file line number Diff line number Diff line change
Expand Up @@ -769,6 +769,9 @@ def accumulated_statustext(self):
self.say("Calibration failed")
elif m.result == mavutil.mavlink.MAV_RESULT_UNSUPPORTED:
self.say("Calibration unsupported")
elif m.result == mavutil.mavlink.MAV_RESULT_IN_PROGRESS:
# don't bother the user with this
pass
elif m.result == mavutil.mavlink.MAV_RESULT_TEMPORARILY_REJECTED:
self.say("Calibration temporarily rejected")
else:
Expand Down

0 comments on commit a64a5f3

Please sign in to comment.