diff options
| author | Martin Braun <martin.braun@ettus.com> | 2017-04-29 18:56:22 -0700 | 
|---|---|---|
| committer | Martin Braun <martin.braun@ettus.com> | 2017-12-22 15:03:52 -0800 | 
| commit | fcf8715eab6d3d06526e1ef1398e0e684711daad (patch) | |
| tree | d2e762044506fbd456f8bd039fc1c99ff78ce90a /mpm/python | |
| parent | 0920bf97eace21fca3a88d5b7749849925c3ee29 (diff) | |
| download | uhd-fcf8715eab6d3d06526e1ef1398e0e684711daad.tar.gz uhd-fcf8715eab6d3d06526e1ef1398e0e684711daad.tar.bz2 uhd-fcf8715eab6d3d06526e1ef1398e0e684711daad.zip  | |
mpm: Exposed spi regs iface factory to Python
Diffstat (limited to 'mpm/python')
| -rw-r--r-- | mpm/python/pyusrp_periphs.cpp | 3 | 
1 files changed, 2 insertions, 1 deletions
diff --git a/mpm/python/pyusrp_periphs.cpp b/mpm/python/pyusrp_periphs.cpp index 2c6ea869b..5aac12088 100644 --- a/mpm/python/pyusrp_periphs.cpp +++ b/mpm/python/pyusrp_periphs.cpp @@ -29,6 +29,7 @@  #include "converters.hpp"  #include <mpm/xbar_iface.hpp>  #include <mpm/types/types_python.hpp> +#include <mpm/spi/spi_python.hpp>  #include <mpm/ad937x/ad937x_ctrl.hpp>  #include <mpm/chips/lmk04828_spi_iface.hpp>  #include <mpm/dboards/magnesium_manager.hpp> @@ -42,7 +43,7 @@ BOOST_PYTHON_MODULE(libpyusrp_periphs)      package.attr("__path__") = "libpyusrp_periphs";      export_converter();      export_types(); -    //export_spi(); +    export_spi();      export_mykonos();      export_xbar();      export_magnesium();  | 
