Skip to content

Commit

Permalink
Use ground truth uorb topic for ground truth mavlink message
Browse files Browse the repository at this point in the history
  • Loading branch information
kamilritz authored and dagar committed May 2, 2020
1 parent 28d2aca commit 0cdf2c2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/modules/mavlink/mavlink_messages.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4925,10 +4925,10 @@ class MavlinkStreamGroundTruth : public MavlinkStream
}

private:
uORB::Subscription _angular_velocity_sub{ORB_ID(vehicle_angular_velocity)};
uORB::Subscription _att_sub{ORB_ID(vehicle_attitude)};
uORB::Subscription _gpos_sub{ORB_ID(vehicle_global_position)};
uORB::Subscription _lpos_sub{ORB_ID(vehicle_local_position)};
uORB::Subscription _angular_velocity_sub{ORB_ID(vehicle_angular_velocity_groundtruth)};
uORB::Subscription _att_sub{ORB_ID(vehicle_attitude_groundtruth)};
uORB::Subscription _gpos_sub{ORB_ID(vehicle_global_position_groundtruth)};
uORB::Subscription _lpos_sub{ORB_ID(vehicle_local_position_groundtruth)};

/* do not allow top copying this class */
MavlinkStreamGroundTruth(MavlinkStreamGroundTruth &) = delete;
Expand Down

0 comments on commit 0cdf2c2

Please sign in to comment.