diff options
author | Josh Blum <josh@joshknows.com> | 2010-06-18 16:39:45 -0700 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2010-06-18 16:39:45 -0700 |
commit | 16335c108272321408cae01f2d2bf234eb83fe32 (patch) | |
tree | 29755fbbf11d60380d81a77acc9a449f5b056ea9 /host/utils | |
parent | 1db016bc6503cdca76025f131773e550bd895d48 (diff) | |
download | uhd-16335c108272321408cae01f2d2bf234eb83fe32.tar.gz uhd-16335c108272321408cae01f2d2bf234eb83fe32.tar.bz2 uhd-16335c108272321408cae01f2d2bf234eb83fe32.zip |
uhd: added dboard manager call to register xcvr board, implemented in xcvr dboard code
Diffstat (limited to 'host/utils')
-rw-r--r-- | host/utils/uhd_burn_db_eeprom.cpp | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/host/utils/uhd_burn_db_eeprom.cpp b/host/utils/uhd_burn_db_eeprom.cpp index dfd9decba..ba7aa6cec 100644 --- a/host/utils/uhd_burn_db_eeprom.cpp +++ b/host/utils/uhd_burn_db_eeprom.cpp @@ -32,16 +32,6 @@ using namespace uhd; using namespace uhd::usrp; namespace po = boost::program_options; -//used with lexical cast to parse a hex string -template <class T> struct to_hex{ - T value; - operator T() const {return value;} - friend std::istream& operator>>(std::istream& in, to_hex& out){ - in >> std::hex >> out.value; - return in; - } -}; - int UHD_SAFE_MAIN(int argc, char *argv[]){ //command line variables std::string args, db_name, unit; @@ -55,7 +45,7 @@ int UHD_SAFE_MAIN(int argc, char *argv[]){ ("args", po::value<std::string>(&args)->default_value(""), "device address args [default = \"\"]") ("db", po::value<std::string>(&db_name)->default_value(""), "dboard name [default = \"\"]") ("unit", po::value<std::string>(&unit)->default_value(""), "which unit [RX or TX]") - ("id", po::value<std::string>(), "dboard id to burn (hex string), omit for readback") + ("id", po::value<std::string>(), "dboard id to burn, omit for readback") ; po::variables_map vm; |