mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-03-11 17:13:56 -03:00
GCS_MAVLink: log source sysid/compid in MAVC
For field length purposed had tor remove Current and autocontinue which we don't care about anyway.
This commit is contained in:
parent
13a7b60279
commit
fd144ccc59
@ -4358,7 +4358,7 @@ void GCS_MAVLINK::handle_command_long(const mavlink_message_t &msg)
|
||||
// log the packet:
|
||||
mavlink_command_int_t packet_int;
|
||||
convert_COMMAND_LONG_to_COMMAND_INT(packet, packet_int);
|
||||
AP::logger().Write_Command(packet_int, result, true);
|
||||
AP::logger().Write_Command(packet_int, msg.sysid, msg.compid, result, true);
|
||||
|
||||
hal.util->persistent_data.last_mavlink_cmd = 0;
|
||||
}
|
||||
@ -4545,7 +4545,7 @@ void GCS_MAVLINK::handle_command_int(const mavlink_message_t &msg)
|
||||
msg.sysid,
|
||||
msg.compid);
|
||||
|
||||
AP::logger().Write_Command(packet, result);
|
||||
AP::logger().Write_Command(packet, msg.sysid, msg.compid, result);
|
||||
|
||||
hal.util->persistent_data.last_mavlink_cmd = 0;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user