mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-07-01 13:00:36 +08:00
had the wrong setpoint structure
This commit is contained in:
@@ -685,6 +685,18 @@ MulticopterPositionControl::task_main()
|
||||
_pos_sp(1) = _offboard_control_pos_sp.y;
|
||||
_pos_sp(2) = _offboard_control_pos_sp.z;
|
||||
_att_sp.yaw_body = _offboard_control_pos_sp.yaw;
|
||||
|
||||
/* Make sure position control is selected i.e. not only velocity control */
|
||||
if (_control_mode.flag_control_position_enabled) {
|
||||
_pos_sp(0) = _offboard_control_pos_sp.x;
|
||||
_pos_sp(1) = _offboard_control_pos_sp.y;
|
||||
}
|
||||
|
||||
if (_control_mode.flag_control_altitude_enabled) {
|
||||
_pos_sp(2) = _offboard_control_pos_sp.z;
|
||||
}
|
||||
|
||||
_att_sp.yaw_body = _offboard_control_pos_sp.yaw;
|
||||
|
||||
} else {
|
||||
/* AUTO */
|
||||
|
||||
Reference in New Issue
Block a user