diff options
author | Nicholas Corgan <nick.corgan@ettus.com> | 2015-03-27 14:20:27 -0700 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2015-03-27 14:45:06 -0700 |
commit | d0a90ff49d9456c2a758f9d49102c8028009a5e4 (patch) | |
tree | 623759cc53014d0494869a05ec2b2a548b7ec444 /host/lib/transport | |
parent | 1200721b696751edaceb70a332861f84fb8c16d5 (diff) | |
download | uhd-d0a90ff49d9456c2a758f9d49102c8028009a5e4.tar.gz uhd-d0a90ff49d9456c2a758f9d49102c8028009a5e4.tar.bz2 uhd-d0a90ff49d9456c2a758f9d49102c8028009a5e4.zip |
usrp1: fixed check for loaded firmware
Diffstat (limited to 'host/lib/transport')
-rw-r--r-- | host/lib/transport/libusb1_base.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/host/lib/transport/libusb1_base.cpp b/host/lib/transport/libusb1_base.cpp index ee4e20adb..375cfe92d 100644 --- a/host/lib/transport/libusb1_base.cpp +++ b/host/lib/transport/libusb1_base.cpp @@ -1,5 +1,5 @@ // -// Copyright 2010-2014 Ettus Research LLC +// Copyright 2010-2015 Ettus Research LLC // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by @@ -326,7 +326,8 @@ public: } bool firmware_loaded() { - return (get_manufacturer() == "Ettus Research LLC"); + return (get_manufacturer() == "Ettus Research LLC") or + (get_manufacturer() == "Free Software Folks"); } private: |