ReactOS 0.4.15-dev-7842-g558ab78
serial.h File Reference
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Functions

VOID NTAPI LlbSerialPutChar (IN CHAR c)
 

Function Documentation

◆ LlbSerialPutChar()

VOID NTAPI LlbSerialPutChar ( IN CHAR  c)

Definition at line 13 of file serial.c.

14{
15 /* Properly support new-lines */
16 if (c == '\n') LlbSerialPutChar('\r');
17
18 /* Wait for ready */
19 while (!LlbHwUartTxReady());
20
21 /* Send character */
23}
VOID NTAPI LlbSerialPutChar(IN CHAR c)
Definition: serial.c:13
const GLubyte * c
Definition: glext.h:8905
VOID NTAPI LlbHwUartSendChar(IN CHAR Char)
Definition: hwuart.c:22
BOOLEAN NTAPI LlbHwUartTxReady(VOID)
Definition: hwuart.c:29

Referenced by DbgPrint(), LlbFwPutChar(), LlbSerialPutChar(), and putchar().