X-Git-Url: https://hackdaworld.org/gitweb/?p=my-code%2Farm.git;a=blobdiff_plain;f=betty%2Fuart.c;h=715509ff70ddc94c61fa27a4532f45a347872592;hp=5760e3b45dd4467ec29b680ee6f26286ee1022b1;hb=38c6de0e83cd19fd4c17c47844b80ba94c150b4b;hpb=62c9b5c57e036a7a2cae5670349b86b060775706 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;