-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(aip_x2_gen2_launch): add launcher for ARS548 to pass some missin…
…g arguments (#334) * feat: add launcher for radar to pass some missing arguments Signed-off-by: Tomohito Ando <[email protected]> * remove unuesed transform node Signed-off-by: Tomohito Ando <[email protected]> * remove unused parameter Signed-off-by: Tomohito Ando <[email protected]> * Revert "remove unuesed transform node" This reverts commit 87b5351. * remove unnecessary comments Signed-off-by: Tomohito Ando <[email protected]> --------- Signed-off-by: Tomohito Ando <[email protected]>
- Loading branch information
1 parent
9e9d11a
commit 3013e90
Showing
3 changed files
with
53 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
/**: | ||
ros__parameters: | ||
host_ip: 10.13.1.166 | ||
sensor_ip: 10.13.1.114 | ||
data_port: 42102 | ||
base_frame: base_link | ||
object_frame: base_link | ||
launch_hw: true | ||
multicast_ip: 224.0.2.2 | ||
sensor_model: ARS548 | ||
configuration_host_port: 42401 | ||
configuration_sensor_port: 42101 | ||
use_sensor_time: false | ||
configuration_vehicle_length: 7.2369 | ||
configuration_vehicle_width: 2.2916 | ||
configuration_vehicle_height: 3.08 | ||
configuration_vehicle_wheelbase: 4.76012 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
<?xml version="1.0"?> | ||
<launch> | ||
<arg name="sensor_model" default="ARS548"/> | ||
<arg name="launch_hw" default="true" description="Whether to connect to a real sensor (true) or to accept packet messages (false)."/> | ||
<arg name="config_file" default="$(find-pkg-share aip_x2_gen2_launch)/config/ARS548.param.yaml"/> | ||
<arg name="frame_id"/> | ||
<arg name="sensor_ip"/> | ||
<arg name="odometry_topic"/> | ||
<arg name="acceleration_topic"/> | ||
<arg name="steering_angle_topic"/> | ||
|
||
<node pkg="nebula_ros" exec="continental_ars548_ros_wrapper_node" name="nebula_continental_ars548" output="screen"> | ||
<param from="$(var config_file)" allow_substs="true"/> | ||
<param name="launch_hw" value="$(var launch_hw)"/> | ||
<param name="frame_id" value="$(var frame_id)"/> | ||
<param name="sensor_ip" value="$(var sensor_ip)"/> | ||
<remap from="odometry_input" to="$(var odometry_topic)"/> | ||
<remap from="acceleration_input" to="$(var acceleration_topic)"/> | ||
<remap from="steering_angle_input" to="$(var steering_angle_topic)"/> | ||
<remap from="diagnostics" to="/diagnostics"/> | ||
</node> | ||
|
||
</launch> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters