Newer
Older
RbFreqStand / RbFreqStandMeasure / R_DevService / Service / GPIBService.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace Casic.Birmm.RbFreqStandMeasure.R_DevService.Service
{
    public interface GPIBService
    {
        /// <summary>
        /// 获取GPIB设备
        /// </summary>
        /// <returns></returns>
        string[] getId();

        int open(string id);

        bool isOpen();

        int close();

        int write(string content);

        string read();

    }
}