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/lib/usrp/b200/b200_io_impl.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/lib/usrp/b200/b200_io_impl.cpp')
-rw-r--r-- | host/lib/usrp/b200/b200_io_impl.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/host/lib/usrp/b200/b200_io_impl.cpp b/host/lib/usrp/b200/b200_io_impl.cpp index 7fcd04823..5b0c4ba13 100644 --- a/host/lib/usrp/b200/b200_io_impl.cpp +++ b/host/lib/usrp/b200/b200_io_impl.cpp @@ -228,7 +228,8 @@ uhd::usrp::subdev_spec_t b200_impl::coerce_subdev_spec(const uhd::usrp::subdev_s // // Any other spec is probably illegal and will be caught by // validate_subdev_spec(). - if (spec.size() and (_product == B200 or _product == B205) and spec[0].sd_name == "B") { + if (spec.size() and (_product == B200 or _product == B200MINI or _product == B205MINI) and spec[0].sd_name == "B") + { spec[0].sd_name = "A"; } return spec; |