USRP Hardware Driver and USRP Manual  Version: 3.11.0.HEAD-0-gdca39145
UHD and USRP Manual
tune_request.hpp
Go to the documentation of this file.
1 //
2 // Copyright 2010-2012 Ettus Research LLC
3 //
4 // SPDX-License-Identifier: GPL-3.0
5 //
6 
7 #ifndef INCLUDED_UHD_TYPES_TUNE_REQUEST_HPP
8 #define INCLUDED_UHD_TYPES_TUNE_REQUEST_HPP
9 
10 #include <uhd/config.hpp>
12 
13 namespace uhd{
14 
29  tune_request_t(double target_freq = 0);
30 
39  tune_request_t(double target_freq, double lo_off);
40 
42  enum policy_t {
44  POLICY_NONE = int('N'),
46  POLICY_AUTO = int('A'),
48  POLICY_MANUAL = int('M')
49  };
50 
55  double target_freq;
56 
62 
67  double rf_freq;
68 
74 
79  double dsp_freq;
80 
92 
93  };
94 
95 } //namespace uhd
96 
97 #endif /* INCLUDED_UHD_TYPES_TUNE_REQUEST_HPP */
policy_t
Policy options for tunable elements in the RF chain.
Definition: tune_request.hpp:42
double rf_freq
Definition: tune_request.hpp:67
device_addr_t args
Definition: tune_request.hpp:91
double target_freq
Definition: tune_request.hpp:55
double dsp_freq
Definition: tune_request.hpp:79
Definition: tune_request.hpp:22
policy_t dsp_freq_policy
Definition: tune_request.hpp:73
Definition: build_info.hpp:14
policy_t rf_freq_policy
Definition: tune_request.hpp:61
#define UHD_API
Definition: config.h:62
Definition: device_addr.hpp:36