removed waiting for CTS in serial out and reinstated the serial output by default...
[bootcensus] / src / serial.c
index 792f296..e833672 100644 (file)
@@ -234,7 +234,7 @@ void ser_putc(int fd, char c)
        }
 
        while(!can_send(fd));
-       while((inb(base + UART_MSTAT) & MST_CTS) == 0);
+       /*while((inb(base + UART_MSTAT) & MST_CTS) == 0);*/
        outb(c, base + UART_DATA);
 }