aboutsummaryrefslogtreecommitdiffstats
path: root/mpm/python/pyusrp_periphs.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'mpm/python/pyusrp_periphs.cpp')
-rw-r--r--mpm/python/pyusrp_periphs.cpp19
1 files changed, 19 insertions, 0 deletions
diff --git a/mpm/python/pyusrp_periphs.cpp b/mpm/python/pyusrp_periphs.cpp
new file mode 100644
index 000000000..5a49398c4
--- /dev/null
+++ b/mpm/python/pyusrp_periphs.cpp
@@ -0,0 +1,19 @@
+#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();
+}