USRP Hardware Driver and USRP Manual Version: 4.7.0.0-0-unknown
UHD and USRP Manual
 
Loading...
Searching...
No Matches
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>
12#include <map>
13#include <memory>
14#include <vector>
15
16namespace uhd { namespace features {
17
23{
24public:
25 using sptr = std::shared_ptr<adc_self_calibration_iface>;
26
28 {
29 return discoverable_feature::ADC_SELF_CALIBRATION;
30 }
31
32 std::string get_feature_name() const
33 {
34 return "ADC Self Calibration";
35 }
36
37 virtual ~adc_self_calibration_iface() = default;
38
40 // reconfigure both the specified RX channel as well as the matching
41 // TX channel for the operation.
42 //
43 // If you would like to calibrate the ADCs without interrupting the
44 // signal chain, use the rx_codec/<n>/calibration_frozen property on the
45 // motherboard's property tree.
46 virtual void run(const size_t chan) = 0;
47
49 // parameters.
50 virtual void run(const size_t chan, const uhd::device_addr_t params) = 0;
51};
52
53}} // namespace uhd::features
Definition device_addr.hpp:38
Definition adc_self_calibration_iface.hpp:23
static discoverable_feature::feature_id_t get_feature_id()
Definition adc_self_calibration_iface.hpp:27
virtual void run(const size_t chan, const uhd::device_addr_t params)=0
Runs calibration on the specified channel but takes custom calibration.
std::string get_feature_name() const
Returns a human-readable string name of this feature.
Definition adc_self_calibration_iface.hpp:32
std::shared_ptr< adc_self_calibration_iface > sptr
Definition adc_self_calibration_iface.hpp:25
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
#define UHD_API
Definition config.h:87
Definition build_info.hpp:12