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

It looks like there's a typo in your message definition. You have unint8 instead of uint8 for the age property

int64 sum
string first_name
string last_name
unint8 age          # right here
uint32 score

It should be

int64 sum
string first_name
string last_name
uint8 age
uint32 score