Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed Errors! #1209

Open
wants to merge 19 commits into
base: master
Choose a base branch
from
Open
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions dronekit/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -1309,7 +1309,7 @@ def listener(self, name, msg):
self.notify_attribute_listeners('commands', self.commands)

# Waypoint send to master
@self.on_message(['WAYPOINT_REQUEST', 'MISSION_REQUEST'])
@self.on_message(['WAYPOINT_REQUEST', 'MISSION_REQUEST_INT'])
def listener(self, name, msg):
if self._wp_uploaded is not None:
wp = self._wploader.wp(msg.seq)
Expand Down Expand Up @@ -2917,7 +2917,7 @@ def decorated_thr_min_callback(self, attr_name, value):
return super(Parameters, self).on_attribute(attr_name, *args, **kwargs)


class Command(mavutil.mavlink.MAVLink_mission_item_message):
class Command(mavutil.mavlink.MAVLink_mission_item_int_message):
"""
A waypoint object.

Expand Down