Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion carla_ros_bridge/launch/carla_ros_bridge.launch
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<!-- the network connection for the python connection to CARLA -->
<arg name='host' default='localhost'/>
<arg name='port' default='2000'/>
<arg name='timeout' default='2'/>
<arg name='timeout' default='20'/>
<!--
enable/disable synchronous mode. If enabled ros-bridge waits until
expected data is received for all sensors
Expand Down
2 changes: 1 addition & 1 deletion carla_ros_bridge/launch/carla_ros_bridge.launch.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ def generate_launch_description():
),
launch.actions.DeclareLaunchArgument(
name='timeout',
default_value='2',
default_value='20',
description='Time to wait for a successful connection to the CARLA server'
),
launch.actions.DeclareLaunchArgument(
Expand Down
2 changes: 1 addition & 1 deletion carla_ros_bridge/src/carla_ros_bridge/CARLA_VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.9.13
0.9.15
2 changes: 1 addition & 1 deletion carla_ros_bridge/src/carla_ros_bridge/collision_sensor.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def __init__(self, uid, name, parent, relative_spawn_pose, node, carla_actor, sy
is_event_sensor=True)

self.collision_publisher = node.new_publisher(CarlaCollisionEvent,
self.get_topic_prefix(),
self.get_topic_prefix() + "_collision",
qos_profile=10)
self.listen()

Expand Down
4 changes: 2 additions & 2 deletions carla_ros_bridge/src/carla_ros_bridge/imu.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ def __init__(self, uid, name, parent, relative_spawn_pose, node, carla_actor, sy
carla_actor=carla_actor,
synchronous_mode=synchronous_mode)

self.imu_publisher = node.new_publisher(Imu, self.get_topic_prefix(), qos_profile=10)
#self.imu_publisher = node.new_publisher(Imu, self.get_topic_prefix(), qos_profile=10)
self.listen()

def destroy(self):
Expand Down Expand Up @@ -85,4 +85,4 @@ def sensor_data_updated(self, carla_imu_measurement):
imu_msg.orientation.y = quat[2]
imu_msg.orientation.z = quat[3]

self.imu_publisher.publish(imu_msg)
#self.imu_publisher.publish(imu_msg)
85 changes: 0 additions & 85 deletions pcl_recorder/CMakeLists.txt

This file was deleted.

3 changes: 0 additions & 3 deletions pcl_recorder/README.md

This file was deleted.

30 changes: 0 additions & 30 deletions pcl_recorder/include/PclRecorder.h

This file was deleted.

30 changes: 0 additions & 30 deletions pcl_recorder/include/PclRecorderROS2.h

This file was deleted.

24 changes: 0 additions & 24 deletions pcl_recorder/launch/pcl_recorder.launch

This file was deleted.

64 changes: 0 additions & 64 deletions pcl_recorder/launch/pcl_recorder.launch.py

This file was deleted.

37 changes: 0 additions & 37 deletions pcl_recorder/package.xml

This file was deleted.

59 changes: 0 additions & 59 deletions pcl_recorder/src/PclRecorder.cpp

This file was deleted.

Loading