#pragma once #include #include #include #include #define UAVCAN_PROTOCOL_ENUMERATION_INDICATION_MAX_SIZE 102 #define UAVCAN_PROTOCOL_ENUMERATION_INDICATION_SIGNATURE (0x884CB63050A84F35ULL) #define UAVCAN_PROTOCOL_ENUMERATION_INDICATION_ID 380 #if defined(__cplusplus) && defined(DRONECAN_CXX_WRAPPERS) class uavcan_protocol_enumeration_Indication_cxx_iface; #endif struct uavcan_protocol_enumeration_Indication { #if defined(__cplusplus) && defined(DRONECAN_CXX_WRAPPERS) using cxx_iface = uavcan_protocol_enumeration_Indication_cxx_iface; #endif struct uavcan_protocol_param_NumericValue value; struct { uint8_t len; uint8_t data[92]; }parameter_name; }; #ifdef __cplusplus extern "C" { #endif uint32_t _uavcan_protocol_enumeration_Indication_encode(struct uavcan_protocol_enumeration_Indication* msg, uint8_t* buffer #if CANARD_ENABLE_TAO_OPTION , bool tao #endif ); bool _uavcan_protocol_enumeration_Indication_decode(const CanardRxTransfer* transfer, struct uavcan_protocol_enumeration_Indication* msg); static inline uint32_t uavcan_protocol_enumeration_Indication_encode(struct uavcan_protocol_enumeration_Indication* msg, uint8_t* buffer #if CANARD_ENABLE_TAO_OPTION , bool tao #endif ) { return _uavcan_protocol_enumeration_Indication_encode(msg, buffer #if CANARD_ENABLE_TAO_OPTION , tao #endif ); } static inline bool uavcan_protocol_enumeration_Indication_decode(const CanardRxTransfer* transfer, struct uavcan_protocol_enumeration_Indication* msg) { return _uavcan_protocol_enumeration_Indication_decode(transfer, msg); } #if defined(CANARD_DSDLC_INTERNAL) static inline void __uavcan_protocol_enumeration_Indication_encode(uint8_t* buffer, uint32_t* bit_ofs, struct uavcan_protocol_enumeration_Indication* msg, bool tao); static inline bool __uavcan_protocol_enumeration_Indication_decode(const CanardRxTransfer* transfer, uint32_t* bit_ofs, struct uavcan_protocol_enumeration_Indication* msg, bool tao); void __uavcan_protocol_enumeration_Indication_encode(uint8_t* buffer, uint32_t* bit_ofs, struct uavcan_protocol_enumeration_Indication* msg, bool tao) { (void)buffer; (void)bit_ofs; (void)msg; (void)tao; *bit_ofs += 6; __uavcan_protocol_param_NumericValue_encode(buffer, bit_ofs, &msg->value, false); #pragma GCC diagnostic push #pragma GCC diagnostic ignored "-Wtype-limits" const uint8_t parameter_name_len = msg->parameter_name.len > 92 ? 92 : msg->parameter_name.len; #pragma GCC diagnostic pop if (!tao) { canardEncodeScalar(buffer, *bit_ofs, 7, ¶meter_name_len); *bit_ofs += 7; } for (size_t i=0; i < parameter_name_len; i++) { canardEncodeScalar(buffer, *bit_ofs, 8, &msg->parameter_name.data[i]); *bit_ofs += 8; } } /* decode uavcan_protocol_enumeration_Indication, return true on failure, false on success */ bool __uavcan_protocol_enumeration_Indication_decode(const CanardRxTransfer* transfer, uint32_t* bit_ofs, struct uavcan_protocol_enumeration_Indication* msg, bool tao) { (void)transfer; (void)bit_ofs; (void)msg; (void)tao; *bit_ofs += 6; if (__uavcan_protocol_param_NumericValue_decode(transfer, bit_ofs, &msg->value, false)) {return true;} if (!tao) { canardDecodeScalar(transfer, *bit_ofs, 7, false, &msg->parameter_name.len); *bit_ofs += 7; } else { msg->parameter_name.len = ((transfer->payload_len*8)-*bit_ofs)/8; } #pragma GCC diagnostic push #pragma GCC diagnostic ignored "-Wtype-limits" if (msg->parameter_name.len > 92) { return true; /* invalid value */ } #pragma GCC diagnostic pop for (size_t i=0; i < msg->parameter_name.len; i++) { canardDecodeScalar(transfer, *bit_ofs, 8, false, &msg->parameter_name.data[i]); *bit_ofs += 8; } return false; /* success */ } #endif #ifdef CANARD_DSDLC_TEST_BUILD struct uavcan_protocol_enumeration_Indication sample_uavcan_protocol_enumeration_Indication_msg(void); #endif #ifdef __cplusplus } // extern "C" #ifdef DRONECAN_CXX_WRAPPERS #include BROADCAST_MESSAGE_CXX_IFACE(uavcan_protocol_enumeration_Indication, UAVCAN_PROTOCOL_ENUMERATION_INDICATION_ID, UAVCAN_PROTOCOL_ENUMERATION_INDICATION_SIGNATURE, UAVCAN_PROTOCOL_ENUMERATION_INDICATION_MAX_SIZE); #endif #endif