Home | Info | Community | Development | myReactOS | Contact Us
Definition at line 13 of file serial.c.
Referenced by DbgPrint(), LlbFwPutChar(), LlbSerialPutChar(), and putchar().
{ /* Properly support new-lines */ if (c == '\n') LlbSerialPutChar('\r'); /* Wait for ready */ while (!LlbHwUartTxReady()); /* Send character */ LlbHwUartSendChar(c); }