Fix serial console carriage return

This commit is contained in:
Jeremy Soller 2016-12-19 21:16:59 -07:00
parent 1b7ea69430
commit 7a361b34db

View file

@ -79,9 +79,6 @@ impl SerialPort {
self.write(b' ');
self.write(8);
},
b'\r' => {
self.write(b'\n');
},
_ => {
self.write(data);
}