You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Shell 1
$ source /opt/ros/melodic/setup.bash
$ roscore &
$ rosrun rospy_tutorials talker
# Shell 2
# I built the ros1_bridge in ros2_ws
$ source ros2_ws/install/setup.bash
$ ros2 run ros1_bridge static_bridge
[INFO] [ros_bridge]: create bidirectional bridge for topic chatter
terminate called after throwing an instance of 'std::runtime_error'
what(): No template specialization for the pair
Expected behavior
I want to bridge the specific topic to ROS2, but it doesn't work on tutorial's talker
Feature request
Filters for bridge specific topic or except some topics
Feature description
I want to use ros1_bridge to communicate between multi-robots which based on ROS1 through DDS
But there is a problem with bridging big data like image_raw when I use dynamic_bridge --bridge-all-topics
It will cause the network traffic jams
Is it possible to filter some topics or make a rule file to bridge topics that I wanted?
The text was updated successfully, but these errors were encountered:
Thank you for reporting this. #209 fixes the static_bridge.
The static bridge is a demonstration how a single topic with a specific type can be bridged. You could implement your own static bridge for you specific topic types / names - all you need to change from the example are these few lines:
Bug report
Required Info:
Steps to reproduce issue
Expected behavior
I want to bridge the specific topic to ROS2, but it doesn't work on tutorial's talker
Feature request
Filters for bridge specific topic or except some topics
Feature description
I want to use ros1_bridge to communicate between multi-robots which based on ROS1 through DDS
But there is a problem with bridging big data like image_raw when I use dynamic_bridge --bridge-all-topics
It will cause the network traffic jams
Is it possible to filter some topics or make a rule file to bridge topics that I wanted?
The text was updated successfully, but these errors were encountered: