| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119 |
- #pragma once
- #include <stdbool.h>
- #include <stdint.h>
- #include <canard.h>
- #define DRONECAN_REMOTEID_SECURECOMMAND_RESPONSE_MAX_SIZE 230
- #define DRONECAN_REMOTEID_SECURECOMMAND_RESPONSE_SIGNATURE (0x126A47C9C17A8BD7ULL)
- #define DRONECAN_REMOTEID_SECURECOMMAND_RESPONSE_ID 64
- #define DRONECAN_REMOTEID_SECURECOMMAND_RESPONSE_RESULT_ACCEPTED 0
- #define DRONECAN_REMOTEID_SECURECOMMAND_RESPONSE_RESULT_TEMPORARILY_REJECTED 1
- #define DRONECAN_REMOTEID_SECURECOMMAND_RESPONSE_RESULT_DENIED 2
- #define DRONECAN_REMOTEID_SECURECOMMAND_RESPONSE_RESULT_UNSUPPORTED 3
- #define DRONECAN_REMOTEID_SECURECOMMAND_RESPONSE_RESULT_FAILED 4
- #if defined(__cplusplus) && defined(DRONECAN_CXX_WRAPPERS)
- class dronecan_remoteid_SecureCommand_cxx_iface;
- #endif
- struct dronecan_remoteid_SecureCommandResponse {
- #if defined(__cplusplus) && defined(DRONECAN_CXX_WRAPPERS)
- using cxx_iface = dronecan_remoteid_SecureCommand_cxx_iface;
- #endif
- uint32_t sequence;
- uint32_t operation;
- uint8_t result;
- struct { uint8_t len; uint8_t data[220]; }data;
- };
- #ifdef __cplusplus
- extern "C"
- {
- #endif
- uint32_t dronecan_remoteid_SecureCommandResponse_encode(struct dronecan_remoteid_SecureCommandResponse* msg, uint8_t* buffer
- #if CANARD_ENABLE_TAO_OPTION
- , bool tao
- #endif
- );
- bool dronecan_remoteid_SecureCommandResponse_decode(const CanardRxTransfer* transfer, struct dronecan_remoteid_SecureCommandResponse* msg);
- #if defined(CANARD_DSDLC_INTERNAL)
- static inline void _dronecan_remoteid_SecureCommandResponse_encode(uint8_t* buffer, uint32_t* bit_ofs, struct dronecan_remoteid_SecureCommandResponse* msg, bool tao);
- static inline bool _dronecan_remoteid_SecureCommandResponse_decode(const CanardRxTransfer* transfer, uint32_t* bit_ofs, struct dronecan_remoteid_SecureCommandResponse* msg, bool tao);
- void _dronecan_remoteid_SecureCommandResponse_encode(uint8_t* buffer, uint32_t* bit_ofs, struct dronecan_remoteid_SecureCommandResponse* msg, bool tao) {
- (void)buffer;
- (void)bit_ofs;
- (void)msg;
- (void)tao;
- canardEncodeScalar(buffer, *bit_ofs, 32, &msg->sequence);
- *bit_ofs += 32;
- canardEncodeScalar(buffer, *bit_ofs, 32, &msg->operation);
- *bit_ofs += 32;
- canardEncodeScalar(buffer, *bit_ofs, 8, &msg->result);
- *bit_ofs += 8;
- #pragma GCC diagnostic push
- #pragma GCC diagnostic ignored "-Wtype-limits"
- const uint8_t data_len = msg->data.len > 220 ? 220 : msg->data.len;
- #pragma GCC diagnostic pop
- if (!tao) {
- canardEncodeScalar(buffer, *bit_ofs, 8, &data_len);
- *bit_ofs += 8;
- }
- for (size_t i=0; i < data_len; i++) {
- canardEncodeScalar(buffer, *bit_ofs, 8, &msg->data.data[i]);
- *bit_ofs += 8;
- }
- }
- /*
- decode dronecan_remoteid_SecureCommandResponse, return true on failure, false on success
- */
- bool _dronecan_remoteid_SecureCommandResponse_decode(const CanardRxTransfer* transfer, uint32_t* bit_ofs, struct dronecan_remoteid_SecureCommandResponse* msg, bool tao) {
- (void)transfer;
- (void)bit_ofs;
- (void)msg;
- (void)tao;
- canardDecodeScalar(transfer, *bit_ofs, 32, false, &msg->sequence);
- *bit_ofs += 32;
- canardDecodeScalar(transfer, *bit_ofs, 32, false, &msg->operation);
- *bit_ofs += 32;
- canardDecodeScalar(transfer, *bit_ofs, 8, false, &msg->result);
- *bit_ofs += 8;
- if (!tao) {
- canardDecodeScalar(transfer, *bit_ofs, 8, false, &msg->data.len);
- *bit_ofs += 8;
- } else {
- msg->data.len = ((transfer->payload_len*8)-*bit_ofs)/8;
- }
- #pragma GCC diagnostic push
- #pragma GCC diagnostic ignored "-Wtype-limits"
- if (msg->data.len > 220) {
- return true; /* invalid value */
- }
- #pragma GCC diagnostic pop
- for (size_t i=0; i < msg->data.len; i++) {
- canardDecodeScalar(transfer, *bit_ofs, 8, false, &msg->data.data[i]);
- *bit_ofs += 8;
- }
- return false; /* success */
- }
- #endif
- #ifdef CANARD_DSDLC_TEST_BUILD
- struct dronecan_remoteid_SecureCommandResponse sample_dronecan_remoteid_SecureCommandResponse_msg(void);
- #endif
- #ifdef __cplusplus
- } // extern "C"
- #ifdef DRONECAN_CXX_WRAPPERS
- #include <canard/cxx_wrappers.h>
- #endif
- #endif
|