コード例 #1
0
        static uint32_t decode_uavcan_protocol_file_Path(CanardRxTransfer transfer, uavcan_protocol_file_Path msg)
        {
            uint32_t bit_ofs = 0;

            _decode_uavcan_protocol_file_Path(transfer, ref bit_ofs, msg, true);
            return((bit_ofs + 7) / 8);
        }
コード例 #2
0
            public static uavcan_protocol_file_Path ByteArrayToDroneCANMsg(byte[] transfer, int startoffset)
            {
                var ans = new uavcan_protocol_file_Path();

                ans.decode(new DroneCAN.CanardRxTransfer(transfer.Skip(startoffset).ToArray()));
                return(ans);
            }
コード例 #3
0
 static void _encode_uavcan_protocol_file_Path(uint8_t[] buffer, uavcan_protocol_file_Path msg, uavcan_serializer_chunk_cb_ptr_t chunk_cb, object ctx, bool tao)
 {
     if (!tao)
     {
         memset(buffer, 0, 8);
         canardEncodeScalar(buffer, 0, 8, msg.path_len);
         chunk_cb(buffer, 8, ctx);
     }
     for (int i = 0; i < msg.path_len; i++)
     {
         memset(buffer, 0, 8);
         canardEncodeScalar(buffer, 0, 8, msg.path[i]);
         chunk_cb(buffer, 8, ctx);
     }
 }
コード例 #4
0
        static void _decode_uavcan_protocol_file_Path(CanardRxTransfer transfer, ref uint32_t bit_ofs, uavcan_protocol_file_Path msg, bool tao)
        {
            if (!tao)
            {
                canardDecodeScalar(transfer, bit_ofs, 8, false, ref msg.path_len);
                bit_ofs += 8;
            }
            else
            {
                msg.path_len = (uint8_t)(((transfer.payload_len * 8) - bit_ofs) / 8);
            }

            msg.path = new uint8_t[msg.path_len];
            for (int i = 0; i < msg.path_len; i++)
            {
                canardDecodeScalar(transfer, bit_ofs, 8, false, ref msg.path[i]);
                bit_ofs += 8;
            }
        }
コード例 #5
0
 static void encode_uavcan_protocol_file_Path(uavcan_protocol_file_Path msg, uavcan_serializer_chunk_cb_ptr_t chunk_cb, object ctx)
 {
     uint8_t[] buffer = new uint8_t[8];
     _encode_uavcan_protocol_file_Path(buffer, msg, chunk_cb, ctx, true);
 }