Execute loops in multiple nodes at the same time?
Hello,
I have a system that has two ROS nodes, each with a while loop that waits for a certain amount of time to pass. However, when the first node enters its loop, the rest of the system freezes waiting for the loop to complete.
The question: Is there a way to execute my ROS system so that several nodes can run at the same time, even with loops running within? Perhaps the solution lies with threading or parallelism?
Thanks!