rosserial library for mbed Inspired by nucho's rosserial library This library is still under development
Dependents: mbed_roshydro_test
Library still under development!
moveit_msgs/TrajectoryConstraints.h@0:30537dec6e0b, 2015-02-15 (annotated)
- Committer:
- akashvibhute
- Date:
- Sun Feb 15 10:53:43 2015 +0000
- Revision:
- 0:30537dec6e0b
First commit; Library still need to be debugged, compilation issues with new mbed and modserial updates.
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
akashvibhute | 0:30537dec6e0b | 1 | #ifndef _ROS_moveit_msgs_TrajectoryConstraints_h |
akashvibhute | 0:30537dec6e0b | 2 | #define _ROS_moveit_msgs_TrajectoryConstraints_h |
akashvibhute | 0:30537dec6e0b | 3 | |
akashvibhute | 0:30537dec6e0b | 4 | #include <stdint.h> |
akashvibhute | 0:30537dec6e0b | 5 | #include <string.h> |
akashvibhute | 0:30537dec6e0b | 6 | #include <stdlib.h> |
akashvibhute | 0:30537dec6e0b | 7 | #include "ros/msg.h" |
akashvibhute | 0:30537dec6e0b | 8 | #include "moveit_msgs/Constraints.h" |
akashvibhute | 0:30537dec6e0b | 9 | |
akashvibhute | 0:30537dec6e0b | 10 | namespace moveit_msgs |
akashvibhute | 0:30537dec6e0b | 11 | { |
akashvibhute | 0:30537dec6e0b | 12 | |
akashvibhute | 0:30537dec6e0b | 13 | class TrajectoryConstraints : public ros::Msg |
akashvibhute | 0:30537dec6e0b | 14 | { |
akashvibhute | 0:30537dec6e0b | 15 | public: |
akashvibhute | 0:30537dec6e0b | 16 | uint8_t constraints_length; |
akashvibhute | 0:30537dec6e0b | 17 | moveit_msgs::Constraints st_constraints; |
akashvibhute | 0:30537dec6e0b | 18 | moveit_msgs::Constraints * constraints; |
akashvibhute | 0:30537dec6e0b | 19 | |
akashvibhute | 0:30537dec6e0b | 20 | TrajectoryConstraints(): |
akashvibhute | 0:30537dec6e0b | 21 | constraints_length(0), constraints(NULL) |
akashvibhute | 0:30537dec6e0b | 22 | { |
akashvibhute | 0:30537dec6e0b | 23 | } |
akashvibhute | 0:30537dec6e0b | 24 | |
akashvibhute | 0:30537dec6e0b | 25 | virtual int serialize(unsigned char *outbuffer) const |
akashvibhute | 0:30537dec6e0b | 26 | { |
akashvibhute | 0:30537dec6e0b | 27 | int offset = 0; |
akashvibhute | 0:30537dec6e0b | 28 | *(outbuffer + offset++) = constraints_length; |
akashvibhute | 0:30537dec6e0b | 29 | *(outbuffer + offset++) = 0; |
akashvibhute | 0:30537dec6e0b | 30 | *(outbuffer + offset++) = 0; |
akashvibhute | 0:30537dec6e0b | 31 | *(outbuffer + offset++) = 0; |
akashvibhute | 0:30537dec6e0b | 32 | for( uint8_t i = 0; i < constraints_length; i++){ |
akashvibhute | 0:30537dec6e0b | 33 | offset += this->constraints[i].serialize(outbuffer + offset); |
akashvibhute | 0:30537dec6e0b | 34 | } |
akashvibhute | 0:30537dec6e0b | 35 | return offset; |
akashvibhute | 0:30537dec6e0b | 36 | } |
akashvibhute | 0:30537dec6e0b | 37 | |
akashvibhute | 0:30537dec6e0b | 38 | virtual int deserialize(unsigned char *inbuffer) |
akashvibhute | 0:30537dec6e0b | 39 | { |
akashvibhute | 0:30537dec6e0b | 40 | int offset = 0; |
akashvibhute | 0:30537dec6e0b | 41 | uint8_t constraints_lengthT = *(inbuffer + offset++); |
akashvibhute | 0:30537dec6e0b | 42 | if(constraints_lengthT > constraints_length) |
akashvibhute | 0:30537dec6e0b | 43 | this->constraints = (moveit_msgs::Constraints*)realloc(this->constraints, constraints_lengthT * sizeof(moveit_msgs::Constraints)); |
akashvibhute | 0:30537dec6e0b | 44 | offset += 3; |
akashvibhute | 0:30537dec6e0b | 45 | constraints_length = constraints_lengthT; |
akashvibhute | 0:30537dec6e0b | 46 | for( uint8_t i = 0; i < constraints_length; i++){ |
akashvibhute | 0:30537dec6e0b | 47 | offset += this->st_constraints.deserialize(inbuffer + offset); |
akashvibhute | 0:30537dec6e0b | 48 | memcpy( &(this->constraints[i]), &(this->st_constraints), sizeof(moveit_msgs::Constraints)); |
akashvibhute | 0:30537dec6e0b | 49 | } |
akashvibhute | 0:30537dec6e0b | 50 | return offset; |
akashvibhute | 0:30537dec6e0b | 51 | } |
akashvibhute | 0:30537dec6e0b | 52 | |
akashvibhute | 0:30537dec6e0b | 53 | const char * getType(){ return "moveit_msgs/TrajectoryConstraints"; }; |
akashvibhute | 0:30537dec6e0b | 54 | const char * getMD5(){ return "461e1a732dfebb01e7d6c75d51a51eac"; }; |
akashvibhute | 0:30537dec6e0b | 55 | |
akashvibhute | 0:30537dec6e0b | 56 | }; |
akashvibhute | 0:30537dec6e0b | 57 | |
akashvibhute | 0:30537dec6e0b | 58 | } |
akashvibhute | 0:30537dec6e0b | 59 | #endif |