| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141 |
- #pragma once
- #include <stdbool.h>
- #include <stdint.h>
- #include <canard.h>
- #include <uavcan.protocol.CANIfaceStats.h>
- #define UAVCAN_PROTOCOL_GETTRANSPORTSTATS_RESPONSE_MAX_SIZE 73
- #define UAVCAN_PROTOCOL_GETTRANSPORTSTATS_RESPONSE_SIGNATURE (0xBE6F76A7EC312B04ULL)
- #define UAVCAN_PROTOCOL_GETTRANSPORTSTATS_RESPONSE_ID 4
- #if defined(__cplusplus) && defined(DRONECAN_CXX_WRAPPERS)
- class uavcan_protocol_GetTransportStats_cxx_iface;
- #endif
- struct uavcan_protocol_GetTransportStatsResponse {
- #if defined(__cplusplus) && defined(DRONECAN_CXX_WRAPPERS)
- using cxx_iface = uavcan_protocol_GetTransportStats_cxx_iface;
- #endif
- uint64_t transfers_tx;
- uint64_t transfers_rx;
- uint64_t transfer_errors;
- struct { uint8_t len; struct uavcan_protocol_CANIfaceStats data[3]; }can_iface_stats;
- };
- #ifdef __cplusplus
- extern "C"
- {
- #endif
- uint32_t _uavcan_protocol_GetTransportStatsResponse_encode(struct uavcan_protocol_GetTransportStatsResponse* msg, uint8_t* buffer
- #if CANARD_ENABLE_TAO_OPTION
- , bool tao
- #endif
- );
- bool _uavcan_protocol_GetTransportStatsResponse_decode(const CanardRxTransfer* transfer, struct uavcan_protocol_GetTransportStatsResponse* msg);
- static inline uint32_t uavcan_protocol_GetTransportStatsResponse_encode(struct uavcan_protocol_GetTransportStatsResponse* msg, uint8_t* buffer
- #if CANARD_ENABLE_TAO_OPTION
- , bool tao
- #endif
- ) {
- return _uavcan_protocol_GetTransportStatsResponse_encode(msg, buffer
- #if CANARD_ENABLE_TAO_OPTION
- , tao
- #endif
- );
- }
- static inline bool uavcan_protocol_GetTransportStatsResponse_decode(const CanardRxTransfer* transfer, struct uavcan_protocol_GetTransportStatsResponse* msg) {
- return _uavcan_protocol_GetTransportStatsResponse_decode(transfer, msg);
- }
- #if defined(CANARD_DSDLC_INTERNAL)
- static inline void __uavcan_protocol_GetTransportStatsResponse_encode(uint8_t* buffer, uint32_t* bit_ofs, struct uavcan_protocol_GetTransportStatsResponse* msg, bool tao);
- static inline bool __uavcan_protocol_GetTransportStatsResponse_decode(const CanardRxTransfer* transfer, uint32_t* bit_ofs, struct uavcan_protocol_GetTransportStatsResponse* msg, bool tao);
- void __uavcan_protocol_GetTransportStatsResponse_encode(uint8_t* buffer, uint32_t* bit_ofs, struct uavcan_protocol_GetTransportStatsResponse* msg, bool tao) {
- (void)buffer;
- (void)bit_ofs;
- (void)msg;
- (void)tao;
- canardEncodeScalar(buffer, *bit_ofs, 48, &msg->transfers_tx);
- *bit_ofs += 48;
- canardEncodeScalar(buffer, *bit_ofs, 48, &msg->transfers_rx);
- *bit_ofs += 48;
- canardEncodeScalar(buffer, *bit_ofs, 48, &msg->transfer_errors);
- *bit_ofs += 48;
- #pragma GCC diagnostic push
- #pragma GCC diagnostic ignored "-Wtype-limits"
- const uint8_t can_iface_stats_len = msg->can_iface_stats.len > 3 ? 3 : msg->can_iface_stats.len;
- #pragma GCC diagnostic pop
- if (!tao) {
- canardEncodeScalar(buffer, *bit_ofs, 2, &can_iface_stats_len);
- *bit_ofs += 2;
- }
- for (size_t i=0; i < can_iface_stats_len; i++) {
- __uavcan_protocol_CANIfaceStats_encode(buffer, bit_ofs, &msg->can_iface_stats.data[i], false);
- }
- }
- /*
- decode uavcan_protocol_GetTransportStatsResponse, return true on failure, false on success
- */
- bool __uavcan_protocol_GetTransportStatsResponse_decode(const CanardRxTransfer* transfer, uint32_t* bit_ofs, struct uavcan_protocol_GetTransportStatsResponse* msg, bool tao) {
- (void)transfer;
- (void)bit_ofs;
- (void)msg;
- (void)tao;
- canardDecodeScalar(transfer, *bit_ofs, 48, false, &msg->transfers_tx);
- *bit_ofs += 48;
- canardDecodeScalar(transfer, *bit_ofs, 48, false, &msg->transfers_rx);
- *bit_ofs += 48;
- canardDecodeScalar(transfer, *bit_ofs, 48, false, &msg->transfer_errors);
- *bit_ofs += 48;
- if (!tao) {
- canardDecodeScalar(transfer, *bit_ofs, 2, false, &msg->can_iface_stats.len);
- *bit_ofs += 2;
- }
- if (tao) {
- msg->can_iface_stats.len = 0;
- size_t max_len = 3;
- uint32_t max_bits = (transfer->payload_len*8)-7; // TAO elements must be >= 8 bits
- while (max_bits > *bit_ofs) {
- if (!max_len-- || __uavcan_protocol_CANIfaceStats_decode(transfer, bit_ofs, &msg->can_iface_stats.data[msg->can_iface_stats.len], false)) {return true;}
- msg->can_iface_stats.len++;
- }
- } else {
- #pragma GCC diagnostic push
- #pragma GCC diagnostic ignored "-Wtype-limits"
- if (msg->can_iface_stats.len > 3) {
- return true; /* invalid value */
- }
- #pragma GCC diagnostic pop
- for (size_t i=0; i < msg->can_iface_stats.len; i++) {
- if (__uavcan_protocol_CANIfaceStats_decode(transfer, bit_ofs, &msg->can_iface_stats.data[i], false)) {return true;}
- }
- }
- return false; /* success */
- }
- #endif
- #ifdef CANARD_DSDLC_TEST_BUILD
- struct uavcan_protocol_GetTransportStatsResponse sample_uavcan_protocol_GetTransportStatsResponse_msg(void);
- #endif
- #ifdef __cplusplus
- } // extern "C"
- #ifdef DRONECAN_CXX_WRAPPERS
- #include <canard/cxx_wrappers.h>
- #endif
- #endif
|