Loading [MathJax]/extensions/tex2jax.js
USRP Hardware Driver and USRP Manual  Version: 4.8.0.0
UHD and USRP Manual
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
gain_group.hpp
Go to the documentation of this file.
1 //
2 // Copyright 2010-2011,2014 Ettus Research LLC
3 // Copyright 2018 Ettus Research, a National Instruments Company
4 //
5 // SPDX-License-Identifier: GPL-3.0-or-later
6 //
7 
8 #pragma once
9 
10 #include <uhd/config.hpp>
11 #include <uhd/types/ranges.hpp>
13 #include <cstddef>
14 #include <functional>
15 #include <memory>
16 #include <string>
17 #include <vector>
18 
19 namespace uhd {
20 
25 {
26  std::function<gain_range_t(void)> get_range;
27  std::function<double(void)> get_value;
28  std::function<void(double)> set_value;
29 };
30 
32 {
33 public:
34  typedef std::shared_ptr<gain_group> sptr;
35 
36  virtual ~gain_group(void) = 0;
37 
45  virtual gain_range_t get_range(const std::string& name = "") = 0;
46 
53  virtual double get_value(const std::string& name = "") = 0;
54 
63  virtual void set_value(double gain, const std::string& name = "") = 0;
64 
70  virtual const std::vector<std::string> get_names(void) = 0;
71 
86  virtual void register_fcns(
87  const std::string& name, const gain_fcns_t& gain_fcns, size_t priority = 0) = 0;
88 
93  static sptr make(void);
94 
99  static sptr make_zero();
100 };
101 
102 } // namespace uhd
uhd::gain_group
Definition: gain_group.hpp:31
config.hpp
uhd::gain_fcns_t::set_value
std::function< void(double)> set_value
Definition: gain_group.hpp:28
uhd::gain_fcns_t
Definition: gain_group.hpp:24
uhd::gain_fcns_t::get_value
std::function< double(void)> get_value
Definition: gain_group.hpp:27
uhd::gain_fcns_t::get_range
std::function< gain_range_t(void)> get_range
Definition: gain_group.hpp:26
UHD_API
#define UHD_API
Definition: config.h:87
noncopyable.hpp
uhd::gain_group::sptr
std::shared_ptr< gain_group > sptr
Definition: gain_group.hpp:34
uhd
Definition: build_info.hpp:12
ranges.hpp
uhd::gain_range_t
meta_range_t gain_range_t
Definition: ranges.hpp:130
uhd::noncopyable
boost::noncopyable noncopyable
Definition: noncopyable.hpp:45
uhd::meta_range_t
Definition: ranges.hpp:65