Skip to content

Commit

Permalink
Disable static transform publishers and update changelog and package …
Browse files Browse the repository at this point in the history
…version
  • Loading branch information
Samahu committed May 5, 2023
1 parent a8b643c commit bef8dbc
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 5 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ ouster_ros(2)
launch parameters.
* bugfix: fixed an issue that prevents running multiple instances of the sensor and cloud components
in the same process.
* switch to using static transform publisher for the ros2 driver.

ouster_client
-------------
Expand Down
2 changes: 1 addition & 1 deletion ouster-ros/launch/replay.composite.launch.xml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
<include if="$(var viz)" file="$(find-pkg-share ouster_ros)/launch/rviz.launch.xml">
<arg name="ouster_ns" value="$(var ouster_ns)"/>
<arg name="rviz_config" value="$(var rviz_config)"/>
<arg name="_enable_static_tf_publishers" value="true"/>
<arg name="_enable_static_tf_publishers" value="false"/>
<arg name="sensor_frame" value="$(var sensor_frame)"/>
<arg name="lidar_frame" value="$(var lidar_frame)"/>
<arg name="imu_frame" value="$(var imu_frame)"/>
Expand Down
2 changes: 1 addition & 1 deletion ouster-ros/launch/sensor.composite.launch.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ def generate_launch_description():
rviz_launch = IncludeLaunchDescription(
PythonLaunchDescriptionSource([str(rviz_launch_file_path)]),
condition=IfCondition(rviz_enable),
launch_arguments={'_enable_static_tf_publishers': 'true'}.items()
launch_arguments={'_enable_static_tf_publishers': 'false'}.items()
)

# HACK: to configure and activate the the sensor since state transition
Expand Down
2 changes: 1 addition & 1 deletion ouster-ros/launch/sensor.composite.launch.xml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@
<include if="$(var viz)" file="$(find-pkg-share ouster_ros)/launch/rviz.launch.xml">
<arg name="ouster_ns" value="$(var ouster_ns)"/>
<arg name="rviz_config" value="$(var rviz_config)"/>
<arg name="_enable_static_tf_publishers" value="true"/>
<arg name="_enable_static_tf_publishers" value="false"/>
<arg name="sensor_frame" value="$(var sensor_frame)"/>
<arg name="lidar_frame" value="$(var lidar_frame)"/>
<arg name="imu_frame" value="$(var imu_frame)"/>
Expand Down
2 changes: 1 addition & 1 deletion ouster-ros/launch/sensor.independent.launch.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ def generate_launch_description():
rviz_launch = IncludeLaunchDescription(
PythonLaunchDescriptionSource([str(rviz_launch_file_path)]),
condition=IfCondition(rviz_enable),
launch_arguments={'_enable_static_tf_publishers': 'true'}.items()
launch_arguments={'_enable_static_tf_publishers': 'false'}.items()
)

return launch.LaunchDescription([
Expand Down
2 changes: 1 addition & 1 deletion ouster-ros/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<?xml-model href="http://download.ros.org/schema/package_format2.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
<package format="3">
<name>ouster_ros</name>
<version>0.8.3</version>
<version>0.8.4</version>
<description>Ouster ROS2 driver</description>
<maintainer email="[email protected]">ouster developers</maintainer>
<license file="LICENSE">BSD</license>
Expand Down

0 comments on commit bef8dbc

Please sign in to comment.