X-Git-Url: https://hackdaworld.org/gitweb/?a=blobdiff_plain;f=betty%2Fuart.c;h=715509ff70ddc94c61fa27a4532f45a347872592;hb=bbf7d44cf935538f5a353665f160e5cd3ed59da8;hp=5760e3b45dd4467ec29b680ee6f26286ee1022b1;hpb=b4ca71fc214ba3c58cec25661ba1f81cf7b1b871;p=my-code%2Farm.git diff --git a/betty/uart.c b/betty/uart.c index 5760e3b..715509f 100644 --- a/betty/uart.c +++ b/betty/uart.c @@ -38,14 +38,6 @@ void uart0_send_string(char *txbuf) { continue; } - /* flush if \n and \r do not fit in the tx buffer */ - if(i>14) - while(!(UART0_LSR&(1<<6))) - continue; - - UART0_THR='\n'; - UART0_THR='\r'; - /* flush uart0 anyways */ while(!(UART0_LSR&(1<<6))) continue;