mirror of
https://github.com/saymrwulf/uhd.git
synced 2026-05-15 21:01:26 +00:00
- 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>
19 lines
463 B
C++
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();
|
|
}
|