romapi_uart.h 8.2 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 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204
/*
 * @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.
 */

#ifndef __ROMAPI_UART_H_
#define __ROMAPI_UART_H_

#include "hw_uart_rom_api.h"

#ifdef __cplusplus
extern "C" {
#endif

/** @defgroup ROMAPI_UART_WRAPPER CHIP: UART ROM wrapper functions
 * @ingroup ROMAPI_5410X
 * @{
 */

/**
 * @brief	Get memory size in bytes needed for SPI master driver context
 * @return	Size in bytes needed for the ROM driver
 */
uint32_t ROM_UART_GetMemSize(void);

/**
 * @brief	Initialize UART ROM Driver
 * @param	pMem		: Pointer to memory area for driver context
 * @param	baseAddr	: Base address of the UART peripheral
 * @param	pUserData	: Pointer to User Data
 * @return	Pointer to the device context handle or NULL on alignment failure
 * @note	Parameter @a pMem must be a pointer to word aligned memory
 *          if the pointer is not word aligned (4-Byte) the function returns
 *          NULL.
 */
UART_HANDLE_T ROM_UART_Init(void *pMem, uint32_t baseAddr, void *pUserData);

/**
 * @brief	Configure the UART peripheral
 * @param	hUART	: Handle to UART obtained using ROM_UART_Init()
 * @param	pCfg	: Pointer to configuration structure #UART_CFG_T
 * @return	LPC_OK on Success, ERR_UART_PARAM if any of cfg values are invalid
 */
ErrorCode_t ROM_UART_Configure(UART_HANDLE_T hUART, const UART_CFG_T *pCfg);

/**
 * @brief	Calculate UART Baud rate parameters
 * @param	baud	: [IN/OUT] Pointer to baud rate structure
 * @return	LPC_OK on Success, ERR_UART_BAUDRATE baudrate for given frequency is not within limits
 * @sa		UART_BAUD_T
 */
ErrorCode_t ROM_UART_CalBaud(UART_BAUD_T *baud);

/**
 * @brief	Set UART Control operations
 * @param	hUART	: Handle to UART obtained using ROM_UART_Init()
 * @param	cfgVal	: Configuration value (one or more (OR'ed) values of #UART_BREAK_ON, #UART_TX_PAUSE etc)
 * @return	Nothing
 * @note
 * To set TX in BREAK state, use <b>ROM_UART_SetCtrl(hUART, UART_BREAK_ON)</b>, to bring TX out of BREAK state
 * use <b>ROM_UART_SetCtrl(hUART, UART_BREAK_OFF)</b>. Us the above method will set TX line to BREAK state even
 * if there is a data is being sent, hence the receiver might get a UART FRAME error and the data in progress might
 * get lost. To avoid this application can pause TX before the TX gets to BREAK state by calling, <b>
 * ROM_UART_SetCtrl(hUART, #UART_BREAK_ON | #UART_TX_PAUSE)</b> and release the break by calling <b>
 * ROM_UART_SetCtrl(hUART, #UART_BREAK_OFF | #UART_TX_RESUME)</b>.<br>
 * <b>ROM_UART_SetCtrl(hUART, #UART_TX_PAUSE)</b> will stop the TX until <b>ROM_UART_SetCtrl(hUART,
 * #UART_TX_RESUME)</b> * this could be used to implement flow-control.
 */
void ROM_UART_SetCtrl(UART_HANDLE_T hUART, uint32_t cfgVal);

/**
 * @brief	Registers a callback function associated with an event
 * @param	hUART	: Handle to UART obtained using ROM_UART_Init()
 * @param	cbIndex	: Index of the call-back function (Associated with an event)
 * @param	pCbFunc	: Pointer to callback function
 * @return	Success or failure
 * @retval	LPC_OK			Callback successfully registered
 * @retval	ERR_UART_PARAM	Invaild event parameter for @a cbIndex
 */
ErrorCode_t ROM_UART_RegisterCB(UART_HANDLE_T hUART, UART_CBINDEX_T cbIndex, void (*pCbFunc)(UART_HANDLE_T,
																							 UART_EVENT_T,
																							 void *));

/**
 * @brief	UART Event handler function (Usually called from interrupt handler)
 * @param	hUART	: Handle to UART obtained using ROM_UART_Init()
 * @return	Nothing
 */
void ROM_UART_Handler(UART_HANDLE_T hUART);

/**
 * @brief	Send data to UART
 * @param	hUART	: Handle to UART obtained using ROM_UART_Init()
 * @param	buffer	: Buffer to send
 * @param	size	: Number of items in buffer
 * @return	LPC_OK when buffer is queued successfully for sending
 * @note	If the UART Data size is 9, then buffer should be of type
 * uint16_t *, size should be number of uint16_t (not size in bytes).
 */
ErrorCode_t ROM_UART_Send(UART_HANDLE_T hUART, const void *buffer, uint16_t size);

/**
 * @brief	Receive data from UART
 * @param	hUART	: Handle to UART obtained using ROM_UART_Init()
 * @param	buffer	: Buffer to send
 * @param	size	: Number of items in buffer
 * @return	LPC_OK when buffer is queued successfully for receiving data
 * @note	If the UART Data size is 9, then buffer should be of type
 * uint16_t *, size should be number of uint16_t (not size in bytes).
 */
ErrorCode_t ROM_UART_Receive(UART_HANDLE_T hUART, void *buffer, uint16_t size);

/**
 * @brief	Send data to UART [Blocking]
 * @param	hUART	: Handle to UART obtained using ROM_UART_Init()
 * @param	buffer	: Buffer to send
 * @param	size	: Number of items in buffer
 * @return	LPC_OK when buffer is queued successfully for sending
 * @note	If the UART Data size is 9, then buffer should be of type
 * uint16_t *, size should be number of uint16_t (not size in bytes).
 * <b> This API is not in the ROM this is a wrapper API, that uses
 * @a ROM_UART_Send() and @a ROM_UART_FlushTx()</b>
 */
ErrorCode_t ROM_UART_SendBlock(UART_HANDLE_T hUART, const void *buffer, uint16_t size);

/**
 * @brief	Receive data from UART [Blocking]
 * @param	hUART	: Handle to UART obtained using ROM_UART_Init()
 * @param	buffer	: Buffer to send
 * @param	size	: Number of items in buffer
 * @return	LPC_OK when buffer is queued successfully for receiving data
 * @note	If the UART Data size is 9, then buffer should be of type
 * uint16_t *, size should be number of uint16_t (not size in bytes).
 * <b> This API is not in the ROM this is a wrapper API, that uses
 * @a ROM_UART_Receive() and @a ROM_UART_FetchRx()</b>
 */
ErrorCode_t ROM_UART_ReceiveBlock(UART_HANDLE_T hUART, void *buffer, uint16_t size);

/**
 * @brief	Wait for the current TX buffer to be sent
 * @param	hUART	: Handle to UART obtained using ROM_UART_Init()
 * @return	Nothing
 * @note	This call will bock the excution till all the data bytes are sent.
 * @sa		ROM_UART_Send()
 */
void ROM_UART_WaitTx(UART_HANDLE_T hUART);

/**
 * @brief	Complete the current Receive transfer
 * @param	hUART	: Handle to UART obtained using ROM_UART_Init()
 * @return	Nothing
 * @note	This call will bock the excution till all the data bytes are read,
 * if there is no RX in progress this call will read and discard the current
 * pending RX data and the incoming data until there is no data coming from uart
 * atleast for one data time, mainly used for discarding UART frames that had
 * started arriving and overflown before the ROM_UART_Receive was called.
 * @sa		ROM_UART_Receive()
 */
void ROM_UART_WaitRx(UART_HANDLE_T hUART);

/**
 * @brief	Return the UART ROM driver version
 * @return	Driver version number
 * @note	The returned driver version number consists of a major and minor
 * number, with the minor number in the lower 8 bits and the major number in
 * the upper 8 bits.
 */
uint16_t ROM_UART_GetDriverVersion(void);

/**
 * @}
 */

#ifdef __cplusplus
}
#endif

#endif /* __ROMAPI_UART_H_ */