Skip to content

Commit

Permalink
fix(autoware_carla_interface): fix lidar topic name
Browse files Browse the repository at this point in the history
Signed-off-by: Maxime CLEMENT <[email protected]>
  • Loading branch information
maxime-clem committed Dec 13, 2024
1 parent 86ba21f commit c5cfe9b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ def __init__(self):
elif sensor["type"] == "sensor.lidar.ray_cast":
if sensor["id"] in self.sensor_frequencies:
self.pub_lidar[sensor["id"]] = self.ros2_node.create_publisher(
PointCloud2, f'/sensing/lidar/{sensor["id"]}/pointcloud', 10
PointCloud2, f'/sensing/lidar/{sensor["id"]}/pointcloud_before_sync', 10
)
else:
self.ros2_node.get_logger().info(
Expand Down

0 comments on commit c5cfe9b

Please sign in to comment.