08-25-2005 08:05 PM
08-26-2005 02:09 AM
08-26-2005 08:46 AM
Hi Lul,
and thanks a lot for the quick reply!!!
I am not sure what you mean by a 'simple init'. As far as I know, the 'IviScope Initialize With Options.vi' is a fundamental VI in communicating to an IVI scope, and is the only way to transform a scope's 'logical name' into an 'instrument handle'. From that I assume either you mean "use the VISA session" (which would be my last, desperate option), or you might have some useful information that I am not aware of (and I relay hope this is the case).
Waiting for the enlightenment...
Malosh
08-26-2005 08:50 AM
There are two ways to open an IVI driver session - you can call "Init With Options," or you can call "Init".
I checked the Tektronix web site on a hunch that turned out to be correct. The Tektronix driver for the 7000 series is an IVI-COM driver. IVI-COM has a different interchangeability model than IVI-C. IVI-COM interchangeability is based on the use of COM interfaces defined by the IVI Foundation, rather than on the use of class drivers as in IVI-C. An IVI-COM driver can not be used with an IVI-C class driver. That is why you are getting the error - the IVI-COM dll does not expose the IVI-C entry points that the class driver is looking for.
08-26-2005 06:38 PM
Hi Glenn,
The "init" VI is just another hierarchy on top of the "init with options" so that's why I referred to the last as the "only one"...
Anyway, what your saying about IVI-COM drivers is completely new for me!
Do I still have a way to use this IVI driver or have lost the battle?
08-29-2005
11:51 AM
- last edited on
11-12-2025
09:07 AM
by
Content Cleaner
Hi Malosh,
I'm not sure if you are trying to use a resource name or a logical name to pass to the Init With Options VI. Try using a string constant in place of the VISA resource constant, and pass the resource address to Init WithOptions. I've heard of VISA resource name constants being an issue with some drivers.
For more info in IVI-COM vs. IVI-C drivers, visit here:
http://www.ni.com/ivi/c_com.htm
08-29-2005
11:59 AM
- last edited on
11-12-2025
09:08 AM
by
Content Cleaner