ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange
Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

An array of int8 28 values long will give you 224 bits. This is the usual approach to storing a binary blob such as your RadarDetection type.

An array of int8 28 values long will give you 224 bits. This is the usual approach to storing a binary blob such as your RadarDetection type. It will be presented as a boost::array of int8_t, which you can get the raw pointer to and read into your data type.

An array of int8 28 values long will give you 224 bits. This is the usual approach to storing a binary blob such as your RadarDetection type. It will be presented as a boost::array of int8_t, which you can get the raw pointer to and read into your data type.type. See the msg data types page for more information.