我这个64个通道生成一个采集任务。
nRet =DAQmxSetExportedSignalAttribute(g_SampleSensor1Handle,DAQmx_Exported_SampClk_OutputTerm,"/cDAQ1/PFI0");
nRet =DAQmxSetExportedSignalAttribute(g_SampleSensor1Handle,DAQmx_Exported_StartTrig_OutputTerm,"/cDAQ1/PFI1");
nRet = DAQmxCfgSampClkTiming(g_SampleSensor1Handle, "/cDAQ2/PFI0",g_SampleParam.RateChan1, DAQmx_Val_Rising,
DAQmx_Val_ContSamps, g_SampleParam.SampleNum*100);
nRet = DAQmxCfgDigEdgeStartTrig (g_SampleSensor1Handle,"/cDAQ2/PFI1",DAQmx_Val_Rising);
我这样设置,在读取时,提示terminal device is invalid. 应该怎么设置
在Lab/windows CVI 平台上 用C语言开发的