ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | Q&A answers.ros.org |
![]() | 1 | initial version |
In the off chance somebody has a similar experience, the solution in this case was to fix my write definition. While OrangutanSerial::send(port,(char*) data,length);
compiled and did indeed work well enough to setup a single publisher and send data, I needed to switch to the blocking version, OrangutanSerial::sendBlocking(port,(char*) data,length);
Ah, the little things!