yarp-devices
CanMessage.hpp
1 // -*- mode:C++; tab-width:4; c-basic-offset:4; indent-tabs-mode:nil -*-
2 
3 #ifndef __CAN_MESSAGE_HPP__
4 #define __CAN_MESSAGE_HPP__
5 
6 namespace roboticslab
7 {
8 
20 {
21  unsigned int id;
22  unsigned int len;
23  const unsigned char * data;
24 };
25 
26 } // namespace roboticslab
27 
28 #endif // __CAN_MESSAGE_HPP__
The main, catch-all namespace for Robotics Lab UC3M.
Definition: groups.dox:6
Proxy CAN message structure.
Definition: CanMessage.hpp:20