mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-07-13 08:10:34 +08:00
update UUV and rover controllers to use trajectory_setpoint and cleanup unused position_setpoint fields
This commit is contained in:
@@ -1838,10 +1838,6 @@ bool Mission::position_setpoint_equal(const position_setpoint_s *p1, const posit
|
||||
{
|
||||
return ((p1->valid == p2->valid) &&
|
||||
(p1->type == p2->type) &&
|
||||
(fabsf(p1->x - p2->x) < FLT_EPSILON) &&
|
||||
(fabsf(p1->y - p2->y) < FLT_EPSILON) &&
|
||||
(fabsf(p1->z - p2->z) < FLT_EPSILON) &&
|
||||
(p1->position_valid == p2->position_valid) &&
|
||||
(fabsf(p1->vx - p2->vx) < FLT_EPSILON) &&
|
||||
(fabsf(p1->vy - p2->vy) < FLT_EPSILON) &&
|
||||
(fabsf(p1->vz - p2->vz) < FLT_EPSILON) &&
|
||||
|
||||
Reference in New Issue
Block a user