| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188 |
- #pragma once
- #include <stdbool.h>
- #include <stdint.h>
- #include <canard.h>
- #include <uavcan.Timestamp.h>
- #define UAVCAN_EQUIPMENT_AHRS_RAWIMU_MAX_SIZE 120
- #define UAVCAN_EQUIPMENT_AHRS_RAWIMU_SIGNATURE (0x8280632C40E574B5ULL)
- #define UAVCAN_EQUIPMENT_AHRS_RAWIMU_ID 1003
- #if defined(__cplusplus) && defined(DRONECAN_CXX_WRAPPERS)
- class uavcan_equipment_ahrs_RawIMU_cxx_iface;
- #endif
- struct uavcan_equipment_ahrs_RawIMU {
- #if defined(__cplusplus) && defined(DRONECAN_CXX_WRAPPERS)
- using cxx_iface = uavcan_equipment_ahrs_RawIMU_cxx_iface;
- #endif
- struct uavcan_Timestamp timestamp;
- float integration_interval;
- float rate_gyro_latest[3];
- float rate_gyro_integral[3];
- float accelerometer_latest[3];
- float accelerometer_integral[3];
- struct { uint8_t len; float data[36]; }covariance;
- };
- #ifdef __cplusplus
- extern "C"
- {
- #endif
- uint32_t _uavcan_equipment_ahrs_RawIMU_encode(struct uavcan_equipment_ahrs_RawIMU* msg, uint8_t* buffer
- #if CANARD_ENABLE_TAO_OPTION
- , bool tao
- #endif
- );
- bool _uavcan_equipment_ahrs_RawIMU_decode(const CanardRxTransfer* transfer, struct uavcan_equipment_ahrs_RawIMU* msg);
- static inline uint32_t uavcan_equipment_ahrs_RawIMU_encode(struct uavcan_equipment_ahrs_RawIMU* msg, uint8_t* buffer
- #if CANARD_ENABLE_TAO_OPTION
- , bool tao
- #endif
- ) {
- return _uavcan_equipment_ahrs_RawIMU_encode(msg, buffer
- #if CANARD_ENABLE_TAO_OPTION
- , tao
- #endif
- );
- }
- static inline bool uavcan_equipment_ahrs_RawIMU_decode(const CanardRxTransfer* transfer, struct uavcan_equipment_ahrs_RawIMU* msg) {
- return _uavcan_equipment_ahrs_RawIMU_decode(transfer, msg);
- }
- #if defined(CANARD_DSDLC_INTERNAL)
- static inline void __uavcan_equipment_ahrs_RawIMU_encode(uint8_t* buffer, uint32_t* bit_ofs, struct uavcan_equipment_ahrs_RawIMU* msg, bool tao);
- static inline bool __uavcan_equipment_ahrs_RawIMU_decode(const CanardRxTransfer* transfer, uint32_t* bit_ofs, struct uavcan_equipment_ahrs_RawIMU* msg, bool tao);
- void __uavcan_equipment_ahrs_RawIMU_encode(uint8_t* buffer, uint32_t* bit_ofs, struct uavcan_equipment_ahrs_RawIMU* msg, bool tao) {
- (void)buffer;
- (void)bit_ofs;
- (void)msg;
- (void)tao;
- __uavcan_Timestamp_encode(buffer, bit_ofs, &msg->timestamp, false);
- canardEncodeScalar(buffer, *bit_ofs, 32, &msg->integration_interval);
- *bit_ofs += 32;
- for (size_t i=0; i < 3; i++) {
- {
- uint16_t float16_val = canardConvertNativeFloatToFloat16(msg->rate_gyro_latest[i]);
- canardEncodeScalar(buffer, *bit_ofs, 16, &float16_val);
- }
- *bit_ofs += 16;
- }
- for (size_t i=0; i < 3; i++) {
- canardEncodeScalar(buffer, *bit_ofs, 32, &msg->rate_gyro_integral[i]);
- *bit_ofs += 32;
- }
- for (size_t i=0; i < 3; i++) {
- {
- uint16_t float16_val = canardConvertNativeFloatToFloat16(msg->accelerometer_latest[i]);
- canardEncodeScalar(buffer, *bit_ofs, 16, &float16_val);
- }
- *bit_ofs += 16;
- }
- for (size_t i=0; i < 3; i++) {
- canardEncodeScalar(buffer, *bit_ofs, 32, &msg->accelerometer_integral[i]);
- *bit_ofs += 32;
- }
- #pragma GCC diagnostic push
- #pragma GCC diagnostic ignored "-Wtype-limits"
- const uint8_t covariance_len = msg->covariance.len > 36 ? 36 : msg->covariance.len;
- #pragma GCC diagnostic pop
- if (!tao) {
- canardEncodeScalar(buffer, *bit_ofs, 6, &covariance_len);
- *bit_ofs += 6;
- }
- for (size_t i=0; i < covariance_len; i++) {
- {
- uint16_t float16_val = canardConvertNativeFloatToFloat16(msg->covariance.data[i]);
- canardEncodeScalar(buffer, *bit_ofs, 16, &float16_val);
- }
- *bit_ofs += 16;
- }
- }
- /*
- decode uavcan_equipment_ahrs_RawIMU, return true on failure, false on success
- */
- bool __uavcan_equipment_ahrs_RawIMU_decode(const CanardRxTransfer* transfer, uint32_t* bit_ofs, struct uavcan_equipment_ahrs_RawIMU* msg, bool tao) {
- (void)transfer;
- (void)bit_ofs;
- (void)msg;
- (void)tao;
- if (__uavcan_Timestamp_decode(transfer, bit_ofs, &msg->timestamp, false)) {return true;}
- canardDecodeScalar(transfer, *bit_ofs, 32, true, &msg->integration_interval);
- *bit_ofs += 32;
- for (size_t i=0; i < 3; i++) {
- {
- uint16_t float16_val;
- canardDecodeScalar(transfer, *bit_ofs, 16, true, &float16_val);
- msg->rate_gyro_latest[i] = canardConvertFloat16ToNativeFloat(float16_val);
- }
- *bit_ofs += 16;
- }
- for (size_t i=0; i < 3; i++) {
- canardDecodeScalar(transfer, *bit_ofs, 32, true, &msg->rate_gyro_integral[i]);
- *bit_ofs += 32;
- }
- for (size_t i=0; i < 3; i++) {
- {
- uint16_t float16_val;
- canardDecodeScalar(transfer, *bit_ofs, 16, true, &float16_val);
- msg->accelerometer_latest[i] = canardConvertFloat16ToNativeFloat(float16_val);
- }
- *bit_ofs += 16;
- }
- for (size_t i=0; i < 3; i++) {
- canardDecodeScalar(transfer, *bit_ofs, 32, true, &msg->accelerometer_integral[i]);
- *bit_ofs += 32;
- }
- if (!tao) {
- canardDecodeScalar(transfer, *bit_ofs, 6, false, &msg->covariance.len);
- *bit_ofs += 6;
- } else {
- msg->covariance.len = ((transfer->payload_len*8)-*bit_ofs)/16;
- }
- #pragma GCC diagnostic push
- #pragma GCC diagnostic ignored "-Wtype-limits"
- if (msg->covariance.len > 36) {
- return true; /* invalid value */
- }
- #pragma GCC diagnostic pop
- for (size_t i=0; i < msg->covariance.len; i++) {
- {
- uint16_t float16_val;
- canardDecodeScalar(transfer, *bit_ofs, 16, true, &float16_val);
- msg->covariance.data[i] = canardConvertFloat16ToNativeFloat(float16_val);
- }
- *bit_ofs += 16;
- }
- return false; /* success */
- }
- #endif
- #ifdef CANARD_DSDLC_TEST_BUILD
- struct uavcan_equipment_ahrs_RawIMU sample_uavcan_equipment_ahrs_RawIMU_msg(void);
- #endif
- #ifdef __cplusplus
- } // extern "C"
- #ifdef DRONECAN_CXX_WRAPPERS
- #include <canard/cxx_wrappers.h>
- BROADCAST_MESSAGE_CXX_IFACE(uavcan_equipment_ahrs_RawIMU, UAVCAN_EQUIPMENT_AHRS_RAWIMU_ID, UAVCAN_EQUIPMENT_AHRS_RAWIMU_SIGNATURE, UAVCAN_EQUIPMENT_AHRS_RAWIMU_MAX_SIZE);
- #endif
- #endif
|