01-12-2010 02:27 PM
Solved! Go to Solution.
01-13-2010 04:14 PM
Snood1,
I took a look at the driver and the programmer's manual. It looks to me like the driver behaves as the manual describes it should. The Configure Marker.vi uses the following string to format the command:
%.;:CALC%ld:MARK%ld %s; :CALC%ld:MARK%ld:X %lf
Is this what you are seeing too? It sounds like this is what you added yourself. What was the previous text? This was the text that was there when I downloaded the driver. When interpreted, it looks like this
:CALC1:MARK1 OFF; :CALC1:MARK1:X 0.000000
As described in the ENA Series Programmer's Manual, the first line turns the marker display OFF (page 283). The second line sets the stimulus value of marker 1 (page 295).
Let me know if this looks OK to you.
Regards,
01-13-2010 06:45 PM
Yes, the driver just got fixed, so you are seeing the fixed version. (I submitted the bug both here and via instrument.drivers@ni.com.) (See the "readme" note for version 2.0.1.) I think the old format string was
%.;:CALC%ld:MARK%ld %s;
:CALC%ld:MARK%ld %lf
(The :X was omitted.)
-Joel
01-14-2010 09:04 AM