USRP Hardware Driver and USRP Manual Version: 4.8.0.0-0-unknown
UHD and USRP Manual
 
Loading...
Searching...
No Matches
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
19namespace 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{
33public:
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
Definition gain_group.hpp:32
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:34
static sptr make(void)
static sptr make_zero()
virtual ~gain_group(void)=0
#define UHD_API
Definition config.h:87
Definition build_info.hpp:12
boost::noncopyable noncopyable
Definition noncopyable.hpp:45
meta_range_t gain_range_t
Definition ranges.hpp:130
Definition gain_group.hpp:25
std::function< void(double)> set_value
Definition gain_group.hpp:28
std::function< gain_range_t(void)> get_range
Definition gain_group.hpp:26
std::function< double(void)> get_value
Definition gain_group.hpp:27