ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange |
1 | initial version |
You can only have 1 ROS node per linux process. The rule is you should only call rospy.init_node(...)
once.
If you call it a second time, the first ros-node instance is shut down and start a new ros-node instance begins.