Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of rosserial_mbed_lib by
Logger.h
00001 #ifndef _ROS_roscpp_Logger_h 00002 #define _ROS_roscpp_Logger_h 00003 00004 #include <stdint.h> 00005 #include <string.h> 00006 #include <stdlib.h> 00007 #include "ros/msg.h" 00008 00009 namespace roscpp 00010 { 00011 00012 class Logger : public ros::Msg 00013 { 00014 public: 00015 char * name; 00016 char * level; 00017 00018 virtual int serialize(unsigned char *outbuffer) const 00019 { 00020 int offset = 0; 00021 uint32_t length_name = strlen( (const char*) this->name); 00022 memcpy(outbuffer + offset, &length_name, sizeof(uint32_t)); 00023 offset += 4; 00024 memcpy(outbuffer + offset, this->name, length_name); 00025 offset += length_name; 00026 uint32_t length_level = strlen( (const char*) this->level); 00027 memcpy(outbuffer + offset, &length_level, sizeof(uint32_t)); 00028 offset += 4; 00029 memcpy(outbuffer + offset, this->level, length_level); 00030 offset += length_level; 00031 return offset; 00032 } 00033 00034 virtual int deserialize(unsigned char *inbuffer) 00035 { 00036 int offset = 0; 00037 uint32_t length_name; 00038 memcpy(&length_name, (inbuffer + offset), sizeof(uint32_t)); 00039 offset += 4; 00040 for(unsigned int k= offset; k< offset+length_name; ++k){ 00041 inbuffer[k-1]=inbuffer[k]; 00042 } 00043 inbuffer[offset+length_name-1]=0; 00044 this->name = (char *)(inbuffer + offset-1); 00045 offset += length_name; 00046 uint32_t length_level; 00047 memcpy(&length_level, (inbuffer + offset), sizeof(uint32_t)); 00048 offset += 4; 00049 for(unsigned int k= offset; k< offset+length_level; ++k){ 00050 inbuffer[k-1]=inbuffer[k]; 00051 } 00052 inbuffer[offset+length_level-1]=0; 00053 this->level = (char *)(inbuffer + offset-1); 00054 offset += length_level; 00055 return offset; 00056 } 00057 00058 const char * getType(){ return "roscpp/Logger"; }; 00059 const char * getMD5(){ return "a6069a2ff40db7bd32143dd66e1f408e"; }; 00060 00061 }; 00062 00063 } 00064 #endif
Generated on Fri Jul 15 2022 11:14:26 by
1.7.2
