mirror of
https://github.com/saymrwulf/uhd.git
synced 2026-05-16 21:10:10 +00:00
This is an example that allows capturing RF data into DRAM, and then stream it back to host, using the Python API.
18 lines
378 B
CMake
18 lines
378 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
|
|
)
|
|
|
|
UHD_INSTALL(PROGRAMS ${python_examples}
|
|
DESTINATION ${PKG_LIB_DIR}/examples/python
|
|
COMPONENT examples)
|