Hello Lbaz,
Do you know what National Instruments DAQ driver the pine driver uses? The newer, more popular driver is NI-DAQmx. The other alternative would be Traditional NI-DAQ (Legacy). In order for pine's software to run, you would need to have one or the other of these drivers installed. Does their software include a National Instruments DAQ driver? Have they included instructions on which driver to download?
If their C code uses Traditional NI-DAQ (Legacy) it would have function calls that looked like:
AI_Configure();
AI_Read();
DIG_Out_Prt();
etc.
If they use the NI-DAQmx driver the function calls would look like:
DAQmxCreateAIVoltageChan();
DAQmxCfgSampClkTiming();
DAQmxWriteAnalogF64();
etc.
Where all the NI-DAQmx functions begin with the term "DAQmx". The ability to use this code on an M Series device (like the PCI-6221) will depend on which driver it utilizes.
Matt Anderson
Hardware Services Marketing Manager
National Instruments