Skip to content

Commit

Permalink
fix(mission_planner): add type
Browse files Browse the repository at this point in the history
Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>
  • Loading branch information
satoshi-ota committed Mar 31, 2023
1 parent 5e58b1a commit 2e7e30a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -145,8 +145,8 @@ void DefaultPlanner::initialize_common(rclcpp::Node * node)
node_->create_publisher<MarkerArray>("debug/goal_footprint", durable_qos);

vehicle_info_ = vehicle_info_util::VehicleInfoUtil(*node_).getVehicleInfo();
param_.goal_angle_threshold_deg = node_->declare_parameter("goal_angle_threshold_deg");
param_.enable_correct_goal_pose = node_->declare_parameter("enable_correct_goal_pose");
param_.goal_angle_threshold_deg = node_->declare_parameter<double>("goal_angle_threshold_deg");
param_.enable_correct_goal_pose = node_->declare_parameter<bool>("enable_correct_goal_pose");
}

void DefaultPlanner::initialize(rclcpp::Node * node)
Expand Down

0 comments on commit 2e7e30a

Please sign in to comment.