ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange |
1 | initial version |
I can't help you much because I don't have a turtlebot to test, so I hope other people can chime in.
In general, remapping often brings bugs into the light with code that hasn't been tested in a multi robot scenario. :-)
Some general advice:
rosparam dump tmp.yaml
with and without remapping and try to spot the differences (and missing differences). Better restart the master in between to clear out the parameters.tf_prefix
parameter for all nodes that use TF. But your errors don't seem to be related to TF (that will start later, when you connect a second Turtlebot). Some code even doesn't support tf_prefix
. For instance, we've only patched that support into robot_pose_ekf
last month, so you'll have to wait for the next release of the navigation stack (1.10.4) before you can use multiple instances of robot_pose_ekf
at once.2 | No.2 Revision |
I can't help you much because I don't have a turtlebot to test, so I hope other people can chime in.
In general, remapping often brings bugs into the light with code that hasn't been tested in a multi robot scenario. :-)
Some general advice:
rosparam dump tmp.yaml
with and without remapping and try to spot the differences (and missing differences). Better restart the master in between to clear out the parameters.tf_prefix
parameter for all nodes that use TF. But your errors don't seem to be related to TF (that will start later, when you connect a second Turtlebot). Some code even doesn't support tf_prefix
. For instance, we've only patched that support into robot_pose_ekf
last month, so you'll have to wait for the next release of the navigation stack (1.10.4) before you can use multiple instances of robot_pose_ekf
at