aboutsummaryrefslogtreecommitdiffstats
path: root/host/lib/usrp/simple_usrp.cpp
diff options
context:
space:
mode:
authorJosh Blum <josh@joshknows.com>2010-09-22 17:36:18 -0700
committerJosh Blum <josh@joshknows.com>2010-09-22 17:36:18 -0700
commit000578892e9cf8f0117b55dc5d770faad36740d0 (patch)
treef3f6bb81367ea9ff9e277e451ee9cecd63a6349e /host/lib/usrp/simple_usrp.cpp
parent887aab36a0618124c3f2dffa8df9e8d943dfb1ee (diff)
downloaduhd-000578892e9cf8f0117b55dc5d770faad36740d0.tar.gz
uhd-000578892e9cf8f0117b55dc5d770faad36740d0.tar.bz2
uhd-000578892e9cf8f0117b55dc5d770faad36740d0.zip
usrp1: reworked the io_impl for usrp1 to use the vrt packet handler
used dummy packers and unpackets that have a header size of zero created wrapper around the data transport to handle non-512 multiple sends honor the eob flag on send to flush the send buffer
Diffstat (limited to 'host/lib/usrp/simple_usrp.cpp')
-rw-r--r--host/lib/usrp/simple_usrp.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/host/lib/usrp/simple_usrp.cpp b/host/lib/usrp/simple_usrp.cpp
index d29952955..b89b76eed 100644
--- a/host/lib/usrp/simple_usrp.cpp
+++ b/host/lib/usrp/simple_usrp.cpp
@@ -216,7 +216,7 @@ simple_usrp::sptr simple_usrp::make(const device_addr_t &dev_addr){
"The simple USRP interface has been deprecated.\n"
"Please switch to the single USRP interface.\n"
"#include <uhd/usrp/single_usrp.hpp>\n"
- "simple_usrp::sptr sdev = simple_usrp::make(args);\n"
+ "single_usrp::sptr sdev = single_usrp::make(args);\n"
);
return sptr(new simple_usrp_impl(dev_addr));
}