USRP Hardware Driver and USRP Manual  Version: 4.9.0.0
UHD and USRP Manual
ref_clk_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 <cstdint>
12 #include <memory>
13 
14 namespace uhd { namespace features {
15 
22 {
23 public:
24  using sptr = std::shared_ptr<ref_clk_calibration_iface>;
25 
27  {
29  }
30 
31  std::string get_feature_name() const
32  {
33  return "Ref Clk Calibration";
34  }
35 
36  virtual ~ref_clk_calibration_iface() = default;
37 
39  virtual void set_ref_clk_tuning_word(uint32_t tuning_word) = 0;
41  virtual uint32_t get_ref_clk_tuning_word() = 0;
43  virtual void store_ref_clk_tuning_word(uint32_t tuning_word) = 0;
44 };
45 
46 }} // namespace uhd::features
discoverable_feature.hpp
config.hpp
uhd::features::ref_clk_calibration_iface::get_feature_name
std::string get_feature_name() const
Returns a human-readable string name of this feature.
Definition: ref_clk_calibration_iface.hpp:31
UHD_API
#define UHD_API
Definition: config.h:87
uhd::features::ref_clk_calibration_iface
Definition: ref_clk_calibration_iface.hpp:21
uhd::features::discoverable_feature::feature_id_t
feature_id_t
An enum of all features supported by the driver. When creating a new.
Definition: discoverable_feature.hpp:32
uhd
Definition: build_info.hpp:12
uhd::features::discoverable_feature::REF_CLK_CALIBRATION
@ REF_CLK_CALIBRATION
Definition: discoverable_feature.hpp:37
uhd::features::discoverable_feature
Definition: discoverable_feature.hpp:25
uhd::features::discoverable_feature::sptr
std::shared_ptr< discoverable_feature > sptr
Definition: discoverable_feature.hpp:28
uhd::features::ref_clk_calibration_iface::get_feature_id
static discoverable_feature::feature_id_t get_feature_id()
Definition: ref_clk_calibration_iface.hpp:26