diff options
author | michael-west <michael.west@ettus.com> | 2015-11-20 12:23:09 -0800 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2015-12-10 16:14:46 -0800 |
commit | ac1db2c4605427fa7e8929422c647004a4333e59 (patch) | |
tree | 5a21fa5d879f494c521132878c732cd862664eb0 /host/utils/b2xx_fx3_utils.cpp | |
parent | bf634e1e902f535ca1ddb4f4a25c84c066018b17 (diff) | |
download | uhd-ac1db2c4605427fa7e8929422c647004a4333e59.tar.gz uhd-ac1db2c4605427fa7e8929422c647004a4333e59.tar.bz2 uhd-ac1db2c4605427fa7e8929422c647004a4333e59.zip |
B2xx: Added B205mini support.
- Add support to b200_impl
- New INF file
- Removed references to old 'B205' name
Diffstat (limited to 'host/utils/b2xx_fx3_utils.cpp')
-rw-r--r-- | host/utils/b2xx_fx3_utils.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/host/utils/b2xx_fx3_utils.cpp b/host/utils/b2xx_fx3_utils.cpp index a3eaf862a..a6896c868 100644 --- a/host/utils/b2xx_fx3_utils.cpp +++ b/host/utils/b2xx_fx3_utils.cpp @@ -52,7 +52,8 @@ const static vid_pid_t known_vid_pids[] = { {FX3_VID, FX3_DEFAULT_PID}, {FX3_VID, FX3_REENUM_PID}, {B200_VENDOR_ID, B200_PRODUCT_ID}, - {B200_VENDOR_ID, B205_PRODUCT_ID}, + {B200_VENDOR_ID, B200MINI_PRODUCT_ID}, + {B200_VENDOR_ID, B205MINI_PRODUCT_ID}, {B200_VENDOR_NI_ID, B200_PRODUCT_NI_ID}, {B200_VENDOR_NI_ID, B210_PRODUCT_NI_ID} }; @@ -175,7 +176,7 @@ uhd::transport::usb_device_handle::sptr open_device(const boost::uint16_t vid, c vp = known_vid_pid_vector[i]; handles = uhd::transport::usb_device_handle::get_device_list(vp.vid, vp.pid); } - + } if (handles.size() > 0) |