diff options
author | Josh Morman <mormjb@gmail.com> | 2020-04-23 10:59:04 -0400 |
---|---|---|
committer | Josh Morman <mormjb@gmail.com> | 2020-06-04 10:05:48 -0400 |
commit | 9f49495b36004af83372a31bb658f32fbb334599 (patch) | |
tree | 3dcfd9a4549af722f1de320c9f6758aa5679e278 /gr-uhd/python/uhd/qa_uhd.py | |
parent | 25d5e75363199413239e5c69dda2c41faca896ac (diff) |
uhd: add pybind11 bindings
Diffstat (limited to 'gr-uhd/python/uhd/qa_uhd.py')
-rw-r--r-- | gr-uhd/python/uhd/qa_uhd.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gr-uhd/python/uhd/qa_uhd.py b/gr-uhd/python/uhd/qa_uhd.py index f36a6e9f1d..a954a2233b 100644 --- a/gr-uhd/python/uhd/qa_uhd.py +++ b/gr-uhd/python/uhd/qa_uhd.py @@ -37,6 +37,8 @@ class test_uhd(gr_unittest.TestCase): """ Try to manipulate the stream args channels for proper swig'ing checks. """ + # FIXME: stream_args_t.channels.append does not work due to copy operation of STL vectors + # Needs to either change API, remove QA test, or somehow remap append() sa = uhd.stream_args_t() sa.channels.append(1) sa.channels.append(0) |