02-06-2007 01:45 PM
02-08-2007 07:30 PM
02-09-2007 10:44 AM
Hi. I am actually running this in a loop to find out if any DAQ instrument is there in my PXI chassis.
I am opening a visa session to all instruments and getting their PXI base address. I then compare the both the addresses to find out if it is a DAQ instrument.
for(Index = 1;Index < 18; Index++) // Index limit is 18 necause we are using a 18 slot PXI chassis
{
Get_DAQ_Device_Info (Index , ND_BASE_ADDRESS, &pxi_base_add);
if(visa_pxi_add == pxi_base_add)
bDaqInstrFound = true;
}
Hope this information is helpful
02-12-2007 03:05 PM
02-14-2007 10:33 AM
02-15-2007 01:41 PM - edited 02-15-2007 01:41 PM
Message Edited by David L. on 02-15-2007 01:43 PM