USRP Hardware Driver and USRP Manual  Version: 4.6.0.0-7-gece7c4811
UHD and USRP Manual
trig_io_mode_iface.hpp
Go to the documentation of this file.
1 //
2 // Copyright 2021 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 <memory>
13 #include <string>
14 
15 namespace uhd { namespace features {
16 
21 {
22 public:
23  using sptr = std::shared_ptr<trig_io_mode_iface>;
24 
26  {
28  }
29 
30  std::string get_feature_name() const
31  {
32  return "Trig IO Mode";
33  }
34 
35  virtual ~trig_io_mode_iface() = default;
36 
38  virtual void set_trig_io_mode(const uhd::trig_io_mode_t mode) = 0;
39 };
40 
41 }} // namespace uhd::features
Definition: trig_io_mode_iface.hpp:20
feature_id_t
An enum of all features supported by the driver. When creating a new.
Definition: discoverable_feature.hpp:32
Definition: build_info.hpp:12
Definition: discoverable_feature.hpp:25
std::string get_feature_name() const
Returns a human-readable string name of this feature.
Definition: trig_io_mode_iface.hpp:30
#define UHD_API
Definition: config.h:87
Definition: discoverable_feature.hpp:38
static discoverable_feature::feature_id_t get_feature_id()
Definition: trig_io_mode_iface.hpp:25
trig_io_mode_t
Definition: trig_io_mode.hpp:11
std::shared_ptr< discoverable_feature > sptr
Definition: discoverable_feature.hpp:28