Skip to content

Commit

Permalink
fix: packages name is aip_xx1_gen2_* but in these files written as ai…
Browse files Browse the repository at this point in the history
…p_xx1_*

Signed-off-by: N-Eiki <[email protected]>
  • Loading branch information
N-Eiki committed Jun 19, 2024
1 parent 6ff4e4c commit bd25b08
Show file tree
Hide file tree
Showing 11 changed files with 18 additions and 18 deletions.
2 changes: 1 addition & 1 deletion aip_xx1_gen2_description/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
cmake_minimum_required(VERSION 3.5)
project(aip_xx1_description)
project(aip_xx1_gen2_description)

find_package(ament_cmake_auto REQUIRED)

Expand Down
4 changes: 2 additions & 2 deletions aip_xx1_gen2_description/package.xml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?xml version="1.0"?>
<package format="2">
<name>aip_xx1_description</name>
<name>aip_xx1_gen2_description</name>
<version>0.1.0</version>
<description>The aip_xx1_description package</description>
<description>The aip_xx1_gen2_description package</description>

<maintainer email="[email protected]">Yukihiro Saito</maintainer>
<license>Apache 2</license>
Expand Down
2 changes: 1 addition & 1 deletion aip_xx1_gen2_description/urdf/sensor_kit.xacro
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

<!-- <xacro:property name="pi" value="3.1415926835897931"/> -->
<xacro:arg name="gpu" default="false"/>
<xacro:arg name="config_dir" default="$(find aip_xx1_description)/config"/>
<xacro:arg name="config_dir" default="$(find aip_xx1_gen2_description)/config"/>

<xacro:property name="sensor_kit_base_link" default="sensor_kit_base_link"/>

Expand Down
2 changes: 1 addition & 1 deletion aip_xx1_gen2_description/urdf/sensors.xacro
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0"?>
<robot name="vehicle" xmlns:xacro="http://ros.org/wiki/xacro">

<xacro:arg name="config_dir" default="$(find aip_xx1_description)/config"/>
<xacro:arg name="config_dir" default="$(find aip_xx1_gen2_description)/config"/>
<xacro:property name="calibration" value="${xacro.load_yaml('$(arg config_dir)/sensors_calibration.yaml')}"/>

<!-- sensor kit -->
Expand Down
2 changes: 1 addition & 1 deletion aip_xx1_gen2_launch/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
cmake_minimum_required(VERSION 3.5)
project(aip_xx1_launch)
project(aip_xx1_gen2_launch)

find_package(ament_cmake_auto REQUIRED)
ament_auto_find_build_dependencies()
Expand Down
2 changes: 1 addition & 1 deletion aip_xx1_gen2_launch/launch/imu.launch.xml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
</include>

<!-- Gyro Bias Estimator-->
<arg name="gyro_bias_estimator_param_file" default="$(find-pkg-share aip_xx1_launch)/config/gyro_bias_estimator.param.yaml"/>
<arg name="gyro_bias_estimator_param_file" default="$(find-pkg-share aip_xx1_gen2_launch)/config/gyro_bias_estimator.param.yaml"/>
<include file="$(find-pkg-share imu_corrector)/launch/gyro_bias_estimator.launch.xml">
<arg name="input_imu_raw" value="$(var imu_raw_name)"/>
<arg name="input_odom" value="/localization/kinematic_state"/>
Expand Down
4 changes: 2 additions & 2 deletions aip_xx1_gen2_launch/launch/lidar.launch.py
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ def load_yaml(yaml_file_path):
IncludeLaunchDescription(
PythonLaunchDescriptionSource(
os.path.join(
get_package_share_directory("aip_xx1_launch"),
get_package_share_directory("aip_xx1_gen2_launch"),
"launch",
"pointcloud_preprocessor.launch.py",
)
Expand Down Expand Up @@ -159,7 +159,7 @@ def generate_launch_description():
config_file_arg = DeclareLaunchArgument(
"config_file",
default_value=os.path.join(
get_package_share_directory("aip_xx1_launch"), "config", "lidar_launch.yaml"
get_package_share_directory("aip_xx1_gen2_launch"), "config", "lidar_launch.yaml"
),
description="Path to the configuration file",
)
Expand Down
2 changes: 1 addition & 1 deletion aip_xx1_gen2_launch/launch/lidar.launch.xml
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@
</include>
</group>

<include file="$(find-pkg-share aip_xx1_launch)/launch/pointcloud_preprocessor.launch.py">
<include file="$(find-pkg-share aip_xx1_gen2_launch)/launch/pointcloud_preprocessor.launch.py">
<arg name="base_frame" value="base_link"/>
<arg name="use_intra_process" value="true"/>
<arg name="use_multithread" value="true"/>
Expand Down
2 changes: 1 addition & 1 deletion aip_xx1_gen2_launch/launch/radar.launch.xml
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@
</group>

<!-- merge radar objects -->
<let name="merger_param_path" value="$(find-pkg-share aip_xx1_launch)/config/radar_simple_object_merger.param.yaml"/>
<let name="merger_param_path" value="$(find-pkg-share aip_xx1_gen2_launch)/config/radar_simple_object_merger.param.yaml"/>
<node pkg="simple_object_merger" exec="simple_object_merger_node" name="simple_object_merger" output="screen">
<remap from="~/output/objects" to="detected_objects"/>
<param from="$(var merger_param_path)"/>
Expand Down
10 changes: 5 additions & 5 deletions aip_xx1_gen2_launch/launch/sensing.launch.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,29 +9,29 @@
<group>

<!-- LiDAR Driver -->
<include file="$(find-pkg-share aip_xx1_launch)/launch/lidar.launch.py">
<include file="$(find-pkg-share aip_xx1_gen2_launch)/launch/lidar.launch.py">
<arg name="launch_driver" value="$(var launch_driver)" />
<arg name="vehicle_mirror_param_file" value="$(var vehicle_mirror_param_file)" />
<arg name="pointcloud_container_name" value="$(var pointcloud_container_name)"/>
</include>

<!-- Camera Driver -->
<!-- <include file="$(find-pkg-share aip_xx1_launch)/launch/camera.launch.xml">
<!-- <include file="$(find-pkg-share aip_xx1_gen2_launch)/launch/camera.launch.xml">
<arg name="launch_driver" value="$(var launch_driver)" />
</include> -->

<!-- IMU Driver -->
<include file="$(find-pkg-share aip_xx1_launch)/launch/imu.launch.xml">
<include file="$(find-pkg-share aip_xx1_gen2_launch)/launch/imu.launch.xml">
<arg name="launch_driver" value="$(var launch_driver)" />
</include>

<!-- GNSS Driver -->
<include file="$(find-pkg-share aip_xx1_launch)/launch/gnss.launch.xml">
<include file="$(find-pkg-share aip_xx1_gen2_launch)/launch/gnss.launch.xml">
<arg name="launch_driver" value="$(var launch_driver)" />
</include>

<!-- Radar Driver -->
<include file="$(find-pkg-share aip_xx1_launch)/launch/radar.launch.xml">
<include file="$(find-pkg-share aip_xx1_gen2_launch)/launch/radar.launch.xml">
<arg name="launch_driver" value="$(var launch_driver)" />
</include>

Expand Down
4 changes: 2 additions & 2 deletions aip_xx1_gen2_launch/package.xml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<?xml version="1.0"?>
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
<package format="3">
<name>aip_xx1_launch</name>
<name>aip_xx1_gen2_launch</name>
<version>0.1.0</version>
<description>The aip_xx1_launch package</description>
<description>The aip_xx1_gen2_launch package</description>

<maintainer email="[email protected]">Hiroki OTA</maintainer>
<license>Apache License 2.0</license>
Expand Down

0 comments on commit bd25b08

Please sign in to comment.