Hi
First two points..
1. National Instruments (NI) doesn’t ship any API or examples to configure the DAC in interpolation mode. NI does not test this feature’s functionality. This feature should work assuming the other features are working correctly. But we haven’t done an in-depth analysis to determine if there are any cases where a component can fail but leave the supported features still available and working correctly.
2. The AO channels are AC coupled. In interpolation DAC mode, components of generated waveforms below ~250 KHz may not be generated as expected.
However, it should be possible to implement the interpolating DAC mode. First of all, I would advise you to read the DAC datasheet to learn how this mode is supposed to work. Then, my recommendation would be to open the VI called "ni5640R DAC Configure for Quadrature Mode.vi" and save it with a different name, like "ni5640R DAC Configure for Interpolation Mode.vi".
Inside these VI's, there are several clusters of settings that are passed to DAC Program. The 'Operation' cluster has a 'Mode' field that can be set to 'Interpolating'. You may need to compare the other settings to the Datasheet to configure the DAC for your needs. You can also drill down into DAC Program and see exactly how the DAC registers are being set.
Open the block diagram, and change the cluster from "Quadrature Modulation" to "Interpolating DAC". (See screenshots)
In interpolating DAC mode, the Transmit/Center Frequency doesn't mean anything, because the board is not upconverting to any frequency, it's just resampling the waveform you write to it. For the same reason, complex IQ waveforms are not used in interpolating DAC mode, but real waveforms. As shown in the following image, create a waveform based upon the sample rate that is available for a given interpolation rate. Due to the method that the NI 5640R transfers data to the DAC, the waveform must be decimated, converted to I16, and then combined to U32. Each U32 data type will contain sample(X) and sample(X+1). (Note: The NI 5640R uses the lower 14 bits of the I16 data type to transfer data to the DAC.)
Attached is an example converted from the ni5640R Analog Input and Output example that ships with the ni5640R software showing the steps used to implement the interpolating DAC mode. It is created using LabVIEW 8.2.1.
Jerry
Message Edited by Jerry_L on
02-22-2008 05:08 PM