Skip to content
Snippets Groups Projects
Commit 93ef70c4 authored by Matthias Grob's avatar Matthias Grob Committed by Daniel Agar
Browse files

vmount: add missing yaw wrap at the end of a ROI update

parent 35409b40
No related branches found
No related tags found
No related merge requests found
......@@ -51,6 +51,8 @@
#include <mathlib/mathlib.h>
#include <matrix/math.hpp>
using matrix::wrap_pi;
namespace vmount
{
......@@ -197,6 +199,8 @@ void OutputBase::_handle_position_update(bool force_update)
_angle_setpoints[1] += _cur_control_data->type_data.lonlat.pitch_angle_offset;
_angle_setpoints[2] += _cur_control_data->type_data.lonlat.yaw_angle_offset;
// make sure yaw is wrapped correctly for the output
_angle_setpoints[2] = wrap_pi(_angle_setpoints[2]);
}
void OutputBase::_calculate_output_angles(const hrt_abstime &t)
......
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