A SERVICE OF

logo

Agilent E1441A Application Information 63
Chapter 2
/* close the device session */
viClose(funcgen);
} /* end of main */
/*** Error handling function ***/
void err_handler(ViSession funcgen, ViStatus err)
{
char buf[1024] = {0};
viStatusDesc(funcgen, err, buf);
printf("ERROR = %s\n", buf);
return;
}