I am using a GPIB-ENET/100 device for the first time in a LabWindows CVI
project. I have an HP8903B audio analyzer as one of the GPIB devices.
I downloaded and am attempting to use the driver as indicated by the
following excerpt from the file;
/*= HP 8903B AUDIO ANALYSER ===============================================*/
/* LabWindows 2.3 Instrument Driver */
/* Original Release: August 1994 */
/* . . . .
/* Dec 1999: changed ibwait mask in measure() from 0xc800 */
/* to 0x4100. */
/*================================
=========================================*/
When I attempt to initialize the unit from my CVI program using:
hp8903b_init (GPIB_ADR_HP8903B, 1, &iidHP8903B);
the following error is received:
NON-FATAL RUNTIME ERROR
"HP8903B.C", line 84, col 9
Function ibln: (iberr == 1 [0x1]).
I have traced through the device driver, and everything appears to be fine
up until the call to ibln(). I noticed the following in the help screen for
the ibln() function:
"from ibln() help panel"
Due to hardware limitations, this function is not
available on the GPIB-PC2, GPIB-PC2A, and GPIB-PC CONV
interface boards.
So apparently the ibln() function is not compatible with all GPIB hardware.
Does anyone know if the ibln() function can be used with the GPIB-ENET/100?