USRP Hardware Driver and USRP Manual  Version: 3.11.0.HEAD-0-gdca39145
UHD and USRP Manual
tune_result.h
Go to the documentation of this file.
1 //
2 // Copyright 2015 Ettus Research LLC
3 //
4 // SPDX-License-Identifier: GPL-3.0
5 //
6 
7 #ifndef INCLUDED_UHD_TYPES_TUNE_RESULT_H
8 #define INCLUDED_UHD_TYPES_TUNE_RESULT_H
9 
10 #include <uhd/config.h>
11 
12 #include <stdlib.h>
13 
15 
18 typedef struct {
30 
31 #ifdef __cplusplus
32 extern "C" {
33 #endif
34 
37  char* pp_string_out, size_t strbuffer_len);
38 
39 #ifdef __cplusplus
40 }
42 
43 UHD_API uhd::tune_result_t uhd_tune_result_c_to_cpp(uhd_tune_result_t *tune_result_c);
44 
45 UHD_API void uhd_tune_result_cpp_to_c(const uhd::tune_result_t &tune_result_cpp,
46  uhd_tune_result_t *tune_result_c);
47 #endif
48 
49 #endif /* INCLUDED_UHD_TYPES_TUNE_RESULT_H */
Definition: tune_result.hpp:18
Stores RF and DSP tuned frequencies.
Definition: tune_result.h:18
double actual_dsp_freq
Frequency to which the CORDIC in the DSP actually tuned.
Definition: tune_result.h:28
UHD_API void uhd_tune_result_to_pp_string(uhd_tune_result_t *tune_result, char *pp_string_out, size_t strbuffer_len)
Create a pretty print representation of this tune result.
double target_dsp_freq
Frequency the CORDIC must adjust the RF.
Definition: tune_result.h:26
double actual_rf_freq
Frequency to which RF LO is actually tuned.
Definition: tune_result.h:24
#define UHD_API
Definition: config.h:62
double target_rf_freq
Target RF frequency, including RF FE offset.
Definition: tune_result.h:22
double clipped_rf_freq
Target RF frequency, clipped to be within system range.
Definition: tune_result.h:20