aboutsummaryrefslogtreecommitdiffstats
path: root/mpm/tests/tests_device.hpp
blob: 75cc05b9535be8bca34c80beede17d090fa37f70 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
//
// Copyright 2017 Ettus Research, a National Instruments Company
//
// SPDX-License-Identifier: GPL-3.0-or-later
//

#include <mpm/spi_iface.hpp>
#include <mpm/tests/tests_spi_iface.hpp>
#include <memory>

namespace mpm { namespace tests {
class tests_dboard_periph_manager
{
public:
    typedef std::shared_ptr<tests_dboard_periph_manager> sptr;
    static sptr make();

private:
    mpm::spi_iface::sptr _dev1_spi;
    mpm::spi_iface::sptr _dev2_spi;
};
}} // namespace mpm::tests