diff options
author | Aaron Rossetto <aaron.rossetto@ni.com> | 2020-06-04 16:24:01 -0500 |
---|---|---|
committer | Aaron Rossetto <aaron.rossetto@ni.com> | 2020-06-18 07:48:25 -0500 |
commit | 19f19c77a91dcba6c1bf0f99e73ae9ffca1d75a4 (patch) | |
tree | add0fe189b23ec9638f284205df562992cf2c41d /host/python/pyuhd.cpp | |
parent | cb40ecf2f5d1a0c3381b29f425fdf30f89c8ec29 (diff) | |
download | uhd-19f19c77a91dcba6c1bf0f99e73ae9ffca1d75a4.tar.gz uhd-19f19c77a91dcba6c1bf0f99e73ae9ffca1d75a4.tar.bz2 uhd-19f19c77a91dcba6c1bf0f99e73ae9ffca1d75a4.zip |
python: Add FFT RFNoC block controller bindings
Diffstat (limited to 'host/python/pyuhd.cpp')
-rw-r--r-- | host/python/pyuhd.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/host/python/pyuhd.cpp b/host/python/pyuhd.cpp index eed30ff32..b0fce9b55 100644 --- a/host/python/pyuhd.cpp +++ b/host/python/pyuhd.cpp @@ -16,6 +16,7 @@ namespace py = pybind11; #include "cal/cal_python.hpp" #include "rfnoc/ddc_block_control_python.hpp" #include "rfnoc/duc_block_control_python.hpp" +#include "rfnoc/fft_block_control_python.hpp" #include "rfnoc/fir_filter_block_control_python.hpp" #include "rfnoc/fosphor_block_control_python.hpp" #include "rfnoc/null_block_control_python.hpp" @@ -83,6 +84,7 @@ PYBIND11_MODULE(libpyuhd, m) export_rfnoc(rfnoc_module); export_ddc_block_control(rfnoc_module); export_duc_block_control(rfnoc_module); + export_fft_block_control(rfnoc_module); export_fosphor_block_control(rfnoc_module); export_fir_filter_block_control(rfnoc_module); export_null_block_control(rfnoc_module); |