USRP Hardware Driver and USRP Manual  Version: 4.9.0.0
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
43  };
44 
45  virtual ~discoverable_feature() = default;
46 
48  virtual std::string get_feature_name() const = 0;
49 };
50 
51 }} // namespace uhd::features
config.hpp
uhd::features::discoverable_feature::FPGA_LOAD_NOTIFICATION
@ FPGA_LOAD_NOTIFICATION
Definition: discoverable_feature.hpp:35
uhd::features::discoverable_feature::INTERNAL_SYNC
@ INTERNAL_SYNC
Definition: discoverable_feature.hpp:41
uhd::features::discoverable_feature::ADC_SELF_CALIBRATION
@ ADC_SELF_CALIBRATION
Definition: discoverable_feature.hpp:36
uhd::features::discoverable_feature::GPIO_POWER
@ GPIO_POWER
Definition: discoverable_feature.hpp:39
uhd::features::discoverable_feature::RESERVED0
@ RESERVED0
Definition: discoverable_feature.hpp:33
UHD_API
#define UHD_API
Definition: config.h:87
uhd::features::discoverable_feature::TRIG_IO_MODE
@ TRIG_IO_MODE
Definition: discoverable_feature.hpp:38
uhd::features::discoverable_feature::SPI_GETTER_IFACE
@ SPI_GETTER_IFACE
Definition: discoverable_feature.hpp:40
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::discoverable_feature::RESERVED1
@ RESERVED1
Definition: discoverable_feature.hpp:34