Initialization is using 1 function to initialize GPIB board.
Termination is using 1 function to release GPIB board.
Example:
Initialization |
long Ret; short DevId;
Ret = GpibInit ( "Gpib000" , &DevId ); // Specifies device name, retrieves Device ID to use for using specified device in function. |
Termination |
Ret = GpibExit ( DevId ); // Performs release of specified device. |