diff options
| author | Ashish Chaudhari <ashish@ettus.com> | 2017-12-20 11:44:12 -0800 | 
|---|---|---|
| committer | Martin Braun <martin.braun@ettus.com> | 2017-12-22 15:06:03 -0800 | 
| commit | 6af41376c18c62ca7bfe8cccdd6564922d3fdd6a (patch) | |
| tree | 9a7fa7c759bdf9feefc0a4a20e18c7fbf8486607 /host/lib/usrp/mpmd/mpmd_xport_mgr.cpp | |
| parent | 2a83c6133f5541e6ffed34681cd6e8f5ff90fe76 (diff) | |
| download | uhd-6af41376c18c62ca7bfe8cccdd6564922d3fdd6a.tar.gz uhd-6af41376c18c62ca7bfe8cccdd6564922d3fdd6a.tar.bz2 uhd-6af41376c18c62ca7bfe8cccdd6564922d3fdd6a.zip  | |
mpmd: Device discovery fixes and cleanup
- Fixed issue where the "addr" device args was not honored
- Results returned by find only enumerate mgmt_addrs
- Explicitly require addr to be specified for RFNoC comms
- Cleaned up constants for mgmt_addr, addr and second_addr
Reviewed-by: Martin Braun <martin.braun@ettus.com>
Diffstat (limited to 'host/lib/usrp/mpmd/mpmd_xport_mgr.cpp')
| -rw-r--r-- | host/lib/usrp/mpmd/mpmd_xport_mgr.cpp | 4 | 
1 files changed, 3 insertions, 1 deletions
diff --git a/host/lib/usrp/mpmd/mpmd_xport_mgr.cpp b/host/lib/usrp/mpmd/mpmd_xport_mgr.cpp index 0de832b34..0ca77c740 100644 --- a/host/lib/usrp/mpmd/mpmd_xport_mgr.cpp +++ b/host/lib/usrp/mpmd/mpmd_xport_mgr.cpp @@ -93,7 +93,9 @@ private:              }          } -        throw uhd::runtime_error("Could not select a transport option!"); +        throw uhd::runtime_error("Could not select a transport option! " +                "Either a transport hint was not specified or the specified " +                "hint does not support communication with RFNoC blocks.");      }      //! Create an instance of an xport manager implementation  | 
