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
std_msgs/Int8.h@0:77afd7560544, 2011-08-19 (annotated)
- Committer:
- nucho
- Date:
- Fri Aug 19 09:06:30 2011 +0000
- Revision:
- 0:77afd7560544
- Child:
- 1:ff0ec969dad1
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
nucho | 0:77afd7560544 | 1 | #ifndef ros_Int8_h |
nucho | 0:77afd7560544 | 2 | #define ros_Int8_h |
nucho | 0:77afd7560544 | 3 | |
nucho | 0:77afd7560544 | 4 | #include <stdint.h> |
nucho | 0:77afd7560544 | 5 | #include <string.h> |
nucho | 0:77afd7560544 | 6 | #include <stdlib.h> |
nucho | 0:77afd7560544 | 7 | #include "../ros/msg.h" |
nucho | 0:77afd7560544 | 8 | |
nucho | 0:77afd7560544 | 9 | namespace std_msgs |
nucho | 0:77afd7560544 | 10 | { |
nucho | 0:77afd7560544 | 11 | |
nucho | 0:77afd7560544 | 12 | class Int8 : public ros::Msg |
nucho | 0:77afd7560544 | 13 | { |
nucho | 0:77afd7560544 | 14 | public: |
nucho | 0:77afd7560544 | 15 | signed char data; |
nucho | 0:77afd7560544 | 16 | |
nucho | 0:77afd7560544 | 17 | virtual int serialize(unsigned char *outbuffer) |
nucho | 0:77afd7560544 | 18 | { |
nucho | 0:77afd7560544 | 19 | int offset = 0; |
nucho | 0:77afd7560544 | 20 | union { |
nucho | 0:77afd7560544 | 21 | signed char real; |
nucho | 0:77afd7560544 | 22 | unsigned char base; |
nucho | 0:77afd7560544 | 23 | } u_data; |
nucho | 0:77afd7560544 | 24 | u_data.real = this->data; |
nucho | 0:77afd7560544 | 25 | *(outbuffer + offset + 0) = (u_data.base >> (8 * 0)) & 0xFF; |
nucho | 0:77afd7560544 | 26 | offset += sizeof(this->data); |
nucho | 0:77afd7560544 | 27 | return offset; |
nucho | 0:77afd7560544 | 28 | } |
nucho | 0:77afd7560544 | 29 | |
nucho | 0:77afd7560544 | 30 | virtual int deserialize(unsigned char *inbuffer) |
nucho | 0:77afd7560544 | 31 | { |
nucho | 0:77afd7560544 | 32 | int offset = 0; |
nucho | 0:77afd7560544 | 33 | union { |
nucho | 0:77afd7560544 | 34 | signed char real; |
nucho | 0:77afd7560544 | 35 | unsigned char base; |
nucho | 0:77afd7560544 | 36 | } u_data; |
nucho | 0:77afd7560544 | 37 | u_data.base = 0; |
nucho | 0:77afd7560544 | 38 | u_data.base |= ((typeof(u_data.base)) (*(inbuffer + offset + 0))) << (8 * 0); |
nucho | 0:77afd7560544 | 39 | this->data = u_data.real; |
nucho | 0:77afd7560544 | 40 | offset += sizeof(this->data); |
nucho | 0:77afd7560544 | 41 | return offset; |
nucho | 0:77afd7560544 | 42 | } |
nucho | 0:77afd7560544 | 43 | |
nucho | 0:77afd7560544 | 44 | virtual const char * getType(){ return "std_msgs/Int8"; }; |
nucho | 0:77afd7560544 | 45 | |
nucho | 0:77afd7560544 | 46 | }; |
nucho | 0:77afd7560544 | 47 | |
nucho | 0:77afd7560544 | 48 | } |
nucho | 0:77afd7560544 | 49 | #endif |