From b5f6ba518e80fe3f3f64f112d657bc9fc631fe4f Mon Sep 17 00:00:00 2001 From: Martin Braun Date: Fri, 3 Nov 2017 16:56:03 -0700 Subject: mg: Refactor magnesium_radio_ctrl and friends - Spin out AD9371 control into its own class - Split file into multiple compilation units - Fixed many minor code formatting issues --- .../dboard/magnesium/magnesium_ad9371_iface.hpp | 76 ++++++++++++++++++++++ 1 file changed, 76 insertions(+) create mode 100644 host/lib/usrp/dboard/magnesium/magnesium_ad9371_iface.hpp (limited to 'host/lib/usrp/dboard/magnesium/magnesium_ad9371_iface.hpp') diff --git a/host/lib/usrp/dboard/magnesium/magnesium_ad9371_iface.hpp b/host/lib/usrp/dboard/magnesium/magnesium_ad9371_iface.hpp new file mode 100644 index 000000000..9529e1519 --- /dev/null +++ b/host/lib/usrp/dboard/magnesium/magnesium_ad9371_iface.hpp @@ -0,0 +1,76 @@ +// +// Copyright 2017 Ettus Research, a National Instruments Company +// +// SPDX-License-Identifier: GPL-3.0 +// + +#ifndef INCLUDED_LIBUHD_RFNOC_MAGNESIUM_AD9371_IFACE_HPP +#define INCLUDED_LIBUHD_RFNOC_MAGNESIUM_AD9371_IFACE_HPP + +#include "../../../utils/rpc.hpp" +#include +#include +#include + +class magnesium_ad9371_iface +{ +public: + using uptr = std::unique_ptr; + + magnesium_ad9371_iface( + uhd::rpc_client::sptr rpcc, + const size_t slot_idx + ); + + double set_frequency( + const double freq, + const size_t chan, + const uhd::direction_t dir + ); + + double get_frequency( + const size_t chan, + const uhd::direction_t dir + ); + + double set_gain( + const double gain, + const size_t chan, + const uhd::direction_t dir + ); + + double get_gain( + const size_t chan, + const uhd::direction_t dir + ); + + double set_bandwidth( + const double bandwidth, + const size_t chan, + const uhd::direction_t dir + ); + + double get_bandwidth( + const size_t chan, + const uhd::direction_t dir + ); + +private: + //! Reference to the RPC client + uhd::rpc_client::sptr _rpcc; + + //! Slot index + const size_t _slot_idx; + + //! Stores the prefix to RPC calls + const std::string _rpc_prefix; + + //! Logger prefix + const std::string _L; + + + +}; + +#endif /* INCLUDED_LIBUHD_RFNOC_MAGNESIUM_AD9371_IFACE_HPP */ +// vim: sw=4 et: -- cgit v1.2.3