From fb85b0c9eb5a50a16e7568140d144650794774de Mon Sep 17 00:00:00 2001 From: Nick Foster Date: Tue, 14 Jun 2011 17:23:08 -0700 Subject: N210: stop sending 1 char at a time to the GPSDO --- host/lib/usrp/usrp2/usrp2_iface.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/host/lib/usrp/usrp2/usrp2_iface.cpp b/host/lib/usrp/usrp2/usrp2_iface.cpp index 85858929d..ec1a2e94c 100644 --- a/host/lib/usrp/usrp2/usrp2_iface.cpp +++ b/host/lib/usrp/usrp2/usrp2_iface.cpp @@ -270,7 +270,7 @@ public: **********************************************************************/ void write_uart(boost::uint8_t dev, const std::string &buf){ //first tokenize the string into 20-byte substrings - boost::offset_separator f(20, 1, true, true); + boost::offset_separator f(20, 20, true, true); boost::tokenizer tok(buf, f); std::vector queue(tok.begin(), tok.end()); -- cgit v1.2.3