diff options
author | Martin Braun <martin.braun@ettus.com> | 2017-04-19 18:53:07 -0700 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2017-12-22 15:03:46 -0800 |
commit | 0cdf67ad33628af28cf92ef4ad7eaa63c712b8b5 (patch) | |
tree | a6377614d658370ee30e7bd195a315d124f373d4 /mpm/python | |
parent | 1c0cc2120db3f08773c306747bfcdcb093058d0f (diff) | |
download | uhd-0cdf67ad33628af28cf92ef4ad7eaa63c712b8b5.tar.gz uhd-0cdf67ad33628af28cf92ef4ad7eaa63c712b8b5.tar.bz2 uhd-0cdf67ad33628af28cf92ef4ad7eaa63c712b8b5.zip |
mpm: Enabled LMK controls in Python
Diffstat (limited to 'mpm/python')
-rw-r--r-- | mpm/python/pyusrp_periphs.cpp | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/mpm/python/pyusrp_periphs.cpp b/mpm/python/pyusrp_periphs.cpp index 77d358eca..cb370d874 100644 --- a/mpm/python/pyusrp_periphs.cpp +++ b/mpm/python/pyusrp_periphs.cpp @@ -28,10 +28,9 @@ //#include "types.hpp" #include "converters.hpp" #include "mpm/xbar_iface.hpp" -#include "mpm/ad937x/ad937x_ctrl.hpp" -#include "mpm/lmk04828//lmk04828_spi_iface.hpp" +#include <mpm/ad937x/ad937x_ctrl.hpp> +#include <mpm/lmk04828//lmk04828_spi_iface.hpp> #include "mpm/dboards/magnesium_manager.hpp" -#include "lmk02848_py.hpp" //#include "lib_periphs.hpp" //#include "dboards.hpp" #include <boost/noncopyable.hpp> @@ -45,7 +44,7 @@ BOOST_PYTHON_MODULE(libpyusrp_periphs) export_converter(); //export_types(); //export_spi(); - //export_lmk(); + export_lmk(); export_mykonos(); export_xbar(); export_dboards(); |