186 #include "stdio.h, Int main(int argc, char* argv[]), Vistatus stat; /* for checking errors – BNC 1105 Universal Counter User Manual

Page 186: Visession defaultrm; /* communication channels, Visession sesn; /* communication channel, Viuint32 ret; /* to hold number of resources, Vifindlist flist; /* to hold list of resources, Char readin[128, Int tmo, Printf(" we check the counter on usb port and\n")

Advertising
background image

186

186

186

186

#include "stdio.h"

int main(int argc, char* argv[])

{

ViStatus stat; /* For checking errors */

ViSession defaultRM; /* Communication channels */

ViSession sesn; /* Communication channel */

ViChar rsrcName[VI_FIND_BUFLEN]; /* Serial resource name */

ViChar intfDesc[VI_FIND_BUFLEN]; /* Port binding description */

ViUInt32 ret; /* To hold number of resources */

ViFindList flist; /* To hold list of resources */

char readin[128]="";

int tmo;

printf("\n ###### Start C++ Example program. ######\n");

printf(" We check the Counter on USB port and\n");

printf(" identify the first connected device.\n\n");

/* Begin by initializing the system */

stat = viOpenDefaultRM(&defaultRM);

if (stat < VI_SUCCESS) {

/* Error Initializing VISA...exiting */

printf ("Error Initializing NI-VISA...");

return 0;

}

stat = viFindRsrc (defaultRM, "USB[0-9]::0x164E::0x0FA4::?*INSTR",

&flist, &ret, rsrcName);

stat = viOpen (defaultRM, rsrcName, VI_NULL, VI_NULL, &sesn);

if (stat < VI_SUCCESS)

{

printf ("Could not open %s, status = 0x%08lX\n",rsrcName, stat);

return 0;

}

else

Advertising