ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange |
1 | initial version |
According to http://design.ros2.org/articles/idl_interface_definition.html, by definition a char
is unsigned in ros2.
In c++, a char
is either signed or unsigned, whichever the compiler-writer decided to use. You (the developer) are responsible for handling the mismatch, if there is one.