diff options
author | Ciro Nishiguchi <ciro.nishiguchi@ni.com> | 2019-10-23 17:12:03 -0500 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2019-11-26 12:21:32 -0800 |
commit | 7b95cbd7fd2cb0a1aac1ccaea06d417480bf86a0 (patch) | |
tree | 2cca455c0cd3b391a7b5209c77411cd70b5fce7e /host/lib/usrp/x300/x300_mb_iface.cpp | |
parent | a801d6b046743140e9a50c7788dd17dd71f5540a (diff) | |
download | uhd-7b95cbd7fd2cb0a1aac1ccaea06d417480bf86a0.tar.gz uhd-7b95cbd7fd2cb0a1aac1ccaea06d417480bf86a0.tar.bz2 uhd-7b95cbd7fd2cb0a1aac1ccaea06d417480bf86a0.zip |
rfnoc: Merge I/O service device args with stream args
This makes it possible for users to put I/O service-related args in
either the device args or stream args.
Diffstat (limited to 'host/lib/usrp/x300/x300_mb_iface.cpp')
-rw-r--r-- | host/lib/usrp/x300/x300_mb_iface.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/host/lib/usrp/x300/x300_mb_iface.cpp b/host/lib/usrp/x300/x300_mb_iface.cpp index 5ba92f52c..e0c426138 100644 --- a/host/lib/usrp/x300/x300_mb_iface.cpp +++ b/host/lib/usrp/x300/x300_mb_iface.cpp @@ -186,7 +186,8 @@ uhd::rfnoc::chdr_rx_data_xport::uptr x300_impl::x300_mb_iface::make_rx_data_tran auto io_srv = get_io_srv_mgr()->connect_links(recv_link, send_link, link_type_t::RX_DATA, - uhd::usrp::read_io_service_args(xport_args, get_default_io_srv_args()), + get_default_io_srv_args(), + xport_args, streamer_id); // Create the data transport @@ -254,7 +255,8 @@ uhd::rfnoc::chdr_tx_data_xport::uptr x300_impl::x300_mb_iface::make_tx_data_tran auto io_srv = get_io_srv_mgr()->connect_links(recv_link, send_link, link_type_t::TX_DATA, - uhd::usrp::read_io_service_args(xport_args, get_default_io_srv_args()), + get_default_io_srv_args(), + xport_args, streamer_id); // Create the data transport |