rosserial library for mbed Inspired by nucho's rosserial library This library is still under development

Dependencies:   MODSERIAL mbed

Dependents:   mbed_roshydro_test

Library still under development!

Revision:
0:30537dec6e0b
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/moveit_msgs/PlaceFeedback.h	Sun Feb 15 10:53:43 2015 +0000
@@ -0,0 +1,54 @@
+#ifndef _ROS_moveit_msgs_PlaceFeedback_h
+#define _ROS_moveit_msgs_PlaceFeedback_h
+
+#include <stdint.h>
+#include <string.h>
+#include <stdlib.h>
+#include "ros/msg.h"
+
+namespace moveit_msgs
+{
+
+  class PlaceFeedback : public ros::Msg
+  {
+    public:
+      const char* state;
+
+    PlaceFeedback():
+      state("")
+    {
+    }
+
+    virtual int serialize(unsigned char *outbuffer) const
+    {
+      int offset = 0;
+      uint32_t length_state = strlen(this->state);
+      memcpy(outbuffer + offset, &length_state, sizeof(uint32_t));
+      offset += 4;
+      memcpy(outbuffer + offset, this->state, length_state);
+      offset += length_state;
+      return offset;
+    }
+
+    virtual int deserialize(unsigned char *inbuffer)
+    {
+      int offset = 0;
+      uint32_t length_state;
+      memcpy(&length_state, (inbuffer + offset), sizeof(uint32_t));
+      offset += 4;
+      for(unsigned int k= offset; k< offset+length_state; ++k){
+          inbuffer[k-1]=inbuffer[k];
+      }
+      inbuffer[offset+length_state-1]=0;
+      this->state = (char *)(inbuffer + offset-1);
+      offset += length_state;
+     return offset;
+    }
+
+    const char * getType(){ return "moveit_msgs/PlaceFeedback"; };
+    const char * getMD5(){ return "af6d3a99f0fbeb66d3248fa4b3e675fb"; };
+
+  };
+
+}
+#endif