aboutsummaryrefslogtreecommitdiffstats
path: root/host/docs/power.dox
Commit message (Collapse)AuthorAgeFilesLines
* docs: Fix missing section header in power level controls pageMartin Braun2021-04-191-1/+1
|
* cal: Add switch documentationLars Amsel2020-06-151-2/+24
| | | | | | | | | Add chapter to explain usage of supported switch classes which handle connection of DUT and measurement devices. Documentation is done for ManualSwitch (default) and NI switch for devices that can be used by the niswitch Python package. Co-authored-by: Martin Braun <martin.braun@ettus.com>
* utils/python: Add uhd_power_cal scriptMartin Braun2020-05-281-0/+117
| | | | This is a tool for running power calibration.
* uhd: Add reference power level API to multi_usrp and radio_controlMartin Braun2020-04-171-0/+154
This adds the following API calls: - multi_usrp::has_{rx,tx}_power_reference() - multi_usrp::set_{rx,tx}_power_reference() - multi_usrp::get_{rx,tx}_power_reference() - radio_control::has_{rx,tx}_power_reference() - radio_control::set_{rx,tx}_power_reference() - radio_control::get_{rx,tx}_power_reference() It also adds a manual page explaining the philosophy of the API. Note that this does not actually add this feature to any device implementation. Calling the new API calls will thus result in `uhd::not_implemented_error` exceptions being thrown. This commit is to lock down the API and ABI.