ReactOS 0.4.15-dev-7918-g2a2556c
hwuart.c File Reference
#include "precomp.h"
Include dependency graph for hwuart.c:

Go to the source code of this file.

Functions

VOID NTAPI LlbHwOmap3UartInitialize (VOID)
 
VOID NTAPI LlbHwUartSendChar (IN CHAR Char)
 
BOOLEAN NTAPI LlbHwUartTxReady (VOID)
 
ULONG NTAPI LlbHwGetUartBase (IN ULONG Port)
 

Function Documentation

◆ LlbHwGetUartBase()

ULONG NTAPI LlbHwGetUartBase ( IN ULONG  Port)

Definition at line 36 of file hwuart.c.

37{
38 if (Port == 1)
39 {
40 return 0x4806A000;
41 }
42 else if (Port == 2)
43 {
44 return 0x4806C000;
45 }
46 else if (Port == 3)
47 {
48 return 0x49020000;
49 }
50
51 return 0;
52}
CPPORT Port[4]
Definition: headless.c:35

Referenced by LlbBuildArmBlock().

◆ LlbHwOmap3UartInitialize()

VOID NTAPI LlbHwOmap3UartInitialize ( VOID  )

Definition at line 15 of file hwuart.c.

16{
17
18}

Referenced by LlbHwInitialize().

◆ LlbHwUartSendChar()

VOID NTAPI LlbHwUartSendChar ( IN CHAR  Char)

Definition at line 22 of file hwuart.c.

23{
24
25}

Referenced by LlbSerialPutChar().

◆ LlbHwUartTxReady()

BOOLEAN NTAPI LlbHwUartTxReady ( VOID  )

Definition at line 29 of file hwuart.c.

30{
31 return FALSE;
32}
#define FALSE
Definition: types.h:117

Referenced by LlbSerialPutChar().