From 3fe5ccf700a0c6f27dca9511386460194dcc593c Mon Sep 17 00:00:00 2001 From: Martin Braun Date: Tue, 3 Mar 2020 16:10:06 -0800 Subject: uhd: cal: Add iq_cal calibration data container class This class can be used to store calibration coefficients for the X300 DC offset and IQ imbalance calibration. Note: This also modifies Doxyfile.in to not document files generated by flatc. --- host/python/pyuhd.cpp | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'host/python/pyuhd.cpp') diff --git a/host/python/pyuhd.cpp b/host/python/pyuhd.cpp index 9ce72c476..5e8c6424c 100644 --- a/host/python/pyuhd.cpp +++ b/host/python/pyuhd.cpp @@ -13,6 +13,7 @@ namespace py = pybind11; +#include "cal/cal_python.hpp" #include "rfnoc/rfnoc_python.hpp" #include "stream_python.hpp" #include "types/filters_python.hpp" @@ -73,4 +74,8 @@ PYBIND11_MODULE(libpyuhd, m) // Register RFNoC submodule auto rfnoc_module = m.def_submodule("rfnoc", "RFNoC Objects"); export_rfnoc(rfnoc_module); + + // Register calibration submodule + auto cal_module = m.def_submodule("cal", "Calibration Objects"); + export_cal(cal_module); } -- cgit v1.2.3