static void _encode_uavcan_protocol_enumeration_Indication(uint8_t[] buffer, uavcan_protocol_enumeration_Indication msg, dronecan_serializer_chunk_cb_ptr_t chunk_cb, object ctx, bool tao)
        {
            chunk_cb(null, 6, ctx);



            _encode_uavcan_protocol_param_NumericValue(buffer, msg.value, chunk_cb, ctx, false);



            if (!tao)
            {
                memset(buffer, 0, 8);
                canardEncodeScalar(buffer, 0, 7, msg.parameter_name_len);
                chunk_cb(buffer, 7, ctx);
            }

            for (int i = 0; i < msg.parameter_name_len; i++)
            {
                memset(buffer, 0, 8);

                canardEncodeScalar(buffer, 0, 8, msg.parameter_name[i]);

                chunk_cb(buffer, 8, ctx);
            }
        }
示例#2
0
            public static uavcan_protocol_enumeration_Indication ByteArrayToDroneCANMsg(byte[] transfer, int startoffset)
            {
                var ans = new uavcan_protocol_enumeration_Indication();

                ans.decode(new DroneCAN.CanardRxTransfer(transfer.Skip(startoffset).ToArray()));
                return(ans);
            }
        static void _decode_uavcan_protocol_enumeration_Indication(CanardRxTransfer transfer, ref uint32_t bit_ofs, uavcan_protocol_enumeration_Indication msg, bool tao)
        {
            bit_ofs += 6;

            _decode_uavcan_protocol_param_NumericValue(transfer, ref bit_ofs, msg.value, false);

            if (!tao)
            {
                canardDecodeScalar(transfer, bit_ofs, 7, false, ref msg.parameter_name_len);
                bit_ofs += 7;
            }
            else
            {
                msg.parameter_name_len = (uint8_t)(((transfer.payload_len * 8) - bit_ofs) / 8);
            }

            msg.parameter_name = new uint8_t[msg.parameter_name_len];
            for (int i = 0; i < msg.parameter_name_len; i++)
            {
                canardDecodeScalar(transfer, bit_ofs, 8, false, ref msg.parameter_name[i]);
                bit_ofs += 8;
            }
        }
        static uint32_t decode_uavcan_protocol_enumeration_Indication(CanardRxTransfer transfer, uavcan_protocol_enumeration_Indication msg)
        {
            uint32_t bit_ofs = 0;

            _decode_uavcan_protocol_enumeration_Indication(transfer, ref bit_ofs, msg, true);
            return((bit_ofs + 7) / 8);
        }
 static void encode_uavcan_protocol_enumeration_Indication(uavcan_protocol_enumeration_Indication msg, dronecan_serializer_chunk_cb_ptr_t chunk_cb, object ctx)
 {
     uint8_t[] buffer = new uint8_t[8];
     _encode_uavcan_protocol_enumeration_Indication(buffer, msg, chunk_cb, ctx, true);
 }