www.vtiinstruments.com
EX10xxA Function Calls 165
vtex10xxA_get_dio_output_enable
FUNCTION PROTOTYPE
ViStatus vtex10xxA_get_dio_output_enable(ViSession vi, ViPInt32 out_enable)
FUNCTION PARAMETERS
vi = contains a session handle to the instrument. This handle is obtained by the function and remains valid until the
session is closed.
out_enable = an integer output value in decimal that represents the output enable state of the 8-bit port. Within the
8-bit field, the MSB corresponds to DIO channel 7 and the LSB corresponds to DIO channel 0. Valid return values:
0 through 255.
DATA ITEM RESET VALUE
Not applicable to this function.
DESCRIPTION
This function returns the output enable state of the digital I/O port.
EXAMPLE
// query status of DIO bit 4
ViInt32 dio_out;
ViInt32 dio_outen;
vtex10xxA_get_dio_output(vi, &dio_out);
vtex10xxA_get_dio_output_enable(vi, &dio_outen);
if (dio_out & 0x10)
printf(“Bit 4 is set high”);
else printf(“Bit 4 is set low”);
if (dio_outen & 0x10)
printf(“Bit 4 is enabled”);
else printf(“Bit 4 is not enabled”);