Chapter 6 Application Programs
Example Program for C and C++
137
6
if(bHPIB){ /* For use with HP-IB 7 address, use "GPIB::7::INSTR" address format */
strcpy(VISA_address,"GPIB::");
strcat(VISA_address,HPIB_Address);
strcat(VISA_address,"::INSTR");
}
else{ /* For use with COM2 port, use "ASRL2::INSTR" address format */
strcpy(VISA_address,"ASRL");
strcat(VISA_address,COM_Address);
strcat(VISA_address,"::INSTR");
}
/* Open communication session with the power supply */
ErrorStatus = viOpenDefaultRM(&defaultRM);
ErrorStatus = viOpen(defaultRM,VISA_address,0,0,&power_supply);
CheckError("Unable to open port");
if(!bHPIB)
SendSCPI("System:Remote");
}
void
SendSCPI(char* pString)
{
char* pdest;
strcpy(commandString,pString);
strcat(commandString,"\n");
ErrorStatus = viPrintf(power_supply,commandString);
CheckError("Can’t Write to Driver");
if (bHPIB == 0)
delay(1000);
/* Unit is milliseconds */
pdest = strchr(commandString, ’?’);
/* Search for query command */
if( pdest != NULL ){
ErrorStatus = viScanf(power_supply,"%s",&ReadBuffer);
CheckError("Can’t Read From Driver");
strcpy(pString,ReadBuffer);
}
}
void
ClosePort()
{
/* Close the communication port */
viClose(power_supply);
viClose(defaultRM);
}
Continued on next page
Summary of Contents for E3633A
Page 9: ...8 ...
Page 14: ...1 General Information ...
Page 25: ...Chapter 1 General Information Input Power Requirements 24 ...
Page 26: ...2 Initial Operation ...
Page 33: ...Chapter 2 Initial Operation Output Checkout 32 ...
Page 34: ...3 Front Panel Operation ...
Page 74: ...4 Remote Interface Reference ...
Page 124: ...5 Error Messages ...
Page 134: ...6 Application Programs ...
Page 145: ...Chapter 6 Application Programs Example Program for Excel 97 144 ...
Page 146: ...7 Tutorial ...
Page 162: ...8 Specifications ...
Page 169: ...Chapter 8 Specifications Supplemental Characteristics 168 ...
Page 175: ......