User`s guide
Remote Interface (API) Programming Command Reference 6
E6651A User’s Guide 81
Example code: Initialize the Interface(C# syntax)
// Initialize and start the E6651 interface
BYTE mid = 0;
E6651_Init( );
E6651_remoteStart(mid);
Step 4 - Configure the Measurement Parameters
§
Step 5 - Perform the Test
§
Step 6 - Get the Measurement Results
§
Step 7 - Close the Session
End the program and release the test set using the
E6651_close() function. As well as releasing memory space
used by the E6651 API, this also releases the handle on the
VISA resource allowing communication with the test set
through other means.
Example code: Closing the session (C# syntax)
// Close the session
E6651_Close();