Пример #1
0
            public static uavcan_protocol_file_Error ByteArrayToDroneCANMsg(byte[] transfer, int startoffset)
            {
                var ans = new uavcan_protocol_file_Error();

                ans.decode(new DroneCAN.CanardRxTransfer(transfer.Skip(startoffset).ToArray()));
                return(ans);
            }
        static uint32_t decode_uavcan_protocol_file_Error(CanardRxTransfer transfer, uavcan_protocol_file_Error msg)
        {
            uint32_t bit_ofs = 0;

            _decode_uavcan_protocol_file_Error(transfer, ref bit_ofs, msg, true);
            return((bit_ofs + 7) / 8);
        }
Пример #3
0
        static void _encode_uavcan_protocol_file_Error(uint8_t[] buffer, uavcan_protocol_file_Error msg, uavcan_serializer_chunk_cb_ptr_t chunk_cb, object ctx, bool tao)
        {
            memset(buffer, 0, 8);

            canardEncodeScalar(buffer, 0, 16, msg.value);

            chunk_cb(buffer, 16, ctx);
        }
 static void _decode_uavcan_protocol_file_Error(CanardRxTransfer transfer, ref uint32_t bit_ofs, uavcan_protocol_file_Error msg, bool tao)
 {
     canardDecodeScalar(transfer, bit_ofs, 16, true, ref msg.value);
     bit_ofs += 16;
 }
 static void encode_uavcan_protocol_file_Error(uavcan_protocol_file_Error msg, uavcan_serializer_chunk_cb_ptr_t chunk_cb, object ctx)
 {
     uint8_t[] buffer = new uint8_t[8];
     _encode_uavcan_protocol_file_Error(buffer, msg, chunk_cb, ctx, true);
 }