I currently have the following commands to generate a 2MHz clock signal on PFI8, which is Port 2, Channel 0:
DAQmxCreateTask("",&CtrtaskHandle);
DAQmxCreateCOPulseChanFreq(CtrtaskHandle,"Dev1/ctr0","",DAQmx_Val_Hz,DAQmx_Val_Low,0,2000000,0.5);
DAQmxSetCOPulseTerm(CtrtaskHandle, "Dev1/ctr0", "/Dev1/PFI8");
DAQmxConnectTerms("/Dev1/Ctr0InternalOutput", "/Dev1/PFI8", DAQmx_Val_DoNotInvertPolarity);
DAQmxCfgImplicitTiming(CtrtaskHandle,DAQmx_Val_ContSamps,2000000);
DAQmxStartTask(CtrtaskHandle);
I am trying to find the equivalent logic that can be used to perform the same operations on Port 0 Channel 0, however I understand that the hardware between Port 0 and Port 2 are different, so the clock has to be generated in a different way.
Can anyone give me some guidance on how I can go about doing this? Based on the documentation, "PFI8" is the name given to Port 2, Channel 0 and it appears that Port 0, Channel 0 is simply called "P0.0", however I get the attached errors when trying to reassign the function calls to P0.0.