cscpi_overlap()
NAME
cscpi_overlap − Compiled SCPI Commands
SYNOPSIS
cscpi_overlap (mode) ;
DESCRIPTION
This is a Compiled SCPI function. The compiled SCPI overlap function turns the overlapped mode of operation ON or OFF. This mode of operation allows overlapping commands to be executed in parallel.
PARAMETERS
mode
Determines if overlapped will be ON or OFF. mode is an integer. A non-zero number turns overlapped ON, and a 0 turns it OFF.
COMMENTS
Before using the overlapped mode, see chapter 5, "Overlapped Mode," in the Compiled SCPI User’s Guide for information on possible side effects.
Overlapped mode is set to 0 (OFF) by the C-SCPI INST_STARTUP command.
EXAMPLE
This example shows how to turn the C-SCPI overlapped mode ON.
main ()
{
int mode = 1;
.
.
cscpi_overlap (mode);
.
.
}
— December 04, 1992