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_LaserEcho_h
Gary Servin 0:04ac6be8229a 2 #define _ROS_sensor_msgs_LaserEcho_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
Gary Servin 0:04ac6be8229a 9 namespace sensor_msgs
Gary Servin 0:04ac6be8229a 10 {
Gary Servin 0:04ac6be8229a 11
Gary Servin 0:04ac6be8229a 12 class LaserEcho : public ros::Msg
Gary Servin 0:04ac6be8229a 13 {
Gary Servin 0:04ac6be8229a 14 public:
Gary Servin 0:04ac6be8229a 15 uint32_t echoes_length;
Gary Servin 0:04ac6be8229a 16 typedef float _echoes_type;
Gary Servin 0:04ac6be8229a 17 _echoes_type st_echoes;
Gary Servin 0:04ac6be8229a 18 _echoes_type * echoes;
Gary Servin 0:04ac6be8229a 19
Gary Servin 0:04ac6be8229a 20 LaserEcho():
Gary Servin 0:04ac6be8229a 21 echoes_length(0), echoes(NULL)
Gary Servin 0:04ac6be8229a 22 {
Gary Servin 0:04ac6be8229a 23 }
Gary Servin 0:04ac6be8229a 24
Gary Servin 0:04ac6be8229a 25 virtual int serialize(unsigned char *outbuffer) const
Gary Servin 0:04ac6be8229a 26 {
Gary Servin 0:04ac6be8229a 27 int offset = 0;
Gary Servin 0:04ac6be8229a 28 *(outbuffer + offset + 0) = (this->echoes_length >> (8 * 0)) & 0xFF;
Gary Servin 0:04ac6be8229a 29 *(outbuffer + offset + 1) = (this->echoes_length >> (8 * 1)) & 0xFF;
Gary Servin 0:04ac6be8229a 30 *(outbuffer + offset + 2) = (this->echoes_length >> (8 * 2)) & 0xFF;
Gary Servin 0:04ac6be8229a 31 *(outbuffer + offset + 3) = (this->echoes_length >> (8 * 3)) & 0xFF;
Gary Servin 0:04ac6be8229a 32 offset += sizeof(this->echoes_length);
Gary Servin 0:04ac6be8229a 33 for( uint32_t i = 0; i < echoes_length; i++){
Gary Servin 0:04ac6be8229a 34 union {
Gary Servin 0:04ac6be8229a 35 float real;
Gary Servin 0:04ac6be8229a 36 uint32_t base;
Gary Servin 0:04ac6be8229a 37 } u_echoesi;
Gary Servin 0:04ac6be8229a 38 u_echoesi.real = this->echoes[i];
Gary Servin 0:04ac6be8229a 39 *(outbuffer + offset + 0) = (u_echoesi.base >> (8 * 0)) & 0xFF;
Gary Servin 0:04ac6be8229a 40 *(outbuffer + offset + 1) = (u_echoesi.base >> (8 * 1)) & 0xFF;
Gary Servin 0:04ac6be8229a 41 *(outbuffer + offset + 2) = (u_echoesi.base >> (8 * 2)) & 0xFF;
Gary Servin 0:04ac6be8229a 42 *(outbuffer + offset + 3) = (u_echoesi.base >> (8 * 3)) & 0xFF;
Gary Servin 0:04ac6be8229a 43 offset += sizeof(this->echoes[i]);
Gary Servin 0:04ac6be8229a 44 }
Gary Servin 0:04ac6be8229a 45 return offset;
Gary Servin 0:04ac6be8229a 46 }
Gary Servin 0:04ac6be8229a 47
Gary Servin 0:04ac6be8229a 48 virtual int deserialize(unsigned char *inbuffer)
Gary Servin 0:04ac6be8229a 49 {
Gary Servin 0:04ac6be8229a 50 int offset = 0;
Gary Servin 0:04ac6be8229a 51 uint32_t echoes_lengthT = ((uint32_t) (*(inbuffer + offset)));
Gary Servin 0:04ac6be8229a 52 echoes_lengthT |= ((uint32_t) (*(inbuffer + offset + 1))) << (8 * 1);
Gary Servin 0:04ac6be8229a 53 echoes_lengthT |= ((uint32_t) (*(inbuffer + offset + 2))) << (8 * 2);
Gary Servin 0:04ac6be8229a 54 echoes_lengthT |= ((uint32_t) (*(inbuffer + offset + 3))) << (8 * 3);
Gary Servin 0:04ac6be8229a 55 offset += sizeof(this->echoes_length);
Gary Servin 0:04ac6be8229a 56 if(echoes_lengthT > echoes_length)
Gary Servin 0:04ac6be8229a 57 this->echoes = (float*)realloc(this->echoes, echoes_lengthT * sizeof(float));
Gary Servin 0:04ac6be8229a 58 echoes_length = echoes_lengthT;
Gary Servin 0:04ac6be8229a 59 for( uint32_t i = 0; i < echoes_length; i++){
Gary Servin 0:04ac6be8229a 60 union {
Gary Servin 0:04ac6be8229a 61 float real;
Gary Servin 0:04ac6be8229a 62 uint32_t base;
Gary Servin 0:04ac6be8229a 63 } u_st_echoes;
Gary Servin 0:04ac6be8229a 64 u_st_echoes.base = 0;
Gary Servin 0:04ac6be8229a 65 u_st_echoes.base |= ((uint32_t) (*(inbuffer + offset + 0))) << (8 * 0);
Gary Servin 0:04ac6be8229a 66 u_st_echoes.base |= ((uint32_t) (*(inbuffer + offset + 1))) << (8 * 1);
Gary Servin 0:04ac6be8229a 67 u_st_echoes.base |= ((uint32_t) (*(inbuffer + offset + 2))) << (8 * 2);
Gary Servin 0:04ac6be8229a 68 u_st_echoes.base |= ((uint32_t) (*(inbuffer + offset + 3))) << (8 * 3);
Gary Servin 0:04ac6be8229a 69 this->st_echoes = u_st_echoes.real;
Gary Servin 0:04ac6be8229a 70 offset += sizeof(this->st_echoes);
Gary Servin 0:04ac6be8229a 71 memcpy( &(this->echoes[i]), &(this->st_echoes), sizeof(float));
Gary Servin 0:04ac6be8229a 72 }
Gary Servin 0:04ac6be8229a 73 return offset;
Gary Servin 0:04ac6be8229a 74 }
Gary Servin 0:04ac6be8229a 75
Gary Servin 0:04ac6be8229a 76 const char * getType(){ return "sensor_msgs/LaserEcho"; };
Gary Servin 0:04ac6be8229a 77 const char * getMD5(){ return "8bc5ae449b200fba4d552b4225586696"; };
Gary Servin 0:04ac6be8229a 78
Gary Servin 0:04ac6be8229a 79 };
Gary Servin 0:04ac6be8229a 80
Gary Servin 0:04ac6be8229a 81 }
Gary Servin 0:04ac6be8229a 82 #endif