Hi Zorniki-
Yes, you can route counter signals to DIO lines by using the DIO lines in the appropriate PFI context.
In the Traditional NI-DAQ Function Reference Help I mentioned before, search in the index for "Select Signal Parameter Discussion for 606X devices" (the 606X is entered incorrectly in the index of the help file, but the article actually refers to 66XX cards). This article gives the proper syntax for using PFIx as a parameter in Select_Signal.
You can then use Select_Signal twice to route the counter signal to the virtual RTSI bus and then retrieve it and assign to the PFI line. The procedure to accomplish this is listed in the same help file for Select_Signal with this example provided:
---
Example
To send a signal from your E Series device to the RTSI bus, set signal to the appropriate RTSI bus line and source to indicate the signal from your device. To send the analog input start trigger on to RTSI line 3, use the following call:
Select_Signal(deviceNum, ND_RTSI_3, ND_IN_START_TRIGGER, ND_LOW_TO_HIGH);
Example
To receive a signal from the RTSI bus and use it as a signal on your E Series device, set signal to indicate the appropriate E Series device signal and source to the appropriate RTSI line. To use low-to-high transitions of the signal present on the RTSI line 4 as your scan clock, use the following call:
Select_Signal(deviceNum, ND_IN_SCAN_START, ND_RTSI_4, ND_LOW_TO_HIGH);
---
Regards,
Tom W
National Instruments