#define CANARD_DSDLC_INTERNAL #include #include #include #ifdef CANARD_DSDLC_TEST_BUILD #include #endif uint32_t dronecan_remoteid_SecureCommandRequest_encode(struct dronecan_remoteid_SecureCommandRequest* msg, uint8_t* buffer #if CANARD_ENABLE_TAO_OPTION , bool tao #endif ) { uint32_t bit_ofs = 0; memset(buffer, 0, DRONECAN_REMOTEID_SECURECOMMAND_REQUEST_MAX_SIZE); _dronecan_remoteid_SecureCommandRequest_encode(buffer, &bit_ofs, msg, #if CANARD_ENABLE_TAO_OPTION tao #else true #endif ); return ((bit_ofs+7)/8); } /* return true if the decode is invalid */ bool dronecan_remoteid_SecureCommandRequest_decode(const CanardRxTransfer* transfer, struct dronecan_remoteid_SecureCommandRequest* msg) { #if CANARD_ENABLE_TAO_OPTION if (transfer->tao && (transfer->payload_len > DRONECAN_REMOTEID_SECURECOMMAND_REQUEST_MAX_SIZE)) { return true; /* invalid payload length */ } #endif uint32_t bit_ofs = 0; if (_dronecan_remoteid_SecureCommandRequest_decode(transfer, &bit_ofs, msg, #if CANARD_ENABLE_TAO_OPTION transfer->tao #else true #endif )) { return true; /* invalid payload */ } const uint32_t byte_len = (bit_ofs+7U)/8U; #if CANARD_ENABLE_TAO_OPTION // if this could be CANFD then the dlc could indicating more bytes than // we actually have if (!transfer->tao) { return byte_len > transfer->payload_len; } #endif return byte_len != transfer->payload_len; } #ifdef CANARD_DSDLC_TEST_BUILD struct dronecan_remoteid_SecureCommandRequest sample_dronecan_remoteid_SecureCommandRequest_msg(void) { struct dronecan_remoteid_SecureCommandRequest msg; msg.sequence = (uint32_t)random_bitlen_unsigned_val(32); msg.operation = (uint32_t)random_bitlen_unsigned_val(32); msg.sig_length = (uint8_t)random_bitlen_unsigned_val(8); msg.data.len = (uint8_t)random_range_unsigned_val(0, 220); for (size_t i=0; i < msg.data.len; i++) { msg.data.data[i] = (uint8_t)random_bitlen_unsigned_val(8); } return msg; } #endif