USRP Hardware Driver and USRP Manual Version: 4.3.0.0+ds1-5
UHD and USRP Manual
adc_self_calibration_iface.hpp
Go to the documentation of this file.
1//
2// Copyright 2020 Ettus Research, a National Instruments Brand
3//
4// SPDX-License-Identifier: GPL-3.0-or-later
5//
6
7#pragma once
8
9#include <uhd/config.hpp>
11#include <memory>
12
13namespace uhd { namespace features {
14
20{
21public:
22 using sptr = std::shared_ptr<adc_self_calibration_iface>;
23
25 {
27 }
28
29 std::string get_feature_name() const
30 {
31 return "ADC Self Calibration";
32 }
33
34 virtual ~adc_self_calibration_iface() = default;
35
37 // reconfigure both the specified RX channel as well as the matching
38 // TX channel for the operation.
39 //
40 // If you would like to calibrate the ADCs without interrupting the
41 // signal chain, use the rx_codec/<n>/calibration_frozen property on the
42 // motherboard's property tree.
43 virtual void run(const size_t chan) = 0;
44};
45
46}} // namespace uhd::features
Definition: adc_self_calibration_iface.hpp:20
static discoverable_feature::feature_id_t get_feature_id()
Definition: adc_self_calibration_iface.hpp:24
std::string get_feature_name() const
Returns a human-readable string name of this feature.
Definition: adc_self_calibration_iface.hpp:29
std::shared_ptr< adc_self_calibration_iface > sptr
Definition: adc_self_calibration_iface.hpp:22
virtual void run(const size_t chan)=0
Runs calibration on the specified channel. This will momentarily.
Definition: discoverable_feature.hpp:26
feature_id_t
An enum of all features supported by the driver. When creating a new.
Definition: discoverable_feature.hpp:32
@ ADC_SELF_CALIBRATION
Definition: discoverable_feature.hpp:36
#define UHD_API
Definition: config.h:87
Definition: build_info.hpp:12