Skip to content

Commit

Permalink
mission_item_protocol.py: handle MISSION_REQUEST_INT for item retrieval
Browse files Browse the repository at this point in the history
  • Loading branch information
peterbarker committed Dec 15, 2024
1 parent 25cd8d4 commit a14f834
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion MAVProxy/modules/lib/mission_item_protocol.py
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@ def mavlink_packet(self, m):
self.wp_requested = {}
self.wp_received = {}

elif mtype in ["MISSION_REQUEST"]:
elif mtype in frozenset(["MISSION_REQUEST", "MISSION_REQUEST_INT"]):
self.process_waypoint_request(m, self.master)

def idle_task(self):
Expand Down

0 comments on commit a14f834

Please sign in to comment.