Skip to content

Commit 650c275

Browse files
committed
Serial.println() now sends '\r', '\n' (instead of just '\n')
1 parent c4c8c95 commit 650c275

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

Diff for: targets/arduino/HardwareSerial.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,7 @@ void HardwareSerial::print(long n, int base)
101101

102102
void HardwareSerial::println(void)
103103
{
104+
print('\r');
104105
print('\n');
105106
}
106107

0 commit comments

Comments
 (0)