USRP Hardware Driver and USRP Manual  Version: 4.6.0.0-7-gece7c4811
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 #pragma once
9 
10 #include <uhd/config.hpp>
12 
13 namespace uhd {
14 
25 {
32  tune_request_t(double target_freq = 0);
33 
42  tune_request_t(double target_freq, double lo_off);
43 
45  enum policy_t {
47  POLICY_NONE = int('N'),
49  POLICY_AUTO = int('A'),
51  POLICY_MANUAL = int('M')
52  };
53 
58  double target_freq;
59 
65 
70  double rf_freq;
71 
77 
91  double dsp_freq;
92 
104 };
105 
106 } // namespace uhd
policy_t
Policy options for tunable elements in the RF chain.
Definition: tune_request.hpp:45
double rf_freq
Definition: tune_request.hpp:70
device_addr_t args
Definition: tune_request.hpp:103
double target_freq
Definition: tune_request.hpp:58
double dsp_freq
Definition: tune_request.hpp:91
Definition: tune_request.hpp:24
policy_t dsp_freq_policy
Definition: tune_request.hpp:76
Definition: build_info.hpp:12
policy_t rf_freq_policy
Definition: tune_request.hpp:64
#define UHD_API
Definition: config.h:87
Definition: device_addr.hpp:37