Skip to content

Commit

Permalink
landing_target: fix landing target pose input topic naming
Browse files Browse the repository at this point in the history
  • Loading branch information
TSC21 committed Jun 6, 2019
1 parent a68a131 commit 68d6fcc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mavros_extras/src/plugins/landing_target.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -89,8 +89,8 @@ class LandingTargetPlugin : public plugin::PluginBase,
nh.param<std::string>("tf/child_frame_id", tf_child_frame_id, "camera_center");
nh.param("tf/rate_limit", tf_rate, 50.0);

land_target_pub = nh.advertise<geometry_msgs::PoseStamped>("pose", 10);
lt_marker_pub = nh.advertise<geometry_msgs::Vector3>("lt_marker", 10);
land_target_pub = nh.advertise<geometry_msgs::PoseStamped>("pose_in", 10);
lt_marker_pub = nh.advertise<geometry_msgs::Vector3Stamped>("lt_marker", 10);

if (listen_tf) { // Listen to transform
ROS_INFO_STREAM_NAMED("landing_target", "Listen to landing_target transform " << tf_frame_id
Expand Down

0 comments on commit 68d6fcc

Please sign in to comment.