Skip to content

Commit

Permalink
feat(drs_launch): add parameters to use Seyond devices with latest Ne…
Browse files Browse the repository at this point in the history
…bula aeva_seyond branch

Signed-off-by: David Wong <[email protected]>
  • Loading branch information
drwnz committed Jan 4, 2025
1 parent 65df79e commit 33271bb
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/drs_launch/launch/component/drs_seyond.launch.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@
<arg name="setup_sensor" default="True"/>
<arg name="retry_hw" default="True"/>
<arg name="debug_logging" default="False"/>
<arg name="calibration_file_path" default=""/>


<group>
<let name="lidar_name" value="lidar_$(var lidar_position)"/>
Expand All @@ -34,6 +36,7 @@
<param name="sensor_ip" value="$(var sensor_ip)"/>
<param name="launch_hw" value="$(var live_sensor)"/>
<param name="publish_pointcloud" value="$(var publish_pointcloud)"/>
<param name="calibration_file_path" value="$(var calibration_file_path)"/>
<param name="host_ip" value="$(var host_ip)"/>
<param name="data_port" value="$(var data_port)"/>
<param name="setup_sensor" value="$(var setup_sensor)"/>
Expand Down
2 changes: 2 additions & 0 deletions src/drs_launch/launch/drs_ecu0.launch.xml
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@
<arg name="lidar_model" value="Falcon"/>
<arg name="live_sensor" value="$(var live_sensor)"/>
<arg name="publish_pointcloud" value="$(var publish_pointcloud)"/>
<arg name="calibration_file_path" value=""/>
<arg name="sensor_ip" value="192.168.2.201"/>
<arg name="host_ip" value="192.168.2.1"/>
<arg name="data_port" value="2368"/>
Expand All @@ -72,6 +73,7 @@
<arg name="lidar_model" value="RobinW"/>
<arg name="live_sensor" value="$(var live_sensor)"/>
<arg name="publish_pointcloud" value="$(var publish_pointcloud)"/>
<arg name="calibration_file_path" value=""/>
<arg name="sensor_ip" value="192.168.3.203"/>
<arg name="host_ip" value="192.168.3.1"/>
</include>
Expand Down
2 changes: 2 additions & 0 deletions src/drs_launch/launch/drs_ecu1.launch.xml
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@
<arg name="lidar_model" value="Falcon"/>
<arg name="live_sensor" value="$(var live_sensor)"/>
<arg name="publish_pointcloud" value="$(var publish_pointcloud)"/>
<arg name="calibration_file_path" value=""/>
<arg name="sensor_ip" value="192.168.2.202"/>
<arg name="host_ip" value="192.168.2.2"/>
<arg name="data_port" value="2369"/>
Expand All @@ -63,6 +64,7 @@
<arg name="lidar_model" value="RobinW"/>
<arg name="live_sensor" value="$(var live_sensor)"/>
<arg name="publish_pointcloud" value="$(var publish_pointcloud)"/>
<arg name="calibration_file_path" value=""/>
<arg name="sensor_ip" value="192.168.3.204"/>
<arg name="host_ip" value="192.168.3.2"/>
</include>
Expand Down
8 changes: 8 additions & 0 deletions src/drs_launch/launch/drs_offline.launch.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@
description="If true, sensor drivers will be executed (for actual recording operation)"/>
<arg name="publish_pointcloud" default="True"
description="If false, pointcloud decoding will not be performed (for actual recording operation)"/>
<arg name="calibration_file_path_right" default=""
description="File path for calibration file path of right Robin LiDAR - only needed for A sample device data"/>
<arg name="calibration_file_path_left" default=""
description="File path for calibration file path of left Robin LiDAR - only needed for A sample device data"/>
<arg name="has_front4d" default="False"
description="Should be True when a front-mounted 4D LiDAR is present"/>
<arg name="publish_tf" default="True"/>
Expand All @@ -26,6 +30,7 @@
<arg name="lidar_model" value="Falcon"/>
<arg name="live_sensor" value="$(var live_sensor)"/>
<arg name="publish_pointcloud" value="$(var publish_pointcloud)"/>
<arg name="calibration_file_path" value=""/>
<arg name="sensor_ip" value="192.168.2.201"/>
<arg name="host_ip" value="192.168.2.1"/>
<arg name="data_port" value="2368"/>
Expand All @@ -37,6 +42,7 @@
<arg name="lidar_model" value="RobinW"/>
<arg name="live_sensor" value="$(var live_sensor)"/>
<arg name="publish_pointcloud" value="$(var publish_pointcloud)"/>
<arg name="calibration_file_path" value="$(var calibration_file_path_right)"/>
<arg name="sensor_ip" value="192.168.3.203"/>
<arg name="host_ip" value="192.168.3.1"/>
</include>
Expand All @@ -47,6 +53,7 @@
<arg name="lidar_model" value="Falcon"/>
<arg name="live_sensor" value="$(var live_sensor)"/>
<arg name="publish_pointcloud" value="$(var publish_pointcloud)"/>
<arg name="calibration_file_path" value=""/>
<arg name="sensor_ip" value="192.168.2.202"/>
<arg name="host_ip" value="192.168.2.2"/>
<arg name="data_port" value="2369"/>
Expand All @@ -58,6 +65,7 @@
<arg name="lidar_model" value="RobinW"/>
<arg name="live_sensor" value="$(var live_sensor)"/>
<arg name="publish_pointcloud" value="$(var publish_pointcloud)"/>
<arg name="calibration_file_path" value="$(var calibration_file_path_left)"/>
<arg name="sensor_ip" value="192.168.3.204"/>
<arg name="host_ip" value="192.168.3.2"/>
</include>
Expand Down

0 comments on commit 33271bb

Please sign in to comment.