aboutsummaryrefslogtreecommitdiffstats
path: root/host/examples/txrx_loopback_to_file.cpp
diff options
context:
space:
mode:
authorMartin Braun <martin.braun@ettus.com>2014-04-01 14:10:30 +0200
committerMartin Braun <martin.braun@ettus.com>2014-04-10 21:26:39 +0200
commit853901782f07b62bf774551c344a65606e545a4f (patch)
tree8a432c415ba508efe8b76b6298be72b8b8a4872f /host/examples/txrx_loopback_to_file.cpp
parent0fcd0282f86de158f25e30f7e14be820e6f3623a (diff)
downloaduhd-853901782f07b62bf774551c344a65606e545a4f.tar.gz
uhd-853901782f07b62bf774551c344a65606e545a4f.tar.bz2
uhd-853901782f07b62bf774551c344a65606e545a4f.zip
uhd: Added nicer error reporting to rx examples
Diffstat (limited to 'host/examples/txrx_loopback_to_file.cpp')
-rw-r--r--host/examples/txrx_loopback_to_file.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/host/examples/txrx_loopback_to_file.cpp b/host/examples/txrx_loopback_to_file.cpp
index 3d3cf1dfc..a62ccd7b2 100644
--- a/host/examples/txrx_loopback_to_file.cpp
+++ b/host/examples/txrx_loopback_to_file.cpp
@@ -181,8 +181,8 @@ template<typename samp_type> void recv_to_file(
}
if (md.error_code != uhd::rx_metadata_t::ERROR_CODE_NONE){
throw std::runtime_error(str(boost::format(
- "Unexpected error code 0x%x"
- ) % md.error_code));
+ "Receiver error %s"
+ ) % md.strerror()));
}
num_total_samps += num_rx_samps;