diff options
author | Martin Braun <martin.braun@ettus.com> | 2019-07-03 20:15:35 -0700 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2019-11-26 12:16:25 -0800 |
commit | c256b9df6502536c2e451e690f1ad5962c664d1a (patch) | |
tree | a83ad13e6f5978bbe14bb3ecf8294ba1e3d28db4 /host/lib/usrp/mpmd/mpmd_xport_ctrl_base.hpp | |
parent | 9a8435ed998fc5c65257f4c55768750b227ab19e (diff) | |
download | uhd-c256b9df6502536c2e451e690f1ad5962c664d1a.tar.gz uhd-c256b9df6502536c2e451e690f1ad5962c664d1a.tar.bz2 uhd-c256b9df6502536c2e451e690f1ad5962c664d1a.zip |
x300/mpmd: Port all RFNoC devices to the new RFNoC framework
Co-Authored-By: Alex Williams <alex.williams@ni.com>
Co-Authored-By: Sugandha Gupta <sugandha.gupta@ettus.com>
Co-Authored-By: Brent Stapleton <brent.stapleton@ettus.com>
Co-Authored-By: Ciro Nishiguchi <ciro.nishiguchi@ni.com>
Diffstat (limited to 'host/lib/usrp/mpmd/mpmd_xport_ctrl_base.hpp')
-rw-r--r-- | host/lib/usrp/mpmd/mpmd_xport_ctrl_base.hpp | 44 |
1 files changed, 0 insertions, 44 deletions
diff --git a/host/lib/usrp/mpmd/mpmd_xport_ctrl_base.hpp b/host/lib/usrp/mpmd/mpmd_xport_ctrl_base.hpp deleted file mode 100644 index a7fff9262..000000000 --- a/host/lib/usrp/mpmd/mpmd_xport_ctrl_base.hpp +++ /dev/null @@ -1,44 +0,0 @@ -// -// Copyright 2017 Ettus Research, a National Instruments Company -// -// SPDX-License-Identifier: GPL-3.0-or-later -// - -#ifndef INCLUDED_MPMD_XPORT_CTRL_BASE_HPP -#define INCLUDED_MPMD_XPORT_CTRL_BASE_HPP - -#include "../device3/device3_impl.hpp" -#include "mpmd_xport_mgr.hpp" -#include <uhd/types/device_addr.hpp> -#include <memory> - -namespace uhd { namespace mpmd { namespace xport { - -/*! Transport manager implementation base - */ -class mpmd_xport_ctrl_base -{ -public: - using uptr = std::unique_ptr<mpmd_xport_ctrl_base>; - virtual ~mpmd_xport_ctrl_base() {} - - /*! This is the final step of a make_transport() sequence - * - * \param xport_info Contains all necessary transport info. The - * implementation may update this! - * \param xport_type CTRL, ASYNC_MSG, ... (see xport_type_t) - * \param xport_args Additional arguments. These can come from the user. - */ - virtual both_xports_t make_transport(mpmd_xport_mgr::xport_info_t& xport_info, - const usrp::device3_impl::xport_type_t xport_type, - const uhd::device_addr_t& xport_args) = 0; - - //! Assert if an xport_info is even valid/feasible/available - virtual bool is_valid(const mpmd_xport_mgr::xport_info_t& xport_info) const = 0; - - virtual size_t get_mtu(const uhd::direction_t dir) const = 0; -}; - -}}} /* namespace uhd::mpmd::xport */ - -#endif /* INCLUDED_MPMD_XPORT_CTRL_BASE_HPP */ |