diff options
Diffstat (limited to 'host')
| -rw-r--r-- | host/lib/usrp/b100/b100_impl.cpp | 7 | ||||
| -rw-r--r-- | host/lib/usrp/b200/b200_impl.cpp | 11 | ||||
| -rw-r--r-- | host/lib/usrp/usrp1/usrp1_impl.cpp | 7 | 
3 files changed, 14 insertions, 11 deletions
| diff --git a/host/lib/usrp/b100/b100_impl.cpp b/host/lib/usrp/b100/b100_impl.cpp index a47856b07..a83e9bb8c 100644 --- a/host/lib/usrp/b100/b100_impl.cpp +++ b/host/lib/usrp/b100/b100_impl.cpp @@ -20,6 +20,7 @@  #include "b100_regs.hpp"  #include <uhd/transport/usb_control.hpp>  #include <uhd/utils/msg.hpp> +#include <uhd/utils/cast.hpp>  #include <uhd/exception.hpp>  #include <uhd/utils/static.hpp>  #include <uhd/utils/images.hpp> @@ -56,11 +57,11 @@ static device_addrs_t b100_find(const device_addr_t &hint)      //since an address and resource is intended for a different, non-USB, device.      if (hint.has_key("addr") || hint.has_key("resource")) return b100_addrs; -    unsigned int vid, pid; +    boost::uint16_t vid, pid;      if(hint.has_key("vid") && hint.has_key("pid") && hint.has_key("type") && hint["type"] == "b100") { -        sscanf(hint.get("vid").c_str(), "%x", &vid); -        sscanf(hint.get("pid").c_str(), "%x", &pid); +        vid = uhd::cast::hexstr_cast<boost::uint16_t>(hint.get("vid")); +        pid = uhd::cast::hexstr_cast<boost::uint16_t>(hint.get("pid"));      } else {          vid = B100_VENDOR_ID;          pid = B100_PRODUCT_ID; diff --git a/host/lib/usrp/b200/b200_impl.cpp b/host/lib/usrp/b200/b200_impl.cpp index 9dd3a424d..a28d11ed4 100644 --- a/host/lib/usrp/b200/b200_impl.cpp +++ b/host/lib/usrp/b200/b200_impl.cpp @@ -19,6 +19,7 @@  #include "b200_regs.hpp"  #include <uhd/transport/usb_control.hpp>  #include <uhd/utils/msg.hpp> +#include <uhd/utils/cast.hpp>  #include <uhd/exception.hpp>  #include <uhd/utils/static.hpp>  #include <uhd/utils/images.hpp> @@ -58,11 +59,11 @@ static device_addrs_t b200_find(const device_addr_t &hint)      //since an address and resource is intended for a different, non-USB, device.      if (hint.has_key("addr") || hint.has_key("resource")) return b200_addrs; -    unsigned int vid, pid; +    boost::uint16_t vid, pid;      if(hint.has_key("vid") && hint.has_key("pid") && hint.has_key("type") && hint["type"] == "b200") { -        sscanf(hint.get("vid").c_str(), "%x", &vid); -        sscanf(hint.get("pid").c_str(), "%x", &pid); +        vid = uhd::cast::hexstr_cast<boost::uint16_t>(hint.get("vid")); +        pid = uhd::cast::hexstr_cast<boost::uint16_t>(hint.get("pid"));      } else {          vid = B200_VENDOR_ID;          pid = B200_PRODUCT_ID; @@ -160,9 +161,9 @@ b200_impl::b200_impl(const device_addr_t &device_addr)      boost::uint16_t vid = B200_VENDOR_ID;      boost::uint16_t pid = B200_PRODUCT_ID;      if (device_addr.has_key("vid")) -            sscanf(device_addr.get("vid").c_str(), "%hx", &vid); +        vid = uhd::cast::hexstr_cast<boost::uint16_t>(device_addr.get("vid"));      if (device_addr.has_key("pid")) -            sscanf(device_addr.get("pid").c_str(), "%hx", &pid); +        pid = uhd::cast::hexstr_cast<boost::uint16_t>(device_addr.get("pid"));      std::vector<usb_device_handle::sptr> device_list =          usb_device_handle::get_device_list(vid, pid); diff --git a/host/lib/usrp/usrp1/usrp1_impl.cpp b/host/lib/usrp/usrp1/usrp1_impl.cpp index 3b902b343..fb2e7e582 100644 --- a/host/lib/usrp/usrp1/usrp1_impl.cpp +++ b/host/lib/usrp/usrp1/usrp1_impl.cpp @@ -20,6 +20,7 @@  #include <uhd/utils/safe_call.hpp>  #include <uhd/transport/usb_control.hpp>  #include <uhd/utils/msg.hpp> +#include <uhd/utils/cast.hpp>  #include <uhd/exception.hpp>  #include <uhd/utils/static.hpp>  #include <uhd/utils/images.hpp> @@ -59,11 +60,11 @@ static device_addrs_t usrp1_find(const device_addr_t &hint)      //since an address and resource is intended for a different, non-USB, device.      if (hint.has_key("addr") || hint.has_key("resource")) return usrp1_addrs; -    unsigned int vid, pid; +    boost::uint16_t vid, pid;      if(hint.has_key("vid") && hint.has_key("pid") && hint.has_key("type") && hint["type"] == "usrp1") { -        sscanf(hint.get("vid").c_str(), "%x", &vid); -        sscanf(hint.get("pid").c_str(), "%x", &pid); +        vid = uhd::cast::hexstr_cast<boost::uint16_t>(hint.get("vid")); +        pid = uhd::cast::hexstr_cast<boost::uint16_t>(hint.get("pid"));      } else {          vid = USRP1_VENDOR_ID;          pid = USRP1_PRODUCT_ID; | 
