romapi_uart.c 4.5 KB
Newer Older
hillcode's avatar
hillcode 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154
/*
 * @brief UART ROM API declarations and functions
 *
 * @note
 * Copyright(C) NXP Semiconductors, 2014
 * All rights reserved.
 *
 * @par
 * Software that is described herein is for illustrative purposes only
 * which provides customers with programming information regarding the
 * LPC products.  This software is supplied "AS IS" without any warranties of
 * any kind, and NXP Semiconductors and its licensor disclaim any and
 * all warranties, express or implied, including all implied warranties of
 * merchantability, fitness for a particular purpose and non-infringement of
 * intellectual property rights.  NXP Semiconductors assumes no responsibility
 * or liability for the use of the software, conveys no license or rights under any
 * patent, copyright, mask work right, or any other intellectual property rights in
 * or to any products. NXP Semiconductors reserves the right to make changes
 * in the software without notification. NXP Semiconductors also makes no
 * representation or warranty that such application will be suitable for the
 * specified use without further testing or modification.
 *
 * @par
 * Permission to use, copy, modify, and distribute this software and its
 * documentation is hereby granted, under NXP Semiconductors' and its
 * licensor's relevant copyrights in the software, without fee, provided that it
 * is used in conjunction with NXP Semiconductors microcontrollers.  This
 * copyright, permission, and disclaimer notice must appear in all copies of
 * this code.
 */

#include "romapi_5410x.h"

/* Get memory size in bytes needed for ADC driver context */
uint32_t ROM_UART_GetMemSize(void)
{
#if defined(ROMDRIVERSV2_PRESENT)
	return ROMAPI_UART_API->GetMemSize();
#else
	return uartrom_api.GetMemSize();
#endif
}

/* Initialize the UART ROM driver */
UART_HANDLE_T ROM_UART_Init(void *pMem, uint32_t baseAddr, void *pUserData)
{
#if defined(ROMDRIVERSV2_PRESENT)
	return ROMAPI_UART_API->Init(pMem, baseAddr, pUserData);
#else
	return uartrom_api.Init(pMem, baseAddr, pUserData);
#endif
}

/* Configure the UART peripheral */
ErrorCode_t ROM_UART_Configure(UART_HANDLE_T hUART, const UART_CFG_T *pCfg)
{
#if defined(ROMDRIVERSV2_PRESENT)
	return ROMAPI_UART_API->Configure(hUART, pCfg);
#else
	return uartrom_api.Configure(hUART, pCfg);
#endif
}

/* Calculate baudrate dividers and oversampling values */
ErrorCode_t ROM_UART_CalBaud(UART_BAUD_T *baud)
{
#if defined(ROMDRIVERSV2_PRESENT)
	return ROMAPI_UART_API->CalBaud(baud);
#else
	return uartrom_api.CalBaud(baud);
#endif
}

/* Set/Clear special control operations like BREAK, IDLE, etc., */
void ROM_UART_SetCtrl(UART_HANDLE_T hUART, uint32_t cfgVal)
{
#if defined(ROMDRIVERSV2_PRESENT)
	ROMAPI_UART_API->SetCtrl(hUART, cfgVal);
#else
	uartrom_api.SetCtrl(hUART, cfgVal);
#endif
}

/* Registers an UART callback function */
ErrorCode_t ROM_UART_RegisterCB(UART_HANDLE_T hUART, UART_CBINDEX_T cbIndex, void (*pCbFunc)(UART_HANDLE_T,
																							 UART_EVENT_T,
																							 void *))
{
#if defined(ROMDRIVERSV2_PRESENT)
	return ROMAPI_UART_API->RegisterCB(hUART, cbIndex, pCbFunc);
#else
	return uartrom_api.RegisterCB(hUART, cbIndex, pCbFunc);
#endif
}

/* UART Event handler, should be called from the ISR */
void ROM_UART_Handler(UART_HANDLE_T hUART)
{
#if defined(ROMDRIVERSV2_PRESENT)
	ROMAPI_UART_API->Handler(hUART);
#else
	uartrom_api.Handler(hUART);
#endif
}

/* Send data to UART */
ErrorCode_t ROM_UART_Send(UART_HANDLE_T hUART, const void *buffer, uint16_t size)
{
#if defined(ROMDRIVERSV2_PRESENT)
	return ROMAPI_UART_API->Send(hUART, buffer, size);
#else
	return uartrom_api.Send(hUART, buffer, size);
#endif
}

/* Receive data from UART */
ErrorCode_t ROM_UART_Receive(UART_HANDLE_T hUART, void *buffer, uint16_t size)
{
#if defined(ROMDRIVERSV2_PRESENT)
	return ROMAPI_UART_API->Receive(hUART, buffer, size);
#else
	return uartrom_api.Receive(hUART, buffer, size);
#endif
}

/* Wait for UART TX to complete; Used for polling */
void ROM_UART_WaitTx(UART_HANDLE_T hUART)
{
#if defined(ROMDRIVERSV2_PRESENT)
	ROMAPI_UART_API->WaitTx(hUART);
#else
	uartrom_api.WaitTx(hUART);
#endif
}

/* Wait for UART data receive to complete; Used for polling */
void ROM_UART_WaitRx(UART_HANDLE_T hUART)
{
#if defined(ROMDRIVERSV2_PRESENT)
	ROMAPI_UART_API->WaitRx(hUART);
#else
	uartrom_api.WaitRx(hUART);
#endif
}

/* Get Current verion of the UART ROM driver */
uint16_t ROM_UART_GetDriverVersion(void)
{
#if defined(ROMDRIVERSV2_PRESENT)
	return ROMAPI_UART_API->GetDriverVersion();
#else
	return uartrom_api.GetDriverVersion();
#endif
}