USRP Hardware Driver and USRP Manual Version: 4.1.0.3
UHD and USRP Manual
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 <functional>
14#include <memory>
15#include <string>
16#include <vector>
17
18namespace uhd {
19
24{
25 std::function<gain_range_t(void)> get_range;
26 std::function<double(void)> get_value;
27 std::function<void(double)> set_value;
28};
29
31{
32public:
33 typedef std::shared_ptr<gain_group> sptr;
34
35 virtual ~gain_group(void) = 0;
36
44 virtual gain_range_t get_range(const std::string& name = "") = 0;
45
52 virtual double get_value(const std::string& name = "") = 0;
53
62 virtual void set_value(double gain, const std::string& name = "") = 0;
63
69 virtual const std::vector<std::string> get_names(void) = 0;
70
85 virtual void register_fcns(
86 const std::string& name, const gain_fcns_t& gain_fcns, size_t priority = 0) = 0;
87
92 static sptr make(void);
93
98 static sptr make_zero();
99};
100
101} // namespace uhd
Definition: gain_group.hpp:31
virtual void register_fcns(const std::string &name, const gain_fcns_t &gain_fcns, size_t priority=0)=0
virtual const std::vector< std::string > get_names(void)=0
virtual gain_range_t get_range(const std::string &name="")=0
virtual void set_value(double gain, const std::string &name="")=0
virtual double get_value(const std::string &name="")=0
std::shared_ptr< gain_group > sptr
Definition: gain_group.hpp:33
static sptr make(void)
static sptr make_zero()
virtual ~gain_group(void)=0
#define UHD_API
Definition: config.h:70
Definition: build_info.hpp:12
boost::noncopyable noncopyable
Definition: noncopyable.hpp:45
meta_range_t gain_range_t
Definition: ranges.hpp:120
Definition: gain_group.hpp:24
std::function< void(double)> set_value
Definition: gain_group.hpp:27
std::function< gain_range_t(void)> get_range
Definition: gain_group.hpp:25
std::function< double(void)> get_value
Definition: gain_group.hpp:26
Definition: ranges.hpp:66