diff options
author | michael-west <michael.west@ettus.com> | 2016-08-15 15:08:25 -0700 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2016-09-02 11:10:46 -0700 |
commit | 8401e84d68f2061bc651d4c89a40c31009909889 (patch) | |
tree | d0e68a38b4ef8719e3a604b26c4b6969dbcde66b /host/lib/usrp/e100 | |
parent | 2f1d2af82c0283edbd7faf3b654afcec7377ebda (diff) | |
download | uhd-8401e84d68f2061bc651d4c89a40c31009909889.tar.gz uhd-8401e84d68f2061bc651d4c89a40c31009909889.tar.bz2 uhd-8401e84d68f2061bc651d4c89a40c31009909889.zip |
E100: Simplify GPSDO UART so it does not strip characters.
Diffstat (limited to 'host/lib/usrp/e100')
-rw-r--r-- | host/lib/usrp/e100/e100_ctrl.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/host/lib/usrp/e100/e100_ctrl.cpp b/host/lib/usrp/e100/e100_ctrl.cpp index 3b59a93e1..c164a6fb0 100644 --- a/host/lib/usrp/e100/e100_ctrl.cpp +++ b/host/lib/usrp/e100/e100_ctrl.cpp @@ -232,8 +232,6 @@ public: //got a character -> process it if (ret == 1){ - if (ch == '\r') continue; - if (ch == '\n' and _line.empty()) continue; _line += ch; if (ch == '\n') { |