diff options
Diffstat (limited to 'host/tests/devtest/devtest_b2xx.py')
-rwxr-xr-x | host/tests/devtest/devtest_b2xx.py | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/host/tests/devtest/devtest_b2xx.py b/host/tests/devtest/devtest_b2xx.py index b5a9915c5..49ffeea37 100755 --- a/host/tests/devtest/devtest_b2xx.py +++ b/host/tests/devtest/devtest_b2xx.py @@ -1,6 +1,7 @@ # # Copyright 2015-2016 Ettus Research LLC # Copyright 2018 Ettus Research, a National Instruments Company +# Copyright 2019 Ettus Research, a National Instruments Brand # # SPDX-License-Identifier: GPL-3.0-or-later # @@ -70,6 +71,21 @@ rx_samples_to_file_test.tests = { }, } +from tx_waveforms_test import uhd_tx_waveforms_test +uhd_tx_waveforms_test.tests = { + 'chan0': { + 'chan': '0', + }, + 'chan1': { + 'chan': '1', + 'products': ['B210',], + }, + 'both_chans': { + 'chan': '0,1', + 'products': ['B210',], + }, +} + from tx_bursts_test import uhd_tx_bursts_test from test_pps_test import uhd_test_pps_test from gpio_test import gpio_test |