static void _encode_uavcan_protocol_file_Read_req(uint8_t[] buffer, uavcan_protocol_file_Read_req msg, uavcan_serializer_chunk_cb_ptr_t chunk_cb, object ctx, bool tao)
 {
     memset(buffer, 0, 8);
     canardEncodeScalar(buffer, 0, 40, msg.offset);
     chunk_cb(buffer, 40, ctx);
     _encode_uavcan_protocol_file_Path(buffer, msg.path, chunk_cb, ctx, tao);
 }
            public static uavcan_protocol_file_Read_req ByteArrayToDroneCANMsg(byte[] transfer, int startoffset)
            {
                var ans = new uavcan_protocol_file_Read_req();

                ans.decode(new DroneCAN.CanardRxTransfer(transfer.Skip(startoffset).ToArray()));
                return(ans);
            }
        static void _decode_uavcan_protocol_file_Read_req(CanardRxTransfer transfer, ref uint32_t bit_ofs, uavcan_protocol_file_Read_req msg, bool tao)
        {
            canardDecodeScalar(transfer, bit_ofs, 40, false, ref msg.offset);


            bit_ofs += 40;



            _decode_uavcan_protocol_file_Path(transfer, ref bit_ofs, msg.path, tao);
        }
        static uint32_t decode_uavcan_protocol_file_Read_req(CanardRxTransfer transfer, uavcan_protocol_file_Read_req msg)
        {
            uint32_t bit_ofs = 0;

            _decode_uavcan_protocol_file_Read_req(transfer, ref bit_ofs, msg, true);
            return((bit_ofs + 7) / 8);
        }
 static void encode_uavcan_protocol_file_Read_req(uavcan_protocol_file_Read_req msg, dronecan_serializer_chunk_cb_ptr_t chunk_cb, object ctx)
 {
     uint8_t[] buffer = new uint8_t[8];
     _encode_uavcan_protocol_file_Read_req(buffer, msg, chunk_cb, ctx, true);
 }