cscpi_get_overlap()
NAME
cscpi_get_overlap − Compiled SCPI Commands
SYNOPSIS
int cscpi_get_overlap ( ) ;
DESCRIPTION
This is a Compiled SCPI function. The compiled SCPI get overlap function returns an integer value that tells if the overlapped mode is ON (1) or OFF (0).
PARAMETERS
none
COMMENTS
none
EXAMPLE
This example shows one way to use the C-SCPI get overlapped function.
main ()
{
int old_mode;
int new_mode=1;
.
old_mode = cscpi_get_overlap ();
cscpi_overlap (new_mode);
.
.
cscpi_overlap(old_mode);
}
— December 04, 1992