Theory of Operation
- Updated2024-08-15
- 6 minute(s) read
Theory of Operation
DST is designed to allow you to test digital transmit-receive modules (digital TRM).
A digital TRM is a high-performance device that features the following:
- Wide-bandwidth RF-sampling digital-to-analog (DAC), capable of generating one or more channels simultaneously
- Wide-bandwidth RF-sampling analog-to-digital (ADC), capable of acquiring many channels simultaneously
- Many high performance digital signal processing (DSP) functions applied to the stream of data coming to and from the ADCs and DACs
- High-speed serial interface (SERDES) that allows you to transmit (TX) and receive (RX) data at high rate, synchronized by internal or external clocks and triggers
- Control interface, configured using a specific digital protocol such as SPI or LVDS, to set up the device for different speeds, bit widths, and special digital signal processing within the device.
Testing this DUT requires the following tasks:
- Setting up the digital TRM modes of operations and registers though the digital control interface (LVDS/SPI). You can use other NI devices that support LVDS or SPI to accomplish these tasks.
- Synchronizing and coordinating many systems to excite the DUT (through the Digital Signal Transceiver Driver).
- Using the high-speed serial interface to send and receive I/Q signals (through the Digital Signal Transceiver Driver).
- Generating RF test signals and acquiring many RF responses from the RF front end of the device. Use NI-RFmx capabilities with a vector signal transceiver (VST) for measurements or signal generation.
Digital Signal Transceiver Driver
Host API
The DST instrument is a high-speed serial instrument configured to behave like a digital vector signal transceiver though a custom FPGA firmware. The FPGA firmware allows you to:
- Receive data from the serial interface, buffer to the onboard memory, and then transfer the I/Q data to host
- Transfer I/Q data from the host to the onboard memory and transmit to the serial interface using scripts to repeat or start and/or stop at specific events
- Easily convert serial data stream into I/Q data with the option to apply digital signal processing (DSP) functions for improved performance and better control of the data stream for generation of test vectors and correction of measurement signals
The API has four main sections that helps you control different parts of the FPGA code:
High-Speed Serial Communication and
Interface
One of the important features of the Digital Signal Transceiver Driver is its capacity to change the serial protocol used to communicate with a digital TRM. The serial instrument uses a high-performance Xilinx FPGA, and you can incorporate your own protocol for communicating with the device under test (DUT).
To simplify the integration process, NI includes protocols already integrated in LabVIEW to facilitate your development. The following is a list of protocols available for this version of DST, but distributed by other packages:
However, independent of the protocol used, you can use the existing DST API by developing a plug-in interface for high-speed serial. This interface helps you reuse most of the existing offering without changing much of the existing test system. NI provides a bitfile and package file example for you to use for loopback cabling. These files are located at <Program Files>\National Instruments\NI-DST\Firmware\JESD204.
Onboard Digital Signal Processing
The Digital Signal Transceiver Driver firmware features digital signal processing (DSP), which allows you to change I/Q signal properties to generate or acquire more consolidated data and make testing easier. You can apply DSP functions to generation or acquisition independently.
DSP features include:
data out.I = Quantization (data in.I * GI)
data out.Q = Quantization (data in.Q * GQ)
Where:
- GI is 10**(IGaindB/20) applied to the I signal
- GQ is 10**(QGaindB/20) applied to the Q signal
This allows you to change the I and Q gains.
data out.I = Quantization (data in.I + CI)
data out.Q = Quantization (data in.Q + CQ)
Where CI and CQ are the offset value applied to the I and Q signal at the same time, respectively.
This value allows you to change the I and Q offsets.
data out.I = data in.I * cosine (2*pi*DeltaF) - data in.Q * sine (2*pi*DeltaF)
data out.Q = data in.I * sine (2*pi*DeltaF)+ data in.Q * cosine (2*pi*DeltaF)
Where DeltaF is the frequency shift applied to the signal and has the ratio of the DeltaF and data rate between -0.5 and 0.5. When using this function from the host API, you must consider the frequency shift in Hertz—within ±50% of the sampling rate in S/s—to apply to the signal.
You can also use this function to change the phase of the signal by -180° and 180°.
In This Section
Related Information
- Generating an I/Q Waveform
The Digital Signal Transceiver Driver allows you to control the transmission of the I/Q waveform through the high-speed serial and enables the digital TRM to generate an RF signal.
- Acquiring an I/Q Waveform
The Digital Signal Transceiver Driver allows you to receive digital data through the high-speed serial link from the device and emulate acquiring the RF signal in an I/Q waveform from the digital TRM.