| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103 |
- #pragma once
- #include <stdbool.h>
- #include <stdint.h>
- #include <canard.h>
- #define UAVCAN_TUNNEL_SERIALCONFIG_MAX_SIZE 8
- #define UAVCAN_TUNNEL_SERIALCONFIG_SIGNATURE (0x4237AACEE87E82ADULL)
- #define UAVCAN_TUNNEL_SERIALCONFIG_ID 2011
- #if defined(__cplusplus) && defined(DRONECAN_CXX_WRAPPERS)
- class uavcan_tunnel_SerialConfig_cxx_iface;
- #endif
- struct uavcan_tunnel_SerialConfig {
- #if defined(__cplusplus) && defined(DRONECAN_CXX_WRAPPERS)
- using cxx_iface = uavcan_tunnel_SerialConfig_cxx_iface;
- #endif
- uint8_t channel_id;
- uint32_t baud;
- uint32_t options;
- };
- #ifdef __cplusplus
- extern "C"
- {
- #endif
- uint32_t _uavcan_tunnel_SerialConfig_encode(struct uavcan_tunnel_SerialConfig* msg, uint8_t* buffer
- #if CANARD_ENABLE_TAO_OPTION
- , bool tao
- #endif
- );
- bool _uavcan_tunnel_SerialConfig_decode(const CanardRxTransfer* transfer, struct uavcan_tunnel_SerialConfig* msg);
- static inline uint32_t uavcan_tunnel_SerialConfig_encode(struct uavcan_tunnel_SerialConfig* msg, uint8_t* buffer
- #if CANARD_ENABLE_TAO_OPTION
- , bool tao
- #endif
- ) {
- return _uavcan_tunnel_SerialConfig_encode(msg, buffer
- #if CANARD_ENABLE_TAO_OPTION
- , tao
- #endif
- );
- }
- static inline bool uavcan_tunnel_SerialConfig_decode(const CanardRxTransfer* transfer, struct uavcan_tunnel_SerialConfig* msg) {
- return _uavcan_tunnel_SerialConfig_decode(transfer, msg);
- }
- #if defined(CANARD_DSDLC_INTERNAL)
- static inline void __uavcan_tunnel_SerialConfig_encode(uint8_t* buffer, uint32_t* bit_ofs, struct uavcan_tunnel_SerialConfig* msg, bool tao);
- static inline bool __uavcan_tunnel_SerialConfig_decode(const CanardRxTransfer* transfer, uint32_t* bit_ofs, struct uavcan_tunnel_SerialConfig* msg, bool tao);
- void __uavcan_tunnel_SerialConfig_encode(uint8_t* buffer, uint32_t* bit_ofs, struct uavcan_tunnel_SerialConfig* msg, bool tao) {
- (void)buffer;
- (void)bit_ofs;
- (void)msg;
- (void)tao;
- canardEncodeScalar(buffer, *bit_ofs, 8, &msg->channel_id);
- *bit_ofs += 8;
- canardEncodeScalar(buffer, *bit_ofs, 32, &msg->baud);
- *bit_ofs += 32;
- canardEncodeScalar(buffer, *bit_ofs, 24, &msg->options);
- *bit_ofs += 24;
- }
- /*
- decode uavcan_tunnel_SerialConfig, return true on failure, false on success
- */
- bool __uavcan_tunnel_SerialConfig_decode(const CanardRxTransfer* transfer, uint32_t* bit_ofs, struct uavcan_tunnel_SerialConfig* msg, bool tao) {
- (void)transfer;
- (void)bit_ofs;
- (void)msg;
- (void)tao;
- canardDecodeScalar(transfer, *bit_ofs, 8, false, &msg->channel_id);
- *bit_ofs += 8;
- canardDecodeScalar(transfer, *bit_ofs, 32, false, &msg->baud);
- *bit_ofs += 32;
- canardDecodeScalar(transfer, *bit_ofs, 24, false, &msg->options);
- *bit_ofs += 24;
- return false; /* success */
- }
- #endif
- #ifdef CANARD_DSDLC_TEST_BUILD
- struct uavcan_tunnel_SerialConfig sample_uavcan_tunnel_SerialConfig_msg(void);
- #endif
- #ifdef __cplusplus
- } // extern "C"
- #ifdef DRONECAN_CXX_WRAPPERS
- #include <canard/cxx_wrappers.h>
- BROADCAST_MESSAGE_CXX_IFACE(uavcan_tunnel_SerialConfig, UAVCAN_TUNNEL_SERIALCONFIG_ID, UAVCAN_TUNNEL_SERIALCONFIG_SIGNATURE, UAVCAN_TUNNEL_SERIALCONFIG_MAX_SIZE);
- #endif
- #endif
|