Feedback on NI Community

cancel
Showing results for 
Search instead for 
Did you mean: 

How to verify if the card 6023E is connected ?

I would like to know which function in NI-Daq version 6.9 used to test if a 6023-E card is connected to the PC. I programing on C++ Builder 6
0 Kudos
Message 1 of 3
(4,298 Views)
Sir,
I believe that you have posted to the incorrect location. You should probably post this question to the DAQ forums, which you can locate here:
http://exchange.ni.com/servlet/ProcessRequest?RHIVEID=101&RPAGEID=2&UCATEGORY_0=_12&UCATEGORY_S=0&RSESSION=101_10425:d61d6e7bb7d06de1a99f96b9:1039537644320
Please post back if you have any questions.
Thanks,
Daniel McChane
Forum Administrator
0 Kudos
Message 2 of 3
(4,298 Views)
Hello,

You can use the Init_DA_Brds() function to determine if you board is installed. You'll need to look at the NI-DAQ Function Reference Manual for more information on this function. You specify the device number you want to check. It will return a device code for the type of board installed with that device number (if one is even installed.) You can then compare the device code returned with the one that represents the 6023E from the table in the reference manual. It should be 267 for a PCI-6023E.

Commonly, people will call this function in a loop to go through device number 1 through n checking for boards.

I hope this helps.

-Russell
Applications Engineer
National Instruments
http://www.ni.com/support
0 Kudos
Message 3 of 3
(4,297 Views)