We are running Windows 2000, using a firewire controller (with GPIB), VISA 2.6, and VXI 3.2 installed.
We had been using GPIB-VXI, and we were using TrigAsstConf, MapTrigTrig, and UMapTrigTrig commands. Here is exactly what the calls were, and their meanings.
TrigAsstConf(0,2);
line 0 = TTL trig 0.
configmode 2 = binary 010 = Synchronize rising edge of CLK10, Pass trigger through asynchronously, and don't participate in SEMI-SYNC.
MapTrigTrig(42,0,0);
Src 42 = Front Panel In (unbuffered).
Dest 0: = TTL Trig Line 0.
Map Mode: 0 = no signal conditioning.
UMapTrigTrig(42,0);
Same description as above.
We found functions that are equivalent to the above listed function
s in NI-VXI 2.0 library, with pretty much the same options:
TrigAssertConf, MapTrigToTrig, UnMapTrigToTrig
But I can't find any information in the NI-VXI 3.2 help for TrigAssertConf, and VISA's version of MapTrigToTrig (viMapTrigger) does not have a match for the trigger source listed above. What are the VISA 2.6 equivalents?