diff options
author | Josh Blum <josh@joshknows.com> | 2010-10-26 14:14:01 -0700 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2010-10-26 14:14:01 -0700 |
commit | cea3d05095202413be12cd4792ab9f781cbccef7 (patch) | |
tree | 0b588edfcf3f1173abfcf9c656fac3e824e2d532 /host/lib/usrp/multi_usrp.cpp | |
parent | 0168bff835371140c0d75cc381e3228f8093fe70 (diff) | |
download | uhd-cea3d05095202413be12cd4792ab9f781cbccef7.tar.gz uhd-cea3d05095202413be12cd4792ab9f781cbccef7.tar.bz2 uhd-cea3d05095202413be12cd4792ab9f781cbccef7.zip |
uhd: replaced print warning with a post warning call and registry
renamed print warning calls in the implementation
fixed issue with dict::pop so it now works even if the value is not comparable
Diffstat (limited to 'host/lib/usrp/multi_usrp.cpp')
-rw-r--r-- | host/lib/usrp/multi_usrp.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/host/lib/usrp/multi_usrp.cpp b/host/lib/usrp/multi_usrp.cpp index 8b82502ba..024a6152d 100644 --- a/host/lib/usrp/multi_usrp.cpp +++ b/host/lib/usrp/multi_usrp.cpp @@ -145,7 +145,7 @@ public: time_spec_t time_0 = _mboard(0)[MBOARD_PROP_TIME_NOW].as<time_spec_t>(); time_spec_t time_i = _mboard(m)[MBOARD_PROP_TIME_NOW].as<time_spec_t>(); if (time_i < time_0 or (time_i - time_0) > time_spec_t(0.01)){ //10 ms: greater than RTT but not too big - uhd::print_warning(str(boost::format( + uhd::warning::post(str(boost::format( "Detected time deviation between board %d and board 0.\n" "Board 0 time is %f seconds.\n" "Board %d time is %f seconds.\n" |