mavlink_msg_raw_rpm.h 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238
  1. #pragma once
  2. // MESSAGE RAW_RPM PACKING
  3. #define MAVLINK_MSG_ID_RAW_RPM 339
  4. typedef struct __mavlink_raw_rpm_t {
  5. float frequency; /*< [rpm] Indicated rate*/
  6. uint8_t index; /*< Index of this RPM sensor (0-indexed)*/
  7. } mavlink_raw_rpm_t;
  8. #define MAVLINK_MSG_ID_RAW_RPM_LEN 5
  9. #define MAVLINK_MSG_ID_RAW_RPM_MIN_LEN 5
  10. #define MAVLINK_MSG_ID_339_LEN 5
  11. #define MAVLINK_MSG_ID_339_MIN_LEN 5
  12. #define MAVLINK_MSG_ID_RAW_RPM_CRC 199
  13. #define MAVLINK_MSG_ID_339_CRC 199
  14. #if MAVLINK_COMMAND_24BIT
  15. #define MAVLINK_MESSAGE_INFO_RAW_RPM { \
  16. 339, \
  17. "RAW_RPM", \
  18. 2, \
  19. { { "index", NULL, MAVLINK_TYPE_UINT8_T, 0, 4, offsetof(mavlink_raw_rpm_t, index) }, \
  20. { "frequency", NULL, MAVLINK_TYPE_FLOAT, 0, 0, offsetof(mavlink_raw_rpm_t, frequency) }, \
  21. } \
  22. }
  23. #else
  24. #define MAVLINK_MESSAGE_INFO_RAW_RPM { \
  25. "RAW_RPM", \
  26. 2, \
  27. { { "index", NULL, MAVLINK_TYPE_UINT8_T, 0, 4, offsetof(mavlink_raw_rpm_t, index) }, \
  28. { "frequency", NULL, MAVLINK_TYPE_FLOAT, 0, 0, offsetof(mavlink_raw_rpm_t, frequency) }, \
  29. } \
  30. }
  31. #endif
  32. /**
  33. * @brief Pack a raw_rpm message
  34. * @param system_id ID of this system
  35. * @param component_id ID of this component (e.g. 200 for IMU)
  36. * @param msg The MAVLink message to compress the data into
  37. *
  38. * @param index Index of this RPM sensor (0-indexed)
  39. * @param frequency [rpm] Indicated rate
  40. * @return length of the message in bytes (excluding serial stream start sign)
  41. */
  42. static inline uint16_t mavlink_msg_raw_rpm_pack(uint8_t system_id, uint8_t component_id, mavlink_message_t* msg,
  43. uint8_t index, float frequency)
  44. {
  45. #if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
  46. char buf[MAVLINK_MSG_ID_RAW_RPM_LEN];
  47. _mav_put_float(buf, 0, frequency);
  48. _mav_put_uint8_t(buf, 4, index);
  49. memcpy(_MAV_PAYLOAD_NON_CONST(msg), buf, MAVLINK_MSG_ID_RAW_RPM_LEN);
  50. #else
  51. mavlink_raw_rpm_t packet;
  52. packet.frequency = frequency;
  53. packet.index = index;
  54. memcpy(_MAV_PAYLOAD_NON_CONST(msg), &packet, MAVLINK_MSG_ID_RAW_RPM_LEN);
  55. #endif
  56. msg->msgid = MAVLINK_MSG_ID_RAW_RPM;
  57. return mavlink_finalize_message(msg, system_id, component_id, MAVLINK_MSG_ID_RAW_RPM_MIN_LEN, MAVLINK_MSG_ID_RAW_RPM_LEN, MAVLINK_MSG_ID_RAW_RPM_CRC);
  58. }
  59. /**
  60. * @brief Pack a raw_rpm message on a channel
  61. * @param system_id ID of this system
  62. * @param component_id ID of this component (e.g. 200 for IMU)
  63. * @param chan The MAVLink channel this message will be sent over
  64. * @param msg The MAVLink message to compress the data into
  65. * @param index Index of this RPM sensor (0-indexed)
  66. * @param frequency [rpm] Indicated rate
  67. * @return length of the message in bytes (excluding serial stream start sign)
  68. */
  69. static inline uint16_t mavlink_msg_raw_rpm_pack_chan(uint8_t system_id, uint8_t component_id, uint8_t chan,
  70. mavlink_message_t* msg,
  71. uint8_t index,float frequency)
  72. {
  73. #if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
  74. char buf[MAVLINK_MSG_ID_RAW_RPM_LEN];
  75. _mav_put_float(buf, 0, frequency);
  76. _mav_put_uint8_t(buf, 4, index);
  77. memcpy(_MAV_PAYLOAD_NON_CONST(msg), buf, MAVLINK_MSG_ID_RAW_RPM_LEN);
  78. #else
  79. mavlink_raw_rpm_t packet;
  80. packet.frequency = frequency;
  81. packet.index = index;
  82. memcpy(_MAV_PAYLOAD_NON_CONST(msg), &packet, MAVLINK_MSG_ID_RAW_RPM_LEN);
  83. #endif
  84. msg->msgid = MAVLINK_MSG_ID_RAW_RPM;
  85. return mavlink_finalize_message_chan(msg, system_id, component_id, chan, MAVLINK_MSG_ID_RAW_RPM_MIN_LEN, MAVLINK_MSG_ID_RAW_RPM_LEN, MAVLINK_MSG_ID_RAW_RPM_CRC);
  86. }
  87. /**
  88. * @brief Encode a raw_rpm struct
  89. *
  90. * @param system_id ID of this system
  91. * @param component_id ID of this component (e.g. 200 for IMU)
  92. * @param msg The MAVLink message to compress the data into
  93. * @param raw_rpm C-struct to read the message contents from
  94. */
  95. static inline uint16_t mavlink_msg_raw_rpm_encode(uint8_t system_id, uint8_t component_id, mavlink_message_t* msg, const mavlink_raw_rpm_t* raw_rpm)
  96. {
  97. return mavlink_msg_raw_rpm_pack(system_id, component_id, msg, raw_rpm->index, raw_rpm->frequency);
  98. }
  99. /**
  100. * @brief Encode a raw_rpm struct on a channel
  101. *
  102. * @param system_id ID of this system
  103. * @param component_id ID of this component (e.g. 200 for IMU)
  104. * @param chan The MAVLink channel this message will be sent over
  105. * @param msg The MAVLink message to compress the data into
  106. * @param raw_rpm C-struct to read the message contents from
  107. */
  108. static inline uint16_t mavlink_msg_raw_rpm_encode_chan(uint8_t system_id, uint8_t component_id, uint8_t chan, mavlink_message_t* msg, const mavlink_raw_rpm_t* raw_rpm)
  109. {
  110. return mavlink_msg_raw_rpm_pack_chan(system_id, component_id, chan, msg, raw_rpm->index, raw_rpm->frequency);
  111. }
  112. /**
  113. * @brief Send a raw_rpm message
  114. * @param chan MAVLink channel to send the message
  115. *
  116. * @param index Index of this RPM sensor (0-indexed)
  117. * @param frequency [rpm] Indicated rate
  118. */
  119. #ifdef MAVLINK_USE_CONVENIENCE_FUNCTIONS
  120. static inline void mavlink_msg_raw_rpm_send(mavlink_channel_t chan, uint8_t index, float frequency)
  121. {
  122. #if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
  123. char buf[MAVLINK_MSG_ID_RAW_RPM_LEN];
  124. _mav_put_float(buf, 0, frequency);
  125. _mav_put_uint8_t(buf, 4, index);
  126. _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_RAW_RPM, buf, MAVLINK_MSG_ID_RAW_RPM_MIN_LEN, MAVLINK_MSG_ID_RAW_RPM_LEN, MAVLINK_MSG_ID_RAW_RPM_CRC);
  127. #else
  128. mavlink_raw_rpm_t packet;
  129. packet.frequency = frequency;
  130. packet.index = index;
  131. _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_RAW_RPM, (const char *)&packet, MAVLINK_MSG_ID_RAW_RPM_MIN_LEN, MAVLINK_MSG_ID_RAW_RPM_LEN, MAVLINK_MSG_ID_RAW_RPM_CRC);
  132. #endif
  133. }
  134. /**
  135. * @brief Send a raw_rpm message
  136. * @param chan MAVLink channel to send the message
  137. * @param struct The MAVLink struct to serialize
  138. */
  139. static inline void mavlink_msg_raw_rpm_send_struct(mavlink_channel_t chan, const mavlink_raw_rpm_t* raw_rpm)
  140. {
  141. #if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
  142. mavlink_msg_raw_rpm_send(chan, raw_rpm->index, raw_rpm->frequency);
  143. #else
  144. _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_RAW_RPM, (const char *)raw_rpm, MAVLINK_MSG_ID_RAW_RPM_MIN_LEN, MAVLINK_MSG_ID_RAW_RPM_LEN, MAVLINK_MSG_ID_RAW_RPM_CRC);
  145. #endif
  146. }
  147. #if MAVLINK_MSG_ID_RAW_RPM_LEN <= MAVLINK_MAX_PAYLOAD_LEN
  148. /*
  149. This variant of _send() can be used to save stack space by re-using
  150. memory from the receive buffer. The caller provides a
  151. mavlink_message_t which is the size of a full mavlink message. This
  152. is usually the receive buffer for the channel, and allows a reply to an
  153. incoming message with minimum stack space usage.
  154. */
  155. static inline void mavlink_msg_raw_rpm_send_buf(mavlink_message_t *msgbuf, mavlink_channel_t chan, uint8_t index, float frequency)
  156. {
  157. #if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
  158. char *buf = (char *)msgbuf;
  159. _mav_put_float(buf, 0, frequency);
  160. _mav_put_uint8_t(buf, 4, index);
  161. _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_RAW_RPM, buf, MAVLINK_MSG_ID_RAW_RPM_MIN_LEN, MAVLINK_MSG_ID_RAW_RPM_LEN, MAVLINK_MSG_ID_RAW_RPM_CRC);
  162. #else
  163. mavlink_raw_rpm_t *packet = (mavlink_raw_rpm_t *)msgbuf;
  164. packet->frequency = frequency;
  165. packet->index = index;
  166. _mav_finalize_message_chan_send(chan, MAVLINK_MSG_ID_RAW_RPM, (const char *)packet, MAVLINK_MSG_ID_RAW_RPM_MIN_LEN, MAVLINK_MSG_ID_RAW_RPM_LEN, MAVLINK_MSG_ID_RAW_RPM_CRC);
  167. #endif
  168. }
  169. #endif
  170. #endif
  171. // MESSAGE RAW_RPM UNPACKING
  172. /**
  173. * @brief Get field index from raw_rpm message
  174. *
  175. * @return Index of this RPM sensor (0-indexed)
  176. */
  177. static inline uint8_t mavlink_msg_raw_rpm_get_index(const mavlink_message_t* msg)
  178. {
  179. return _MAV_RETURN_uint8_t(msg, 4);
  180. }
  181. /**
  182. * @brief Get field frequency from raw_rpm message
  183. *
  184. * @return [rpm] Indicated rate
  185. */
  186. static inline float mavlink_msg_raw_rpm_get_frequency(const mavlink_message_t* msg)
  187. {
  188. return _MAV_RETURN_float(msg, 0);
  189. }
  190. /**
  191. * @brief Decode a raw_rpm message into a struct
  192. *
  193. * @param msg The message to decode
  194. * @param raw_rpm C-struct to decode the message contents into
  195. */
  196. static inline void mavlink_msg_raw_rpm_decode(const mavlink_message_t* msg, mavlink_raw_rpm_t* raw_rpm)
  197. {
  198. #if MAVLINK_NEED_BYTE_SWAP || !MAVLINK_ALIGNED_FIELDS
  199. raw_rpm->frequency = mavlink_msg_raw_rpm_get_frequency(msg);
  200. raw_rpm->index = mavlink_msg_raw_rpm_get_index(msg);
  201. #else
  202. uint8_t len = msg->len < MAVLINK_MSG_ID_RAW_RPM_LEN? msg->len : MAVLINK_MSG_ID_RAW_RPM_LEN;
  203. memset(raw_rpm, 0, MAVLINK_MSG_ID_RAW_RPM_LEN);
  204. memcpy(raw_rpm, _MAV_PAYLOAD(msg), len);
  205. #endif
  206. }