uhd/host/examples/python/CMakeLists.txt
Virendra Kakade 33a869892f examples: L band capture example using dual rate
This example demonstrates the simultaneous capture of the entire L-band
which extends from 1 GHz to 2.4 GHz using one channel on each of the two
radios using the dual rate feature. This is supported ionly on the X440 device.
Read the comments in the example for details.

Does the following:
- Sets up connections in rfnoc graph
- Configures radios and dual replay blocks
- Synchronously captures data and streams to replay block
- Fetches data to host and plots a windowed FFT.
- Repeat.

Signed-off-by: Virendra Kakade <virendra.kakade@ni.com>
Co-authored-by: Martin Anderseck <martin.anderseck@ni.com>
2023-10-27 15:43:18 -05:00

20 lines
422 B
CMake

#
# Copyright 2017-2018 Ettus Research, a National Instruments Company
#
# SPDX-License-Identifier: GPL-3.0-or-later
#
set(python_examples
replay_capture.py
rx_to_file.py
tx_waveforms.py
curses_fft.py
benchmark_rate.py
usrp_power_meter.py
remote_rx.py
x440_L_band_capture.py
)
UHD_INSTALL(PROGRAMS ${python_examples}
DESTINATION ${PKG_LIB_DIR}/examples/python
COMPONENT examples)