ROS Serial library for Mbed platforms for ROS Melodic Morenia. Check http://wiki.ros.org/rosserial_mbed/ for more information.
actionlib/TwoIntsResult.h@2:4480021e9f58, 2022-08-18 (annotated)
- Committer:
- howanglam3
- Date:
- Thu Aug 18 07:35:12 2022 +0000
- Revision:
- 2:4480021e9f58
- Parent:
- 0:04ac6be8229a
unchanged
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
Gary Servin |
0:04ac6be8229a | 1 | #ifndef _ROS_actionlib_TwoIntsResult_h |
Gary Servin |
0:04ac6be8229a | 2 | #define _ROS_actionlib_TwoIntsResult_h |
Gary Servin |
0:04ac6be8229a | 3 | |
Gary Servin |
0:04ac6be8229a | 4 | #include <stdint.h> |
Gary Servin |
0:04ac6be8229a | 5 | #include <string.h> |
Gary Servin |
0:04ac6be8229a | 6 | #include <stdlib.h> |
Gary Servin |
0:04ac6be8229a | 7 | #include "ros/msg.h" |
Gary Servin |
0:04ac6be8229a | 8 | |
Gary Servin |
0:04ac6be8229a | 9 | namespace actionlib |
Gary Servin |
0:04ac6be8229a | 10 | { |
Gary Servin |
0:04ac6be8229a | 11 | |
Gary Servin |
0:04ac6be8229a | 12 | class TwoIntsResult : public ros::Msg |
Gary Servin |
0:04ac6be8229a | 13 | { |
Gary Servin |
0:04ac6be8229a | 14 | public: |
Gary Servin |
0:04ac6be8229a | 15 | typedef int64_t _sum_type; |
Gary Servin |
0:04ac6be8229a | 16 | _sum_type sum; |
Gary Servin |
0:04ac6be8229a | 17 | |
Gary Servin |
0:04ac6be8229a | 18 | TwoIntsResult(): |
Gary Servin |
0:04ac6be8229a | 19 | sum(0) |
Gary Servin |
0:04ac6be8229a | 20 | { |
Gary Servin |
0:04ac6be8229a | 21 | } |
Gary Servin |
0:04ac6be8229a | 22 | |
Gary Servin |
0:04ac6be8229a | 23 | virtual int serialize(unsigned char *outbuffer) const |
Gary Servin |
0:04ac6be8229a | 24 | { |
Gary Servin |
0:04ac6be8229a | 25 | int offset = 0; |
Gary Servin |
0:04ac6be8229a | 26 | union { |
Gary Servin |
0:04ac6be8229a | 27 | int64_t real; |
Gary Servin |
0:04ac6be8229a | 28 | uint64_t base; |
Gary Servin |
0:04ac6be8229a | 29 | } u_sum; |
Gary Servin |
0:04ac6be8229a | 30 | u_sum.real = this->sum; |
Gary Servin |
0:04ac6be8229a | 31 | *(outbuffer + offset + 0) = (u_sum.base >> (8 * 0)) & 0xFF; |
Gary Servin |
0:04ac6be8229a | 32 | *(outbuffer + offset + 1) = (u_sum.base >> (8 * 1)) & 0xFF; |
Gary Servin |
0:04ac6be8229a | 33 | *(outbuffer + offset + 2) = (u_sum.base >> (8 * 2)) & 0xFF; |
Gary Servin |
0:04ac6be8229a | 34 | *(outbuffer + offset + 3) = (u_sum.base >> (8 * 3)) & 0xFF; |
Gary Servin |
0:04ac6be8229a | 35 | *(outbuffer + offset + 4) = (u_sum.base >> (8 * 4)) & 0xFF; |
Gary Servin |
0:04ac6be8229a | 36 | *(outbuffer + offset + 5) = (u_sum.base >> (8 * 5)) & 0xFF; |
Gary Servin |
0:04ac6be8229a | 37 | *(outbuffer + offset + 6) = (u_sum.base >> (8 * 6)) & 0xFF; |
Gary Servin |
0:04ac6be8229a | 38 | *(outbuffer + offset + 7) = (u_sum.base >> (8 * 7)) & 0xFF; |
Gary Servin |
0:04ac6be8229a | 39 | offset += sizeof(this->sum); |
Gary Servin |
0:04ac6be8229a | 40 | return offset; |
Gary Servin |
0:04ac6be8229a | 41 | } |
Gary Servin |
0:04ac6be8229a | 42 | |
Gary Servin |
0:04ac6be8229a | 43 | virtual int deserialize(unsigned char *inbuffer) |
Gary Servin |
0:04ac6be8229a | 44 | { |
Gary Servin |
0:04ac6be8229a | 45 | int offset = 0; |
Gary Servin |
0:04ac6be8229a | 46 | union { |
Gary Servin |
0:04ac6be8229a | 47 | int64_t real; |
Gary Servin |
0:04ac6be8229a | 48 | uint64_t base; |
Gary Servin |
0:04ac6be8229a | 49 | } u_sum; |
Gary Servin |
0:04ac6be8229a | 50 | u_sum.base = 0; |
Gary Servin |
0:04ac6be8229a | 51 | u_sum.base |= ((uint64_t) (*(inbuffer + offset + 0))) << (8 * 0); |
Gary Servin |
0:04ac6be8229a | 52 | u_sum.base |= ((uint64_t) (*(inbuffer + offset + 1))) << (8 * 1); |
Gary Servin |
0:04ac6be8229a | 53 | u_sum.base |= ((uint64_t) (*(inbuffer + offset + 2))) << (8 * 2); |
Gary Servin |
0:04ac6be8229a | 54 | u_sum.base |= ((uint64_t) (*(inbuffer + offset + 3))) << (8 * 3); |
Gary Servin |
0:04ac6be8229a | 55 | u_sum.base |= ((uint64_t) (*(inbuffer + offset + 4))) << (8 * 4); |
Gary Servin |
0:04ac6be8229a | 56 | u_sum.base |= ((uint64_t) (*(inbuffer + offset + 5))) << (8 * 5); |
Gary Servin |
0:04ac6be8229a | 57 | u_sum.base |= ((uint64_t) (*(inbuffer + offset + 6))) << (8 * 6); |
Gary Servin |
0:04ac6be8229a | 58 | u_sum.base |= ((uint64_t) (*(inbuffer + offset + 7))) << (8 * 7); |
Gary Servin |
0:04ac6be8229a | 59 | this->sum = u_sum.real; |
Gary Servin |
0:04ac6be8229a | 60 | offset += sizeof(this->sum); |
Gary Servin |
0:04ac6be8229a | 61 | return offset; |
Gary Servin |
0:04ac6be8229a | 62 | } |
Gary Servin |
0:04ac6be8229a | 63 | |
Gary Servin |
0:04ac6be8229a | 64 | const char * getType(){ return "actionlib/TwoIntsResult"; }; |
Gary Servin |
0:04ac6be8229a | 65 | const char * getMD5(){ return "b88405221c77b1878a3cbbfff53428d7"; }; |
Gary Servin |
0:04ac6be8229a | 66 | |
Gary Servin |
0:04ac6be8229a | 67 | }; |
Gary Servin |
0:04ac6be8229a | 68 | |
Gary Servin |
0:04ac6be8229a | 69 | } |
Gary Servin |
0:04ac6be8229a | 70 | #endif |