serial ice: remove debug output

Change-Id: Idf4ac799197790484daa20bdd7bc104a684cb2a0
This commit is contained in:
Alexander Couzens 2017-10-29 02:45:47 +01:00
parent a4468ea249
commit 7215ed3997
1 changed files with 1 additions and 8 deletions

View File

@ -44,8 +44,7 @@ static u8 sio_getc(void)
val = debug_rx_byte();
if (val) {
sio_putstring("\n c: ");
sio_put8(val);
sio_putc(val);
return val;
}
@ -406,12 +405,6 @@ void serialice_main(void)
sio_putstring("\n> ");
len = sio_get_line(line, 32);
sio_putstring("\ngot len ");
sio_put32(len);
sio_putstring("'");
sio_putstring(line);
sio_putstring("'");
sio_putstring("\n");
/* only new line read */
if (len == 0)
continue;