Skip to content
Snippets Groups Projects
Commit 3adb389b authored by Julian Oes's avatar Julian Oes Committed by Lorenz Meier
Browse files

vmount: don't ignore commands to all component ids

This resolves the case where a gimbal command assembled by
QGroundControl is rejected because the component id is set to 0 (for
all) and the component id of the vehicle is e.g. 1.
parent 85ba1607
No related branches found
No related tags found
No related merge requests found
......@@ -230,8 +230,12 @@ int InputMavlinkCmdMount::update_impl(unsigned int timeout_ms, ControlData **con
vehicle_command_s vehicle_command;
orb_copy(ORB_ID(vehicle_command), _vehicle_command_sub, &vehicle_command);
// process only if the command is for us
if (vehicle_command.target_system != _mav_sys_id || vehicle_command.target_component != _mav_comp_id) {
// Process only if the command is for us or for anyone.
const bool sysid_correct = (vehicle_command.target_system == _mav_sys_id);
const bool compid_correct = ((vehicle_command.target_component == _mav_comp_id) ||
(vehicle_command.target_component == MAV_COMP_ID_ALL));
if (!sysid_correct || !compid_correct) {
return 0;
}
......
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