From 76e746273c8fb0dc8952a04de87ff23c14916466 Mon Sep 17 00:00:00 2001 From: Perry Hung Date: Mon, 22 Mar 2010 23:19:36 -0400 Subject: Add a carriage return for println, remove it from the usart send routine. --- src/wiring/Print.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/wiring/Print.cpp') diff --git a/src/wiring/Print.cpp b/src/wiring/Print.cpp index c7e0cc6..efe3eef 100644 --- a/src/wiring/Print.cpp +++ b/src/wiring/Print.cpp @@ -98,7 +98,7 @@ void Print::print(double n) void Print::println(void) { -// print('\r'); + print('\r'); print('\n'); } -- cgit v1.2.3