Newer
Older
AutomaticVerification / softwareDirectory / AutoVerScheme / visacommonengine.h
陈实 on 12 Mar 2024 488 bytes 增加检定点核查点设置
#ifndef VISACOMMONENGINE_H
#define VISACOMMONENGINE_H
#include "visa.h"
#include <QString>

class VisaCommonEngine
{
public:
    VisaCommonEngine();
    QString queryData();
    bool sendData(QString strData);
private:
    bool openDevice();
private:
    ViSession defaultRM;
    ViSession instr;
    ViUInt32 retCount;
    ViUInt32 writeCount;
    ViStatus status;
    unsigned char buffer[100];
    char stringinput[512];
    ViConstRsrc remoteAddr="";
};

#endif // VISACOMMONENGINE_H