Just changed OUTPUT_SIZE and INPUT_SIZE in ros/node_handle.h

Dependencies:   BufferedSerial

Dependents:   WRS2020_mecanum_node

Committer:
sgrsn
Date:
Mon Nov 02 09:00:01 2020 +0000
Revision:
2:5d429be7d0aa
Parent:
0:04ac6be8229a
Change INPUT_SIZE and OUTPUT_SIZE on node_handle.h to pub sub

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Gary Servin 0:04ac6be8229a 1 #ifndef _ROS_sensor_msgs_JoyFeedbackArray_h
Gary Servin 0:04ac6be8229a 2 #define _ROS_sensor_msgs_JoyFeedbackArray_h
Gary Servin 0:04ac6be8229a 3
Gary Servin 0:04ac6be8229a 4 #include <stdint.h>
Gary Servin 0:04ac6be8229a 5 #include <string.h>
Gary Servin 0:04ac6be8229a 6 #include <stdlib.h>
Gary Servin 0:04ac6be8229a 7 #include "ros/msg.h"
Gary Servin 0:04ac6be8229a 8 #include "sensor_msgs/JoyFeedback.h"
Gary Servin 0:04ac6be8229a 9
Gary Servin 0:04ac6be8229a 10 namespace sensor_msgs
Gary Servin 0:04ac6be8229a 11 {
Gary Servin 0:04ac6be8229a 12
Gary Servin 0:04ac6be8229a 13 class JoyFeedbackArray : public ros::Msg
Gary Servin 0:04ac6be8229a 14 {
Gary Servin 0:04ac6be8229a 15 public:
Gary Servin 0:04ac6be8229a 16 uint32_t array_length;
Gary Servin 0:04ac6be8229a 17 typedef sensor_msgs::JoyFeedback _array_type;
Gary Servin 0:04ac6be8229a 18 _array_type st_array;
Gary Servin 0:04ac6be8229a 19 _array_type * array;
Gary Servin 0:04ac6be8229a 20
Gary Servin 0:04ac6be8229a 21 JoyFeedbackArray():
Gary Servin 0:04ac6be8229a 22 array_length(0), array(NULL)
Gary Servin 0:04ac6be8229a 23 {
Gary Servin 0:04ac6be8229a 24 }
Gary Servin 0:04ac6be8229a 25
Gary Servin 0:04ac6be8229a 26 virtual int serialize(unsigned char *outbuffer) const
Gary Servin 0:04ac6be8229a 27 {
Gary Servin 0:04ac6be8229a 28 int offset = 0;
Gary Servin 0:04ac6be8229a 29 *(outbuffer + offset + 0) = (this->array_length >> (8 * 0)) & 0xFF;
Gary Servin 0:04ac6be8229a 30 *(outbuffer + offset + 1) = (this->array_length >> (8 * 1)) & 0xFF;
Gary Servin 0:04ac6be8229a 31 *(outbuffer + offset + 2) = (this->array_length >> (8 * 2)) & 0xFF;
Gary Servin 0:04ac6be8229a 32 *(outbuffer + offset + 3) = (this->array_length >> (8 * 3)) & 0xFF;
Gary Servin 0:04ac6be8229a 33 offset += sizeof(this->array_length);
Gary Servin 0:04ac6be8229a 34 for( uint32_t i = 0; i < array_length; i++){
Gary Servin 0:04ac6be8229a 35 offset += this->array[i].serialize(outbuffer + offset);
Gary Servin 0:04ac6be8229a 36 }
Gary Servin 0:04ac6be8229a 37 return offset;
Gary Servin 0:04ac6be8229a 38 }
Gary Servin 0:04ac6be8229a 39
Gary Servin 0:04ac6be8229a 40 virtual int deserialize(unsigned char *inbuffer)
Gary Servin 0:04ac6be8229a 41 {
Gary Servin 0:04ac6be8229a 42 int offset = 0;
Gary Servin 0:04ac6be8229a 43 uint32_t array_lengthT = ((uint32_t) (*(inbuffer + offset)));
Gary Servin 0:04ac6be8229a 44 array_lengthT |= ((uint32_t) (*(inbuffer + offset + 1))) << (8 * 1);
Gary Servin 0:04ac6be8229a 45 array_lengthT |= ((uint32_t) (*(inbuffer + offset + 2))) << (8 * 2);
Gary Servin 0:04ac6be8229a 46 array_lengthT |= ((uint32_t) (*(inbuffer + offset + 3))) << (8 * 3);
Gary Servin 0:04ac6be8229a 47 offset += sizeof(this->array_length);
Gary Servin 0:04ac6be8229a 48 if(array_lengthT > array_length)
Gary Servin 0:04ac6be8229a 49 this->array = (sensor_msgs::JoyFeedback*)realloc(this->array, array_lengthT * sizeof(sensor_msgs::JoyFeedback));
Gary Servin 0:04ac6be8229a 50 array_length = array_lengthT;
Gary Servin 0:04ac6be8229a 51 for( uint32_t i = 0; i < array_length; i++){
Gary Servin 0:04ac6be8229a 52 offset += this->st_array.deserialize(inbuffer + offset);
Gary Servin 0:04ac6be8229a 53 memcpy( &(this->array[i]), &(this->st_array), sizeof(sensor_msgs::JoyFeedback));
Gary Servin 0:04ac6be8229a 54 }
Gary Servin 0:04ac6be8229a 55 return offset;
Gary Servin 0:04ac6be8229a 56 }
Gary Servin 0:04ac6be8229a 57
Gary Servin 0:04ac6be8229a 58 const char * getType(){ return "sensor_msgs/JoyFeedbackArray"; };
Gary Servin 0:04ac6be8229a 59 const char * getMD5(){ return "cde5730a895b1fc4dee6f91b754b213d"; };
Gary Servin 0:04ac6be8229a 60
Gary Servin 0:04ac6be8229a 61 };
Gary Servin 0:04ac6be8229a 62
Gary Servin 0:04ac6be8229a 63 }
Gary Servin 0:04ac6be8229a 64 #endif