Skip to content

Commit

Permalink
feat: load parameter from individual_params
Browse files Browse the repository at this point in the history
Signed-off-by: vividf <[email protected]>
  • Loading branch information
vividf committed Dec 2, 2024
1 parent 01f20e8 commit 2f2f4aa
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 25 deletions.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -70,15 +70,15 @@ def add_launch_arg(name: str, default_value=None):
DeclareLaunchArgument(name, default_value=default_value)
)

awsim_sensor_kit_launch_share_dir = get_package_share_directory("awsim_sensor_kit_launch")
individual_params_share_dir = get_package_share_directory("individual_params")
add_launch_arg("use_multithread", "False")
add_launch_arg("use_intra_process", "False")
add_launch_arg("pointcloud_container_name", "pointcloud_container")
add_launch_arg(
"concatenate_and_time_sync_node_param_path",
os.path.join(
awsim_sensor_kit_launch_share_dir,
"config",
individual_params_share_dir,
"config/default/awsim_sensor_kit",
"concatenate_and_time_sync_node.param.yaml",
),
)
Expand Down

0 comments on commit 2f2f4aa

Please sign in to comment.