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.
Dependents: rosserial_mbed robot_S2
std_msgs/Int16.h@3:1cf99502f396, 2011-11-12 (annotated)
- Committer:
- nucho
- Date:
- Sat Nov 12 23:54:45 2011 +0000
- Revision:
- 3:1cf99502f396
- Parent:
- 1:ff0ec969dad1
This program supported the revision of 167 of rosserial.
Who changed what in which revision?
| User | Revision | Line number | New contents of line |
|---|---|---|---|
| nucho | 3:1cf99502f396 | 1 | #ifndef _ROS_std_msgs_Int16_h |
| nucho | 3:1cf99502f396 | 2 | #define _ROS_std_msgs_Int16_h |
| nucho | 3:1cf99502f396 | 3 | |
| nucho | 3:1cf99502f396 | 4 | #include <stdint.h> |
| nucho | 3:1cf99502f396 | 5 | #include <string.h> |
| nucho | 3:1cf99502f396 | 6 | #include <stdlib.h> |
| nucho | 3:1cf99502f396 | 7 | #include "ros/msg.h" |
| nucho | 3:1cf99502f396 | 8 | |
| nucho | 3:1cf99502f396 | 9 | namespace std_msgs |
| nucho | 3:1cf99502f396 | 10 | { |
| nucho | 3:1cf99502f396 | 11 | |
| nucho | 3:1cf99502f396 | 12 | class Int16 : public ros::Msg |
| nucho | 3:1cf99502f396 | 13 | { |
| nucho | 3:1cf99502f396 | 14 | public: |
| nucho | 3:1cf99502f396 | 15 | int16_t data; |
| nucho | 3:1cf99502f396 | 16 | |
| nucho | 3:1cf99502f396 | 17 | virtual int serialize(unsigned char *outbuffer) const |
| nucho | 3:1cf99502f396 | 18 | { |
| nucho | 3:1cf99502f396 | 19 | int offset = 0; |
| nucho | 3:1cf99502f396 | 20 | union { |
| nucho | 3:1cf99502f396 | 21 | int16_t real; |
| nucho | 3:1cf99502f396 | 22 | uint16_t base; |
| nucho | 3:1cf99502f396 | 23 | } u_data; |
| nucho | 3:1cf99502f396 | 24 | u_data.real = this->data; |
| nucho | 3:1cf99502f396 | 25 | *(outbuffer + offset + 0) = (u_data.base >> (8 * 0)) & 0xFF; |
| nucho | 3:1cf99502f396 | 26 | *(outbuffer + offset + 1) = (u_data.base >> (8 * 1)) & 0xFF; |
| nucho | 3:1cf99502f396 | 27 | offset += sizeof(this->data); |
| nucho | 3:1cf99502f396 | 28 | return offset; |
| nucho | 3:1cf99502f396 | 29 | } |
| nucho | 3:1cf99502f396 | 30 | |
| nucho | 3:1cf99502f396 | 31 | virtual int deserialize(unsigned char *inbuffer) |
| nucho | 3:1cf99502f396 | 32 | { |
| nucho | 3:1cf99502f396 | 33 | int offset = 0; |
| nucho | 3:1cf99502f396 | 34 | union { |
| nucho | 3:1cf99502f396 | 35 | int16_t real; |
| nucho | 3:1cf99502f396 | 36 | uint16_t base; |
| nucho | 3:1cf99502f396 | 37 | } u_data; |
| nucho | 3:1cf99502f396 | 38 | u_data.base = 0; |
| nucho | 3:1cf99502f396 | 39 | u_data.base |= ((uint16_t) (*(inbuffer + offset + 0))) << (8 * 0); |
| nucho | 3:1cf99502f396 | 40 | u_data.base |= ((uint16_t) (*(inbuffer + offset + 1))) << (8 * 1); |
| nucho | 3:1cf99502f396 | 41 | this->data = u_data.real; |
| nucho | 3:1cf99502f396 | 42 | offset += sizeof(this->data); |
| nucho | 3:1cf99502f396 | 43 | return offset; |
| nucho | 3:1cf99502f396 | 44 | } |
| nucho | 3:1cf99502f396 | 45 | |
| nucho | 3:1cf99502f396 | 46 | virtual const char * getType(){ return "std_msgs/Int16"; }; |
| nucho | 3:1cf99502f396 | 47 | virtual const char * getMD5(){ return "8524586e34fbd7cb1c08c5f5f1ca0e57"; }; |
| nucho | 3:1cf99502f396 | 48 | |
| nucho | 3:1cf99502f396 | 49 | }; |
| nucho | 3:1cf99502f396 | 50 | |
| nucho | 3:1cf99502f396 | 51 | } |
| nucho | 0:77afd7560544 | 52 | #endif |