I have an application using an NI 9205 module configured for 16 differential analog channels. I want to make it so that a user can select which paricular channel/s he/she wants to log data to TDMS. It may only be one channel or could be multiple. Do I need to use AnalogSingleChannelReader or AnalogMultiChannelReader for this? I'm currently using multichannel reader and the application is writing all channels to the TDMS file. However, I'm unsure what more I need to do if indeed AnalogMultiChannelReader is what I need to use. Of course all of the channles that the user selects to log to TDMS need to be logged to a single TDMS file.
' Verify the task MyTask.Control(TaskAction.Verify) reader = New AnalogMultiChannelReader(MyTask.Stream) reader1 = New AnalogSingleChannelReader(mytask.Stream) 'Read the data Dim data() As AnalogWaveform(Of Double) = reader.ReadWaveform(1000) 'Stream each analog channel's data to its respective Waveformgraph wfgCh0.PlotWaveform(data(0)) wfgCh1.PlotWaveform(data(1)) wfgCh2.PlotWaveform(data(2)) wfgCh3.PlotWaveform(data(3)) wfgCh4.PlotWaveform(data(4)) wfgCh5.PlotWaveform(data(5)) wfgCh6.PlotWaveform(data(6)) wfgCh7.PlotWaveform(data(7)) wfgCh8.PlotWaveform(data(8)) wfgCh9.PlotWaveform(data(9)) wfgCh10.PlotWaveform(data(10)) wfgCh11.PlotWaveform(data(11)) wfgCh12.PlotWaveform(data(12)) wfgCh13.PlotWaveform(data(13)) wfgCh14.PlotWaveform(data(14)) wfgCh15.PlotWaveform(data(15))