Skip to content

Commit

Permalink
Merge pull request #9 from daBaret/fix/compslam
Browse files Browse the repository at this point in the history
add use_sim_time arg
  • Loading branch information
JohannesPankert authored Jul 6, 2021
2 parents dc73548 + 49b93aa commit 25efd9a
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion smb_slam/launch/build_map.launch
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,17 @@
<arg name="launch_rviz" default="false"/>
<arg name="launch_sensors" default="false"/>
<arg name="map_name" default="compslam"/>
<arg name="use_sim_time" default="false"/>


<include file="$(find smb)/launch/sensors.launch" if="$(arg launch_sensors)">
</include>

<include file="$(find smb_slam)/launch/compslam/smb_cmpslam.launch">
<arg name="launch_rviz" default="$(arg launch_rviz)"/>
<arg name="launch_rviz" value="$(arg launch_rviz)"/>
<arg name="map_name" value="$(arg map_name)"/>
<arg name="use_sim_time" value="$(arg use_sim_time)"/>

</include>

</launch>

0 comments on commit 25efd9a

Please sign in to comment.