Serial.println() now sends '\r', '\n' (instead of just '\n')

This commit is contained in:
David A. Mellis 2006-03-26 12:13:01 +00:00
parent c4c8c95474
commit 650c2752c8
1 changed files with 1 additions and 0 deletions

View File

@ -101,6 +101,7 @@ void HardwareSerial::print(long n, int base)
void HardwareSerial::println(void)
{
print('\r');
print('\n');
}