ReactOS 0.4.15-dev-7924-g5949c20
serial.c
Go to the documentation of this file.
1/*
2 * PROJECT: ReactOS Boot Loader
3 * LICENSE: BSD - See COPYING.ARM in the top level directory
4 * FILE: boot/armllb/hw/serial.c
5 * PURPOSE: LLB Serial Port Routines
6 * PROGRAMMERS: ReactOS Portable Systems Group
7 */
8
9#include "precomp.h"
10
11VOID
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}
24
25/* EOF */
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
#define NTAPI
Definition: typedefs.h:36
#define IN
Definition: typedefs.h:39
char CHAR
Definition: xmlstorage.h:175