aboutsummaryrefslogtreecommitdiffstats
path: root/host/docs/power.dox
Commit message (Collapse)AuthorAgeFilesLines
* 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.