modified puts to not add '\n' in puts

Dependencies:   Buffer

Fork of BufferedSerial by Sam Grove

Revision:
13:a8fb4aa21c54
Parent:
11:779304f9c5d2
--- a/BufferedSerial.cpp	Mon Mar 07 21:10:27 2016 +0000
+++ b/BufferedSerial.cpp	Tue Apr 18 00:49:57 2017 +0000
@@ -71,7 +71,7 @@
         while(*(ptr) != 0) {
             _txbuf = *(ptr++);
         }
-        _txbuf = '\n';  // done per puts definition
+        //_txbuf = '\n';  // done per puts definition
         BufferedSerial::prime();
     
         return (ptr - s) + 1;