diff options
| -rw-r--r-- | host/include/uhd/usrp/dboard_eeprom.h | 6 | ||||
| -rw-r--r-- | host/lib/usrp/dboard_eeprom_c.cpp | 24 | 
2 files changed, 28 insertions, 2 deletions
diff --git a/host/include/uhd/usrp/dboard_eeprom.h b/host/include/uhd/usrp/dboard_eeprom.h index 6980de0ce..f3b9c4d9c 100644 --- a/host/include/uhd/usrp/dboard_eeprom.h +++ b/host/include/uhd/usrp/dboard_eeprom.h @@ -84,7 +84,11 @@ UHD_API uhd_error uhd_dboard_eeprom_set_serial(      const char* serial  ); -//! Get the daughterboard's revision (not always present) +/*! Get the daughterboard's revision + * + * The revision doesn't always have to be present, in which case this function + * will return an error. + */  UHD_API uhd_error uhd_dboard_eeprom_get_revision(      uhd_dboard_eeprom_handle h,      int* revision_out diff --git a/host/lib/usrp/dboard_eeprom_c.cpp b/host/lib/usrp/dboard_eeprom_c.cpp index 5d617f941..36a858d9c 100644 --- a/host/lib/usrp/dboard_eeprom_c.cpp +++ b/host/lib/usrp/dboard_eeprom_c.cpp @@ -17,6 +17,7 @@  #include <uhd/usrp/dboard_eeprom.h>  #include <uhd/error.h> +#include <boost/format.hpp>  #include <string.h> @@ -77,12 +78,33 @@ uhd_error uhd_dboard_eeprom_set_serial(      )  } +//! Convert a string into an int. If that doesn't work, craft our own exception +// instead of using the Boost exception. We need to put this separate from the +// caller function because of macro expansion. +int _convert_rev_with_exception(const std::string &rev_str) +{ +    try { +        return std::stoi(rev_str); +    } catch (const std::invalid_argument &) { +        throw uhd::lookup_error(str( +            boost::format("Error retrieving revision from string `%s`") +            % rev_str +        )); +    } catch (const std::out_of_range &) { +        throw uhd::lookup_error(str( +            boost::format("Error retrieving revision from string `%s`") +            % rev_str +        )); +    } +} +  uhd_error uhd_dboard_eeprom_get_revision(      uhd_dboard_eeprom_handle h,      int* revision_out  ){      UHD_SAFE_C_SAVE_ERROR(h, -        *revision_out = std::stoi(h->dboard_eeprom_cpp.revision); +        *revision_out = \ +            _convert_rev_with_exception(h->dboard_eeprom_cpp.revision);      )  }  | 
