ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange |
1 | initial version |
I think this is caused by an error in the formatting format.
ROS_DEBUG("value: 0x%02X\n", c);
Try it with the X in lower case instead of upper case.
ROS_DEBUG("value: 0x%02x\n", c);
2 | No.2 Revision |
I think this is caused by an error in the formatting format.
ROS_DEBUG("value: 0x%02X\n", c);
Try it with the X in lower case instead of upper case.
ROS_DEBUG("value: 0x%02x\n", c);
I found another one.
read(kfd, &c, 1)
There is no semicolon.