Skip to content

Commit

Permalink
feat(merge_from_private): use separate param (autowarefoundation#4692)
Browse files Browse the repository at this point in the history
Signed-off-by: Mamoru Sobue <mamoru.sobue@tier4.jp>
  • Loading branch information
soblin committed Aug 22, 2023
1 parent 1937ce0 commit 6656849
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -45,4 +45,5 @@
pub_debug_grid: false

merge_from_private:
stop_line_margin: 3.0
stop_duration_sec: 1.0
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ MergeFromPrivateModuleManager::MergeFromPrivateModuleManager(rclcpp::Node & node
mp.stop_duration_sec = node.declare_parameter<double>(ns + ".stop_duration_sec");
mp.attention_area_length =
node.get_parameter("intersection.common.attention_area_length").as_double();
mp.stop_line_margin = node.get_parameter("intersection.common.stop_line_margin").as_double();
mp.stop_line_margin = node.declare_parameter<double>(ns + ".stop_line_margin");
mp.path_interpolation_ds =
node.get_parameter("intersection.common.path_interpolation_ds").as_double();
}
Expand Down

0 comments on commit 6656849

Please sign in to comment.