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
Our current CAN bus communication system makes use of two separate ROS2 Nodes running in both the drive and arm. These two ROS2 nodes are nearly identical, just interfacing with CAN nodes on different arbitration ids. Each ROS2 node, when attempting to read a message, discards all messages prior the queue that do match the message we're looking for.
Since each of these ROS2 nodes are run on different threads, this could potentially cause timing issues with one Node discarding the other's message, or even potential race conditions between threads attempting to read from the /dev/can0 file.
...
The text was updated successfully, but these errors were encountered:
Our current CAN bus communication system makes use of two separate ROS2 Nodes running in both the drive and arm. These two ROS2 nodes are nearly identical, just interfacing with CAN nodes on different arbitration ids. Each ROS2 node, when attempting to read a message, discards all messages prior the queue that do match the message we're looking for.
Since each of these ROS2 nodes are run on different threads, this could potentially cause timing issues with one Node discarding the other's message, or even potential race conditions between threads attempting to read from the /dev/can0 file.
...
The text was updated successfully, but these errors were encountered: