uhd/mpm/python/pyusrp_periphs.cpp
Martin Braun 1a4348038d Initial commit for N3xx development.
- Creates mpm/ subdirectory
- First pass at hardware daemon/MPM
- New code for LMK04828, AD9371
- spidev integration

Contributions by:

Martin Braun <martin.braun@ettus.com>
Derek Kozel <derek.kozel@ettus.com>
Mark Meserve <mark.meserve@ni.com>
Andrej Rode <andrej.rode@ettus.com>
2017-12-22 15:03:44 -08:00

19 lines
463 B
C++

#include "n310_periphs.hpp"
// #include "tests_periphs.hpp"
#include "lib_periphs.hpp"
#include <mpm/print_foo.hpp>
#include <boost/python.hpp>
#include <boost/noncopyable.hpp>
namespace bp = boost::python;
BOOST_PYTHON_MODULE(libpyusrp_periphs)
{
bp::object package = bp::scope();
package.attr("__path__") = "libpyusrp_periphs";
bp::def("print_foo", &mpm::print_foo);
export_spi();
// export_tests();
export_lmk();
export_n3xx();
}