aboutsummaryrefslogtreecommitdiffstats
path: root/host/lib
diff options
context:
space:
mode:
Diffstat (limited to 'host/lib')
-rw-r--r--host/lib/types/tune_python.hpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/host/lib/types/tune_python.hpp b/host/lib/types/tune_python.hpp
index 532cc2f8e..587c8cbea 100644
--- a/host/lib/types/tune_python.hpp
+++ b/host/lib/types/tune_python.hpp
@@ -33,6 +33,12 @@ void export_tune()
;
bp::class_<tune_result_t>("tune_result", bp::init<>())
+ .def_readwrite("clipped_rf_freq", &tune_result_t::clipped_rf_freq)
+ .def_readwrite("target_rf_freq" , &tune_result_t::target_rf_freq )
+ .def_readwrite("actual_rf_freq" , &tune_result_t::actual_rf_freq )
+ .def_readwrite("target_dsp_freq", &tune_result_t::target_dsp_freq)
+ .def_readwrite("actual_dsp_freq", &tune_result_t::actual_dsp_freq)
+ .def("__str__" , &tune_result_t::to_pp_string )
;
}