USRP Hardware Driver and USRP Manual  Version: 3.15.0.HEAD-0-gaea0e2de
UHD and USRP Manual
tune_request.hpp
Go to the documentation of this file.
1 //
2 // Copyright 2010-2012 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 #ifndef INCLUDED_UHD_TYPES_TUNE_REQUEST_HPP
9 #define INCLUDED_UHD_TYPES_TUNE_REQUEST_HPP
10 
11 #include <uhd/config.hpp>
13 
14 namespace uhd {
15 
26 {
33  tune_request_t(double target_freq = 0);
34 
43  tune_request_t(double target_freq, double lo_off);
44 
46  enum policy_t {
48  POLICY_NONE = int('N'),
50  POLICY_AUTO = int('A'),
52  POLICY_MANUAL = int('M')
53  };
54 
59  double target_freq;
60 
66 
71  double rf_freq;
72 
78 
92  double dsp_freq;
93 
105 };
106 
107 } // namespace uhd
108 
109 #endif /* INCLUDED_UHD_TYPES_TUNE_REQUEST_HPP */
policy_t
Policy options for tunable elements in the RF chain.
Definition: tune_request.hpp:46
double rf_freq
Definition: tune_request.hpp:71
device_addr_t args
Definition: tune_request.hpp:104
double target_freq
Definition: tune_request.hpp:59
double dsp_freq
Definition: tune_request.hpp:92
Definition: tune_request.hpp:25
policy_t dsp_freq_policy
Definition: tune_request.hpp:77
Definition: build_info.hpp:13
policy_t rf_freq_policy
Definition: tune_request.hpp:65
#define UHD_API
Definition: config.h:68
Definition: device_addr.hpp:38