This program is porting rosserial_arduino for mbed http://www.ros.org/wiki/rosserial_arduino This program supported the revision of 169 of rosserial.

Dependencies:  

Dependents:   rosserial_mbed robot_S2

Committer:
nucho
Date:
Wed Feb 29 23:00:21 2012 +0000
Revision:
4:684f39d0c346
Parent:
3:1cf99502f396

        

Who changed what in which revision?

UserRevisionLine numberNew contents of line
nucho 3:1cf99502f396 1 #ifndef _ROS_std_msgs_Int32MultiArray_h
nucho 3:1cf99502f396 2 #define _ROS_std_msgs_Int32MultiArray_h
nucho 3:1cf99502f396 3
nucho 3:1cf99502f396 4 #include <stdint.h>
nucho 3:1cf99502f396 5 #include <string.h>
nucho 3:1cf99502f396 6 #include <stdlib.h>
nucho 3:1cf99502f396 7 #include "ros/msg.h"
nucho 3:1cf99502f396 8 #include "std_msgs/MultiArrayLayout.h"
nucho 3:1cf99502f396 9
nucho 3:1cf99502f396 10 namespace std_msgs
nucho 3:1cf99502f396 11 {
nucho 3:1cf99502f396 12
nucho 3:1cf99502f396 13 class Int32MultiArray : public ros::Msg
nucho 3:1cf99502f396 14 {
nucho 3:1cf99502f396 15 public:
nucho 3:1cf99502f396 16 std_msgs::MultiArrayLayout layout;
nucho 3:1cf99502f396 17 uint8_t data_length;
nucho 3:1cf99502f396 18 int32_t st_data;
nucho 3:1cf99502f396 19 int32_t * data;
nucho 3:1cf99502f396 20
nucho 3:1cf99502f396 21 virtual int serialize(unsigned char *outbuffer) const
nucho 3:1cf99502f396 22 {
nucho 3:1cf99502f396 23 int offset = 0;
nucho 3:1cf99502f396 24 offset += this->layout.serialize(outbuffer + offset);
nucho 3:1cf99502f396 25 *(outbuffer + offset++) = data_length;
nucho 3:1cf99502f396 26 *(outbuffer + offset++) = 0;
nucho 3:1cf99502f396 27 *(outbuffer + offset++) = 0;
nucho 3:1cf99502f396 28 *(outbuffer + offset++) = 0;
nucho 3:1cf99502f396 29 for( uint8_t i = 0; i < data_length; i++){
nucho 3:1cf99502f396 30 union {
nucho 3:1cf99502f396 31 int32_t real;
nucho 3:1cf99502f396 32 uint32_t base;
nucho 3:1cf99502f396 33 } u_datai;
nucho 3:1cf99502f396 34 u_datai.real = this->data[i];
nucho 3:1cf99502f396 35 *(outbuffer + offset + 0) = (u_datai.base >> (8 * 0)) & 0xFF;
nucho 3:1cf99502f396 36 *(outbuffer + offset + 1) = (u_datai.base >> (8 * 1)) & 0xFF;
nucho 3:1cf99502f396 37 *(outbuffer + offset + 2) = (u_datai.base >> (8 * 2)) & 0xFF;
nucho 3:1cf99502f396 38 *(outbuffer + offset + 3) = (u_datai.base >> (8 * 3)) & 0xFF;
nucho 3:1cf99502f396 39 offset += sizeof(this->data[i]);
nucho 3:1cf99502f396 40 }
nucho 3:1cf99502f396 41 return offset;
nucho 3:1cf99502f396 42 }
nucho 3:1cf99502f396 43
nucho 3:1cf99502f396 44 virtual int deserialize(unsigned char *inbuffer)
nucho 3:1cf99502f396 45 {
nucho 3:1cf99502f396 46 int offset = 0;
nucho 3:1cf99502f396 47 offset += this->layout.deserialize(inbuffer + offset);
nucho 3:1cf99502f396 48 uint8_t data_lengthT = *(inbuffer + offset++);
nucho 3:1cf99502f396 49 if(data_lengthT > data_length)
nucho 3:1cf99502f396 50 this->data = (int32_t*)realloc(this->data, data_lengthT * sizeof(int32_t));
nucho 3:1cf99502f396 51 offset += 3;
nucho 3:1cf99502f396 52 data_length = data_lengthT;
nucho 3:1cf99502f396 53 for( uint8_t i = 0; i < data_length; i++){
nucho 3:1cf99502f396 54 union {
nucho 3:1cf99502f396 55 int32_t real;
nucho 3:1cf99502f396 56 uint32_t base;
nucho 3:1cf99502f396 57 } u_st_data;
nucho 3:1cf99502f396 58 u_st_data.base = 0;
nucho 3:1cf99502f396 59 u_st_data.base |= ((uint32_t) (*(inbuffer + offset + 0))) << (8 * 0);
nucho 3:1cf99502f396 60 u_st_data.base |= ((uint32_t) (*(inbuffer + offset + 1))) << (8 * 1);
nucho 3:1cf99502f396 61 u_st_data.base |= ((uint32_t) (*(inbuffer + offset + 2))) << (8 * 2);
nucho 3:1cf99502f396 62 u_st_data.base |= ((uint32_t) (*(inbuffer + offset + 3))) << (8 * 3);
nucho 3:1cf99502f396 63 this->st_data = u_st_data.real;
nucho 3:1cf99502f396 64 offset += sizeof(this->st_data);
nucho 3:1cf99502f396 65 memcpy( &(this->data[i]), &(this->st_data), sizeof(int32_t));
nucho 3:1cf99502f396 66 }
nucho 3:1cf99502f396 67 return offset;
nucho 3:1cf99502f396 68 }
nucho 3:1cf99502f396 69
nucho 3:1cf99502f396 70 virtual const char * getType(){ return "std_msgs/Int32MultiArray"; };
nucho 3:1cf99502f396 71 virtual const char * getMD5(){ return "1d99f79f8b325b44fee908053e9c945b"; };
nucho 3:1cf99502f396 72
nucho 3:1cf99502f396 73 };
nucho 3:1cf99502f396 74
nucho 3:1cf99502f396 75 }
nucho 0:77afd7560544 76 #endif