Home | Info | Community | Development | myReactOS | Contact Us
ReactOS Development > Doxygenhwuart.c
Go to the documentation of this file.
00001 /* 00002 * PROJECT: ReactOS Boot Loader 00003 * LICENSE: BSD - See COPYING.ARM in the top level directory 00004 * FILE: boot/armllb/hw/omap3-beagle/hwuart.c 00005 * PURPOSE: LLB UART Initialization Routines for OMAP3 Beagle 00006 * PROGRAMMERS: ReactOS Portable Systems Group 00007 */ 00008 00009 #include "precomp.h" 00010 00011 /* FUNCTIONS ******************************************************************/ 00012 00013 VOID 00014 NTAPI 00015 LlbHwOmap3UartInitialize(VOID) 00016 { 00017 00018 } 00019 00020 VOID 00021 NTAPI 00022 LlbHwUartSendChar(IN CHAR Char) 00023 { 00024 00025 } 00026 00027 BOOLEAN 00028 NTAPI 00029 LlbHwUartTxReady(VOID) 00030 { 00031 return FALSE; 00032 } 00033 00034 ULONG 00035 NTAPI 00036 LlbHwGetUartBase(IN ULONG Port) 00037 { 00038 if (Port == 1) 00039 { 00040 return 0x4806A000; 00041 } 00042 else if (Port == 2) 00043 { 00044 return 0x4806C000; 00045 } 00046 else if (Port == 3) 00047 { 00048 return 0x49020000; 00049 } 00050 00051 return 0; 00052 } 00053 00054 /* EOF */ Generated on Sat May 26 2012 04:17:47 for ReactOS by
1.7.6.1
|