USRP Hardware Driver and Device Manual  Version: 4.10.0.0-0-g2af4ddb9
UHD and USRP Manual
discoverable_feature.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>
10 #include <stddef.h>
11 #include <memory>
12 #include <string>
13 
14 namespace uhd { namespace features {
15 
26 {
27 public:
28  using sptr = std::shared_ptr<discoverable_feature>;
29 
31  // feature, you should add an entry to this enum.
32  enum feature_id_t {
42  GPS,
44  RX_COMPLEX_GAIN
45  };
46 
47  virtual ~discoverable_feature() = default;
48 
50  virtual std::string get_feature_name() const = 0;
51 };
52 
53 }} // namespace uhd::features
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
@ REF_CLK_CALIBRATION
Definition: discoverable_feature.hpp:37
@ GPS
Definition: discoverable_feature.hpp:42
@ RESERVED0
Definition: discoverable_feature.hpp:33
@ INTERNAL_SYNC
Definition: discoverable_feature.hpp:41
@ ADC_SELF_CALIBRATION
Definition: discoverable_feature.hpp:36
@ TRIG_IO_MODE
Definition: discoverable_feature.hpp:38
@ FPGA_LOAD_NOTIFICATION
Definition: discoverable_feature.hpp:35
@ TX_COMPLEX_GAIN
Definition: discoverable_feature.hpp:43
@ RESERVED1
Definition: discoverable_feature.hpp:34
@ GPIO_POWER
Definition: discoverable_feature.hpp:39
@ SPI_GETTER_IFACE
Definition: discoverable_feature.hpp:40
std::shared_ptr< discoverable_feature > sptr
Definition: discoverable_feature.hpp:28
virtual ~discoverable_feature()=default
virtual std::string get_feature_name() const =0
Returns a human-readable string name of this feature.
#define UHD_API
Definition: config.h:87
Definition: build_info.hpp:12