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

#include <mpm/tests/tests_spi_iface.hpp>
#include <mpm/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;
    };
}
}