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.
Dependencies: rosserial_mbed_lib mbed Servo
Diff: geometry_msgs/Twist.h
- Revision:
- 0:06fc856e99ca
- Child:
- 1:098e75fd5ad2
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/geometry_msgs/Twist.h Fri Aug 19 09:06:16 2011 +0000
@@ -0,0 +1,40 @@
+#ifndef ros_Twist_h
+#define ros_Twist_h
+
+#include <stdint.h>
+#include <string.h>
+#include <stdlib.h>
+#include "../ros/msg.h"
+#include "geometry_msgs/Vector3.h"
+
+namespace geometry_msgs
+{
+
+ class Twist : public ros::Msg
+ {
+ public:
+ geometry_msgs::Vector3 linear;
+ geometry_msgs::Vector3 angular;
+
+ virtual int serialize(unsigned char *outbuffer)
+ {
+ int offset = 0;
+ offset += this->linear.serialize(outbuffer + offset);
+ offset += this->angular.serialize(outbuffer + offset);
+ return offset;
+ }
+
+ virtual int deserialize(unsigned char *inbuffer)
+ {
+ int offset = 0;
+ offset += this->linear.deserialize(inbuffer + offset);
+ offset += this->angular.deserialize(inbuffer + offset);
+ return offset;
+ }
+
+ virtual const char * getType(){ return "geometry_msgs/Twist"; };
+
+ };
+
+}
+#endif
\ No newline at end of file