uhd/host/examples/python/CMakeLists.txt
Martin Braun 14ed832af5 examples: Add usrp_power_meter example
This is a utility that can be used to measure received power, assuming
a calibrated device.

For example, it can be called like this:

    usrp_power_meter.py -a type=x300 -f 1e9 --mode continuous

To continuously measure input power at 1 GHz.
2020-05-19 13:30:20 -05:00

17 lines
356 B
CMake

#
# Copyright 2017-2018 Ettus Research, a National Instruments Company
#
# SPDX-License-Identifier: GPL-3.0-or-later
#
set(python_examples
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)