aboutsummaryrefslogtreecommitdiffstats
path: root/Transceiver52M
diff options
context:
space:
mode:
authorkurtis.heimerl <kurtis.heimerl@19bc5d8c-e614-43d4-8b26-e1612bc8e597>2011-11-26 03:18:08 +0000
committerkurtis.heimerl <kurtis.heimerl@19bc5d8c-e614-43d4-8b26-e1612bc8e597>2011-11-26 03:18:08 +0000
commit2b28c696f8dd5dad2fa002eaa9cd72c1f2b48cad (patch)
tree8b7344be3b36bf1a062b616f69b1217cc7b8505e /Transceiver52M
parentee5347af4004831ed38781b52a62a84ed9d3a076 (diff)
uhd: remove uhd type argument
UHD recently modified the E100 type name from 'usrp-e' to 'e100' causing the device make to fail. Remove device type checking to keep things working with the older and newer names. Signed-off-by: Thomas Tsou <ttsou@vt.edu> git-svn-id: http://wush.net/svn/range/software/public/openbts/trunk@2661 19bc5d8c-e614-43d4-8b26-e1612bc8e597
Diffstat (limited to 'Transceiver52M')
-rw-r--r--Transceiver52M/UHDDevice.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Transceiver52M/UHDDevice.cpp b/Transceiver52M/UHDDevice.cpp
index 88e9814..dc265cb 100644
--- a/Transceiver52M/UHDDevice.cpp
+++ b/Transceiver52M/UHDDevice.cpp
@@ -334,8 +334,8 @@ bool uhd_device::open()
{
LOG(INFO) << "creating USRP device...";
- // Use the first available USRP E100
- uhd::device_addr_t dev_addr("type=usrp-e");
+ // Allow all UHD devices
+ uhd::device_addr_t dev_addr("");
try {
usrp_dev = uhd::usrp::single_usrp::make(dev_addr);
}