// // Copyright 2020 Ettus Research, a National Instruments Brand // // SPDX-License-Identifier: GPL-3.0-or-later // #pragma once #include #include #include #include namespace uhd { namespace rfnoc { namespace rf_control { /*! Interface that daughterboards expose to the motherboard radio_control * * This interface contains everything required for a daughterboard to implement * all the methods required for radio_control. For the most part, this class * just includes accessors to objects which implement the required functionality. * This class also directly implements core_iface for the remainder. */ class dboard_iface : public core_iface { public: using sptr = std::shared_ptr; virtual ~dboard_iface() = default; virtual gain_profile_iface::sptr get_tx_gain_profile_api() = 0; virtual gain_profile_iface::sptr get_rx_gain_profile_api() = 0; virtual size_t get_chan_from_dboard_fe( const std::string&, uhd::direction_t) const = 0; virtual std::string get_dboard_fe_from_chan(size_t chan, uhd::direction_t) const = 0; virtual std::vector& get_pwr_mgr( uhd::direction_t trx) = 0; }; }}} // namespace uhd::rfnoc::rf_control