diff options
author | Perry Hung <iperry@alum.mit.edu> | 2010-03-22 23:19:36 -0400 |
---|---|---|
committer | Perry Hung <iperry@alum.mit.edu> | 2010-03-22 23:19:36 -0400 |
commit | 76e746273c8fb0dc8952a04de87ff23c14916466 (patch) | |
tree | ad90f663a0e784de78239f4156d69996b9c0a725 /src/wiring | |
parent | 8be3c78e0ad7a36ce6beaffcf3ec755861f23ca0 (diff) | |
download | librambutan-76e746273c8fb0dc8952a04de87ff23c14916466.tar.gz librambutan-76e746273c8fb0dc8952a04de87ff23c14916466.zip |
Add a carriage return for println, remove it from the usart send
routine.
Diffstat (limited to 'src/wiring')
-rw-r--r-- | src/wiring/Print.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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'); } |