$search
00001 /* Auto-generated by genmsg_cpp for file /home/rosbuild/hudson/workspace/doc-electric-pr2_ethercat_drivers/doc_stacks/2013-03-01_16-48-09.984649/pr2_ethercat_drivers/ethercat_hardware/msg/BoardInfo.msg */ 00002 #ifndef ETHERCAT_HARDWARE_MESSAGE_BOARDINFO_H 00003 #define ETHERCAT_HARDWARE_MESSAGE_BOARDINFO_H 00004 #include <string> 00005 #include <vector> 00006 #include <map> 00007 #include <ostream> 00008 #include "ros/serialization.h" 00009 #include "ros/builtin_message_traits.h" 00010 #include "ros/message_operations.h" 00011 #include "ros/time.h" 00012 00013 #include "ros/macros.h" 00014 00015 #include "ros/assert.h" 00016 00017 00018 namespace ethercat_hardware 00019 { 00020 template <class ContainerAllocator> 00021 struct BoardInfo_ { 00022 typedef BoardInfo_<ContainerAllocator> Type; 00023 00024 BoardInfo_() 00025 : description() 00026 , product_code(0) 00027 , pcb(0) 00028 , pca(0) 00029 , serial(0) 00030 , firmware_major(0) 00031 , firmware_minor(0) 00032 , board_resistance(0.0) 00033 , max_pwm_ratio(0.0) 00034 , hw_max_current(0.0) 00035 , poor_measured_motor_voltage(false) 00036 { 00037 } 00038 00039 BoardInfo_(const ContainerAllocator& _alloc) 00040 : description(_alloc) 00041 , product_code(0) 00042 , pcb(0) 00043 , pca(0) 00044 , serial(0) 00045 , firmware_major(0) 00046 , firmware_minor(0) 00047 , board_resistance(0.0) 00048 , max_pwm_ratio(0.0) 00049 , hw_max_current(0.0) 00050 , poor_measured_motor_voltage(false) 00051 { 00052 } 00053 00054 typedef std::basic_string<char, std::char_traits<char>, typename ContainerAllocator::template rebind<char>::other > _description_type; 00055 std::basic_string<char, std::char_traits<char>, typename ContainerAllocator::template rebind<char>::other > description; 00056 00057 typedef uint32_t _product_code_type; 00058 uint32_t product_code; 00059 00060 typedef uint32_t _pcb_type; 00061 uint32_t pcb; 00062 00063 typedef uint32_t _pca_type; 00064 uint32_t pca; 00065 00066 typedef uint32_t _serial_type; 00067 uint32_t serial; 00068 00069 typedef uint32_t _firmware_major_type; 00070 uint32_t firmware_major; 00071 00072 typedef uint32_t _firmware_minor_type; 00073 uint32_t firmware_minor; 00074 00075 typedef double _board_resistance_type; 00076 double board_resistance; 00077 00078 typedef double _max_pwm_ratio_type; 00079 double max_pwm_ratio; 00080 00081 typedef double _hw_max_current_type; 00082 double hw_max_current; 00083 00084 typedef uint8_t _poor_measured_motor_voltage_type; 00085 uint8_t poor_measured_motor_voltage; 00086 00087 00088 private: 00089 static const char* __s_getDataType_() { return "ethercat_hardware/BoardInfo"; } 00090 public: 00091 ROS_DEPRECATED static const std::string __s_getDataType() { return __s_getDataType_(); } 00092 00093 ROS_DEPRECATED const std::string __getDataType() const { return __s_getDataType_(); } 00094 00095 private: 00096 static const char* __s_getMD5Sum_() { return "ffcb87ef2725c5fab7d0d8fcd4c7e7bc"; } 00097 public: 00098 ROS_DEPRECATED static const std::string __s_getMD5Sum() { return __s_getMD5Sum_(); } 00099 00100 ROS_DEPRECATED const std::string __getMD5Sum() const { return __s_getMD5Sum_(); } 00101 00102 private: 00103 static const char* __s_getMessageDefinition_() { return "string description\n\ 00104 uint32 product_code\n\ 00105 uint32 pcb\n\ 00106 uint32 pca\n\ 00107 uint32 serial\n\ 00108 uint32 firmware_major\n\ 00109 uint32 firmware_minor\n\ 00110 float64 board_resistance\n\ 00111 float64 max_pwm_ratio\n\ 00112 float64 hw_max_current\n\ 00113 bool poor_measured_motor_voltage\n\ 00114 "; } 00115 public: 00116 ROS_DEPRECATED static const std::string __s_getMessageDefinition() { return __s_getMessageDefinition_(); } 00117 00118 ROS_DEPRECATED const std::string __getMessageDefinition() const { return __s_getMessageDefinition_(); } 00119 00120 ROS_DEPRECATED virtual uint8_t *serialize(uint8_t *write_ptr, uint32_t seq) const 00121 { 00122 ros::serialization::OStream stream(write_ptr, 1000000000); 00123 ros::serialization::serialize(stream, description); 00124 ros::serialization::serialize(stream, product_code); 00125 ros::serialization::serialize(stream, pcb); 00126 ros::serialization::serialize(stream, pca); 00127 ros::serialization::serialize(stream, serial); 00128 ros::serialization::serialize(stream, firmware_major); 00129 ros::serialization::serialize(stream, firmware_minor); 00130 ros::serialization::serialize(stream, board_resistance); 00131 ros::serialization::serialize(stream, max_pwm_ratio); 00132 ros::serialization::serialize(stream, hw_max_current); 00133 ros::serialization::serialize(stream, poor_measured_motor_voltage); 00134 return stream.getData(); 00135 } 00136 00137 ROS_DEPRECATED virtual uint8_t *deserialize(uint8_t *read_ptr) 00138 { 00139 ros::serialization::IStream stream(read_ptr, 1000000000); 00140 ros::serialization::deserialize(stream, description); 00141 ros::serialization::deserialize(stream, product_code); 00142 ros::serialization::deserialize(stream, pcb); 00143 ros::serialization::deserialize(stream, pca); 00144 ros::serialization::deserialize(stream, serial); 00145 ros::serialization::deserialize(stream, firmware_major); 00146 ros::serialization::deserialize(stream, firmware_minor); 00147 ros::serialization::deserialize(stream, board_resistance); 00148 ros::serialization::deserialize(stream, max_pwm_ratio); 00149 ros::serialization::deserialize(stream, hw_max_current); 00150 ros::serialization::deserialize(stream, poor_measured_motor_voltage); 00151 return stream.getData(); 00152 } 00153 00154 ROS_DEPRECATED virtual uint32_t serializationLength() const 00155 { 00156 uint32_t size = 0; 00157 size += ros::serialization::serializationLength(description); 00158 size += ros::serialization::serializationLength(product_code); 00159 size += ros::serialization::serializationLength(pcb); 00160 size += ros::serialization::serializationLength(pca); 00161 size += ros::serialization::serializationLength(serial); 00162 size += ros::serialization::serializationLength(firmware_major); 00163 size += ros::serialization::serializationLength(firmware_minor); 00164 size += ros::serialization::serializationLength(board_resistance); 00165 size += ros::serialization::serializationLength(max_pwm_ratio); 00166 size += ros::serialization::serializationLength(hw_max_current); 00167 size += ros::serialization::serializationLength(poor_measured_motor_voltage); 00168 return size; 00169 } 00170 00171 typedef boost::shared_ptr< ::ethercat_hardware::BoardInfo_<ContainerAllocator> > Ptr; 00172 typedef boost::shared_ptr< ::ethercat_hardware::BoardInfo_<ContainerAllocator> const> ConstPtr; 00173 boost::shared_ptr<std::map<std::string, std::string> > __connection_header; 00174 }; // struct BoardInfo 00175 typedef ::ethercat_hardware::BoardInfo_<std::allocator<void> > BoardInfo; 00176 00177 typedef boost::shared_ptr< ::ethercat_hardware::BoardInfo> BoardInfoPtr; 00178 typedef boost::shared_ptr< ::ethercat_hardware::BoardInfo const> BoardInfoConstPtr; 00179 00180 00181 template<typename ContainerAllocator> 00182 std::ostream& operator<<(std::ostream& s, const ::ethercat_hardware::BoardInfo_<ContainerAllocator> & v) 00183 { 00184 ros::message_operations::Printer< ::ethercat_hardware::BoardInfo_<ContainerAllocator> >::stream(s, "", v); 00185 return s;} 00186 00187 } // namespace ethercat_hardware 00188 00189 namespace ros 00190 { 00191 namespace message_traits 00192 { 00193 template<class ContainerAllocator> struct IsMessage< ::ethercat_hardware::BoardInfo_<ContainerAllocator> > : public TrueType {}; 00194 template<class ContainerAllocator> struct IsMessage< ::ethercat_hardware::BoardInfo_<ContainerAllocator> const> : public TrueType {}; 00195 template<class ContainerAllocator> 00196 struct MD5Sum< ::ethercat_hardware::BoardInfo_<ContainerAllocator> > { 00197 static const char* value() 00198 { 00199 return "ffcb87ef2725c5fab7d0d8fcd4c7e7bc"; 00200 } 00201 00202 static const char* value(const ::ethercat_hardware::BoardInfo_<ContainerAllocator> &) { return value(); } 00203 static const uint64_t static_value1 = 0xffcb87ef2725c5faULL; 00204 static const uint64_t static_value2 = 0xb7d0d8fcd4c7e7bcULL; 00205 }; 00206 00207 template<class ContainerAllocator> 00208 struct DataType< ::ethercat_hardware::BoardInfo_<ContainerAllocator> > { 00209 static const char* value() 00210 { 00211 return "ethercat_hardware/BoardInfo"; 00212 } 00213 00214 static const char* value(const ::ethercat_hardware::BoardInfo_<ContainerAllocator> &) { return value(); } 00215 }; 00216 00217 template<class ContainerAllocator> 00218 struct Definition< ::ethercat_hardware::BoardInfo_<ContainerAllocator> > { 00219 static const char* value() 00220 { 00221 return "string description\n\ 00222 uint32 product_code\n\ 00223 uint32 pcb\n\ 00224 uint32 pca\n\ 00225 uint32 serial\n\ 00226 uint32 firmware_major\n\ 00227 uint32 firmware_minor\n\ 00228 float64 board_resistance\n\ 00229 float64 max_pwm_ratio\n\ 00230 float64 hw_max_current\n\ 00231 bool poor_measured_motor_voltage\n\ 00232 "; 00233 } 00234 00235 static const char* value(const ::ethercat_hardware::BoardInfo_<ContainerAllocator> &) { return value(); } 00236 }; 00237 00238 } // namespace message_traits 00239 } // namespace ros 00240 00241 namespace ros 00242 { 00243 namespace serialization 00244 { 00245 00246 template<class ContainerAllocator> struct Serializer< ::ethercat_hardware::BoardInfo_<ContainerAllocator> > 00247 { 00248 template<typename Stream, typename T> inline static void allInOne(Stream& stream, T m) 00249 { 00250 stream.next(m.description); 00251 stream.next(m.product_code); 00252 stream.next(m.pcb); 00253 stream.next(m.pca); 00254 stream.next(m.serial); 00255 stream.next(m.firmware_major); 00256 stream.next(m.firmware_minor); 00257 stream.next(m.board_resistance); 00258 stream.next(m.max_pwm_ratio); 00259 stream.next(m.hw_max_current); 00260 stream.next(m.poor_measured_motor_voltage); 00261 } 00262 00263 ROS_DECLARE_ALLINONE_SERIALIZER; 00264 }; // struct BoardInfo_ 00265 } // namespace serialization 00266 } // namespace ros 00267 00268 namespace ros 00269 { 00270 namespace message_operations 00271 { 00272 00273 template<class ContainerAllocator> 00274 struct Printer< ::ethercat_hardware::BoardInfo_<ContainerAllocator> > 00275 { 00276 template<typename Stream> static void stream(Stream& s, const std::string& indent, const ::ethercat_hardware::BoardInfo_<ContainerAllocator> & v) 00277 { 00278 s << indent << "description: "; 00279 Printer<std::basic_string<char, std::char_traits<char>, typename ContainerAllocator::template rebind<char>::other > >::stream(s, indent + " ", v.description); 00280 s << indent << "product_code: "; 00281 Printer<uint32_t>::stream(s, indent + " ", v.product_code); 00282 s << indent << "pcb: "; 00283 Printer<uint32_t>::stream(s, indent + " ", v.pcb); 00284 s << indent << "pca: "; 00285 Printer<uint32_t>::stream(s, indent + " ", v.pca); 00286 s << indent << "serial: "; 00287 Printer<uint32_t>::stream(s, indent + " ", v.serial); 00288 s << indent << "firmware_major: "; 00289 Printer<uint32_t>::stream(s, indent + " ", v.firmware_major); 00290 s << indent << "firmware_minor: "; 00291 Printer<uint32_t>::stream(s, indent + " ", v.firmware_minor); 00292 s << indent << "board_resistance: "; 00293 Printer<double>::stream(s, indent + " ", v.board_resistance); 00294 s << indent << "max_pwm_ratio: "; 00295 Printer<double>::stream(s, indent + " ", v.max_pwm_ratio); 00296 s << indent << "hw_max_current: "; 00297 Printer<double>::stream(s, indent + " ", v.hw_max_current); 00298 s << indent << "poor_measured_motor_voltage: "; 00299 Printer<uint8_t>::stream(s, indent + " ", v.poor_measured_motor_voltage); 00300 } 00301 }; 00302 00303 00304 } // namespace message_operations 00305 } // namespace ros 00306 00307 #endif // ETHERCAT_HARDWARE_MESSAGE_BOARDINFO_H 00308