diff options
author | mattprost <matt.prost@ni.com> | 2022-03-14 17:20:35 -0500 |
---|---|---|
committer | Aaron Rossetto <aaron.rossetto@ni.com> | 2022-04-07 13:28:02 -0700 |
commit | 0cf8a60a4e88d55de04cde1feb85eaadfdcf15d7 (patch) | |
tree | 7bbf0fb63eacd97d77bc779872211561b2bc12f2 /host/python | |
parent | 4bd20a9e2a2760c05bd27c5fb96b11668ff5c682 (diff) | |
download | uhd-0cf8a60a4e88d55de04cde1feb85eaadfdcf15d7.tar.gz uhd-0cf8a60a4e88d55de04cde1feb85eaadfdcf15d7.tar.bz2 uhd-0cf8a60a4e88d55de04cde1feb85eaadfdcf15d7.zip |
types: filters: Add python support for digital filters
Signed-off-by: mattprost <matt.prost@ni.com>
Diffstat (limited to 'host/python')
-rw-r--r-- | host/python/uhd/filters.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/host/python/uhd/filters.py b/host/python/uhd/filters.py index 8479b56e1..2862e2945 100644 --- a/host/python/uhd/filters.py +++ b/host/python/uhd/filters.py @@ -14,3 +14,5 @@ FilterType = lib.filters.filter_type FilterInfoBase = lib.filters.filter_info_base AnalogFilterBase = lib.filters.analog_filter_base AnalogFilterLP = lib.filters.analog_filter_lp +DigitalFilterBaseI16 = lib.filters.digital_filter_base_i16 +DigitalFilterFIRI16 = lib.filters.digital_filter_fir_i16 |