11-19-2010 03:56 PM
I am getting the link error (Undefined symbol '_Ibsta@0' referenced in "gpib_test_1.c"). I am using Labwindows/CVI to interface with a Ruska 7250 model Pressure sensor using an NI-488.2 GPIB-USB-HS connector. The code that I have is basically copy/pasted from the NI-488.2 User Manual. There are no real compiler errors besides this link error. Any help in resolving this is appreciated. Thank you.
11-20-2010 05:30 PM
This kind of error is usually related to a missing library: have you installed ni488.2 product? And have you checked the corresponding library in Library >> Customize menu?
11-22-2010 05:19 AM
There is no function Ibsta() in the GPIB libraries.
There is, however, a global variable called ibsta - is that what you were looking for?
11-22-2010 12:32 PM
Yep, using the global variable instead of the Ibsta() function call in the manual seems to have worked. Thanks!