rt-thread-official/bsp/lpc178x/drivers/lpc177x_8x_uart.h

698 lines
31 KiB
C
Raw Normal View History

2013-01-08 22:40:58 +08:00
/**********************************************************************
2021-03-17 02:26:35 +08:00
* $Id$ lpc177x_8x_uart.h 2011-06-02
2013-01-08 22:40:58 +08:00
*//**
2021-03-17 02:26:35 +08:00
* @file lpc177x_8x_uart.h
* @brief Contains all macro definitions and function prototypes
* support for UART firmware library on LPC177x_8x
* @version 1.0
* @date 02. June. 2011
* @author NXP MCU SW Application Team
*
2013-01-08 22:40:58 +08:00
* Copyright(C) 2011, NXP Semiconductor
* All rights reserved.
*
***********************************************************************
* Software that is described herein is for illustrative purposes only
* which provides customers with programming information regarding the
* products. This software is supplied "AS IS" without any warranties.
* NXP Semiconductors assumes no responsibility or liability for the
* use of the software, conveys no license or title under any patent,
* copyright, or mask work right to the product. NXP Semiconductors
* reserves the right to make changes in the software without
* notification. NXP Semiconductors also make no representation or
* warranty that such application will be suitable for the specified
* use without further testing or modification.
**********************************************************************/
/* Peripheral group ----------------------------------------------------------- */
2021-03-17 02:26:35 +08:00
/** @defgroup UART UART (Universal Asynchronous Receiver/Transmitter)
2013-01-08 22:40:58 +08:00
* @ingroup LPC177x_8xCMSIS_FwLib_Drivers
* @{
*/
#ifndef __LPC177X_8X_UART_H_
#define __LPC177X_8X_UART_H_
/* Includes ------------------------------------------------------------------- */
#include "LPC177x_8x.h"
#include "lpc_types.h"
#ifdef __cplusplus
extern "C"
{
#endif
/* Public Macros -------------------------------------------------------------- */
/** @defgroup UART_Public_Macros UART Public Macros
* @{
*/
/** UART time-out definitions in case of using Read() and Write function
* with Blocking Flag mode
*/
2021-03-17 02:26:35 +08:00
#define UART_BLOCKING_TIMEOUT (0xFFFFFFFFUL)
2013-01-08 22:40:58 +08:00
/**
* @}
*/
/* Private Macros ------------------------------------------------------------- */
/** @defgroup UART_Private_Macros UART Private Macros
* @{
*/
/* Accepted Error baud rate value (in percent unit) */
2021-03-17 02:26:35 +08:00
#define UART_ACCEPTED_BAUDRATE_ERROR (3) /*!< Acceptable UART baudrate error */
2013-01-08 22:40:58 +08:00
/* --------------------- BIT DEFINITIONS -------------------------------------- */
/*********************************************************************//**
* Macro defines for Macro defines for UARTn Receiver Buffer Register
**********************************************************************/
/** UART Received Buffer mask bit (8 bits) */
2021-03-17 02:26:35 +08:00
#define UART_RBR_MASKBIT ((uint8_t)0xFF)
2013-01-08 22:40:58 +08:00
/*********************************************************************//**
* Macro defines for Macro defines for UARTn Transmit Holding Register
**********************************************************************/
/** UART Transmit Holding mask bit (8 bits) */
2021-03-17 02:26:35 +08:00
#define UART_THR_MASKBIT ((uint8_t)0xFF)
2013-01-08 22:40:58 +08:00
/*********************************************************************//**
* Macro defines for Macro defines for UARTn Divisor Latch LSB register
**********************************************************************/
/** Macro for loading least significant halfs of divisors */
2021-03-17 02:26:35 +08:00
#define UART_LOAD_DLL(div) ((div) & 0xFF)
2013-01-08 22:40:58 +08:00
/** Divisor latch LSB bit mask */
2021-03-17 02:26:35 +08:00
#define UART_DLL_MASKBIT ((uint8_t)0xFF)
2013-01-08 22:40:58 +08:00
/*********************************************************************//**
* Macro defines for Macro defines for UARTn Divisor Latch MSB register
**********************************************************************/
/** Divisor latch MSB bit mask */
2021-03-17 02:26:35 +08:00
#define UART_DLM_MASKBIT ((uint8_t)0xFF)
2013-01-08 22:40:58 +08:00
/** Macro for loading most significant halfs of divisors */
#define UART_LOAD_DLM(div) (((div) >> 8) & 0xFF)
/*********************************************************************//**
* Macro defines for Macro defines for UART interrupt enable register
**********************************************************************/
/** RBR Interrupt enable*/
2021-03-17 02:26:35 +08:00
#define UART_IER_RBRINT_EN ((uint32_t)(1<<0))
2013-01-08 22:40:58 +08:00
/** THR Interrupt enable*/
2021-03-17 02:26:35 +08:00
#define UART_IER_THREINT_EN ((uint32_t)(1<<1))
2013-01-08 22:40:58 +08:00
/** RX line status interrupt enable*/
2021-03-17 02:26:35 +08:00
#define UART_IER_RLSINT_EN ((uint32_t)(1<<2))
2013-01-08 22:40:58 +08:00
/** Modem status interrupt enable */
2021-03-17 02:26:35 +08:00
#define UART1_IER_MSINT_EN ((uint32_t)(1<<3))
2013-01-08 22:40:58 +08:00
/** CTS1 signal transition interrupt enable */
2021-03-17 02:26:35 +08:00
#define UART1_IER_CTSINT_EN ((uint32_t)(1<<7))
2013-01-08 22:40:58 +08:00
/** Enables the end of auto-baud interrupt */
2021-03-17 02:26:35 +08:00
#define UART_IER_ABEOINT_EN ((uint32_t)(1<<8))
2013-01-08 22:40:58 +08:00
/** Enables the auto-baud time-out interrupt */
2021-03-17 02:26:35 +08:00
#define UART_IER_ABTOINT_EN ((uint32_t)(1<<9))
2013-01-08 22:40:58 +08:00
/** UART interrupt enable register bit mask */
2021-03-17 02:26:35 +08:00
#define UART_IER_BITMASK ((uint32_t)(0x307))
2013-01-08 22:40:58 +08:00
/** UART1 interrupt enable register bit mask */
2021-03-17 02:26:35 +08:00
#define UART1_IER_BITMASK ((uint32_t)(0x38F))
2013-01-08 22:40:58 +08:00
/*********************************************************************//**
* Macro defines for Macro defines for UART interrupt identification register
**********************************************************************/
/** Interrupt Status - Active low */
2021-03-17 02:26:35 +08:00
#define UART_IIR_INTSTAT_PEND ((uint32_t)(1<<0))
2013-01-08 22:40:58 +08:00
/** Interrupt identification: Receive line status*/
2021-03-17 02:26:35 +08:00
#define UART_IIR_INTID_RLS ((uint32_t)(3<<1))
2013-01-08 22:40:58 +08:00
/** Interrupt identification: Receive data available*/
2021-03-17 02:26:35 +08:00
#define UART_IIR_INTID_RDA ((uint32_t)(2<<1))
2013-01-08 22:40:58 +08:00
/** Interrupt identification: Character time-out indicator*/
2021-03-17 02:26:35 +08:00
#define UART_IIR_INTID_CTI ((uint32_t)(6<<1))
2013-01-08 22:40:58 +08:00
/** Interrupt identification: THRE interrupt*/
2021-03-17 02:26:35 +08:00
#define UART_IIR_INTID_THRE ((uint32_t)(1<<1))
2013-01-08 22:40:58 +08:00
/** Interrupt identification: Modem interrupt*/
2021-03-17 02:26:35 +08:00
#define UART1_IIR_INTID_MODEM ((uint32_t)(0<<1))
2013-01-08 22:40:58 +08:00
/** Interrupt identification: Interrupt ID mask */
2021-03-17 02:26:35 +08:00
#define UART_IIR_INTID_MASK ((uint32_t)(7<<1))
2013-01-08 22:40:58 +08:00
/** These bits are equivalent to UnFCR[0] */
2021-03-17 02:26:35 +08:00
#define UART_IIR_FIFO_EN ((uint32_t)(3<<6))
2013-01-08 22:40:58 +08:00
/** End of auto-baud interrupt */
2021-03-17 02:26:35 +08:00
#define UART_IIR_ABEO_INT ((uint32_t)(1<<8))
2013-01-08 22:40:58 +08:00
/** Auto-baud time-out interrupt */
2021-03-17 02:26:35 +08:00
#define UART_IIR_ABTO_INT ((uint32_t)(1<<9))
2013-01-08 22:40:58 +08:00
/** UART interrupt identification register bit mask */
2021-03-17 02:26:35 +08:00
#define UART_IIR_BITMASK ((uint32_t)(0x3CF))
2013-01-08 22:40:58 +08:00
/*********************************************************************//**
* Macro defines for Macro defines for UART FIFO control register
**********************************************************************/
/** UART FIFO enable */
2021-03-17 02:26:35 +08:00
#define UART_FCR_FIFO_EN ((uint8_t)(1<<0))
2013-01-08 22:40:58 +08:00
/** UART FIFO RX reset */
2021-03-17 02:26:35 +08:00
#define UART_FCR_RX_RS ((uint8_t)(1<<1))
2013-01-08 22:40:58 +08:00
/** UART FIFO TX reset */
2021-03-17 02:26:35 +08:00
#define UART_FCR_TX_RS ((uint8_t)(1<<2))
2013-01-08 22:40:58 +08:00
/** UART DMA mode selection */
2021-03-17 02:26:35 +08:00
#define UART_FCR_DMAMODE_SEL ((uint8_t)(1<<3))
2013-01-08 22:40:58 +08:00
/** UART FIFO trigger level 0: 1 character */
2021-03-17 02:26:35 +08:00
#define UART_FCR_TRG_LEV0 ((uint8_t)(0))
2013-01-08 22:40:58 +08:00
/** UART FIFO trigger level 1: 4 character */
2021-03-17 02:26:35 +08:00
#define UART_FCR_TRG_LEV1 ((uint8_t)(1<<6))
2013-01-08 22:40:58 +08:00
/** UART FIFO trigger level 2: 8 character */
2021-03-17 02:26:35 +08:00
#define UART_FCR_TRG_LEV2 ((uint8_t)(2<<6))
2013-01-08 22:40:58 +08:00
/** UART FIFO trigger level 3: 14 character */
2021-03-17 02:26:35 +08:00
#define UART_FCR_TRG_LEV3 ((uint8_t)(3<<6))
2013-01-08 22:40:58 +08:00
/** UART FIFO control bit mask */
2021-03-17 02:26:35 +08:00
#define UART_FCR_BITMASK ((uint8_t)(0xCF))
2013-01-08 22:40:58 +08:00
2021-03-17 02:26:35 +08:00
#define UART_TX_FIFO_SIZE (16)
2013-01-08 22:40:58 +08:00
/*********************************************************************//**
* Macro defines for Macro defines for UART line control register
**********************************************************************/
/** UART 5 bit data mode */
2021-03-17 02:26:35 +08:00
#define UART_LCR_WLEN5 ((uint8_t)(0))
2013-01-08 22:40:58 +08:00
/** UART 6 bit data mode */
2021-03-17 02:26:35 +08:00
#define UART_LCR_WLEN6 ((uint8_t)(1<<0))
2013-01-08 22:40:58 +08:00
/** UART 7 bit data mode */
2021-03-17 02:26:35 +08:00
#define UART_LCR_WLEN7 ((uint8_t)(2<<0))
2013-01-08 22:40:58 +08:00
/** UART 8 bit data mode */
2021-03-17 02:26:35 +08:00
#define UART_LCR_WLEN8 ((uint8_t)(3<<0))
2013-01-08 22:40:58 +08:00
/** UART Two Stop Bits Select */
2021-03-17 02:26:35 +08:00
#define UART_LCR_STOPBIT_SEL ((uint8_t)(1<<2))
2013-01-08 22:40:58 +08:00
/** UART Parity Enable */
2021-03-17 02:26:35 +08:00
#define UART_LCR_PARITY_EN ((uint8_t)(1<<3))
2013-01-08 22:40:58 +08:00
/** UART Odd Parity Select */
2021-03-17 02:26:35 +08:00
#define UART_LCR_PARITY_ODD ((uint8_t)(0))
2013-01-08 22:40:58 +08:00
/** UART Even Parity Select */
2021-03-17 02:26:35 +08:00
#define UART_LCR_PARITY_EVEN ((uint8_t)(1<<4))
2013-01-08 22:40:58 +08:00
/** UART force 1 stick parity */
2021-03-17 02:26:35 +08:00
#define UART_LCR_PARITY_F_1 ((uint8_t)(2<<4))
2013-01-08 22:40:58 +08:00
/** UART force 0 stick parity */
2021-03-17 02:26:35 +08:00
#define UART_LCR_PARITY_F_0 ((uint8_t)(3<<4))
2013-01-08 22:40:58 +08:00
/** UART Transmission Break enable */
2021-03-17 02:26:35 +08:00
#define UART_LCR_BREAK_EN ((uint8_t)(1<<6))
2013-01-08 22:40:58 +08:00
/** UART Divisor Latches Access bit enable */
2021-03-17 02:26:35 +08:00
#define UART_LCR_DLAB_EN ((uint8_t)(1<<7))
2013-01-08 22:40:58 +08:00
/** UART line control bit mask */
2021-03-17 02:26:35 +08:00
#define UART_LCR_BITMASK ((uint8_t)(0xFF))
2013-01-08 22:40:58 +08:00
/*********************************************************************//**
* Macro defines for Macro defines for UART1 Modem Control Register
**********************************************************************/
/** Source for modem output pin DTR */
2021-03-17 02:26:35 +08:00
#define UART1_MCR_DTR_CTRL ((uint8_t)(1<<0))
2013-01-08 22:40:58 +08:00
/** Source for modem output pin RTS */
2021-03-17 02:26:35 +08:00
#define UART1_MCR_RTS_CTRL ((uint8_t)(1<<1))
2013-01-08 22:40:58 +08:00
/** Loop back mode select */
2021-03-17 02:26:35 +08:00
#define UART1_MCR_LOOPB_EN ((uint8_t)(1<<4))
2013-01-08 22:40:58 +08:00
/** Enable Auto RTS flow-control */
2021-03-17 02:26:35 +08:00
#define UART1_MCR_AUTO_RTS_EN ((uint8_t)(1<<6))
2013-01-08 22:40:58 +08:00
/** Enable Auto CTS flow-control */
2021-03-17 02:26:35 +08:00
#define UART1_MCR_AUTO_CTS_EN ((uint8_t)(1<<7))
2013-01-08 22:40:58 +08:00
/** UART1 bit mask value */
2021-03-17 02:26:35 +08:00
#define UART1_MCR_BITMASK ((uint8_t)(0x0F3))
2013-01-08 22:40:58 +08:00
/*********************************************************************//**
* Macro defines for Macro defines for UART line status register
**********************************************************************/
/** Line status register: Receive data ready*/
2021-03-17 02:26:35 +08:00
#define UART_LSR_RDR ((uint8_t)(1<<0))
2013-01-08 22:40:58 +08:00
/** Line status register: Overrun error*/
2021-03-17 02:26:35 +08:00
#define UART_LSR_OE ((uint8_t)(1<<1))
2013-01-08 22:40:58 +08:00
/** Line status register: Parity error*/
2021-03-17 02:26:35 +08:00
#define UART_LSR_PE ((uint8_t)(1<<2))
2013-01-08 22:40:58 +08:00
/** Line status register: Framing error*/
2021-03-17 02:26:35 +08:00
#define UART_LSR_FE ((uint8_t)(1<<3))
2013-01-08 22:40:58 +08:00
/** Line status register: Break interrupt*/
2021-03-17 02:26:35 +08:00
#define UART_LSR_BI ((uint8_t)(1<<4))
2013-01-08 22:40:58 +08:00
/** Line status register: Transmit holding register empty*/
2021-03-17 02:26:35 +08:00
#define UART_LSR_THRE ((uint8_t)(1<<5))
2013-01-08 22:40:58 +08:00
/** Line status register: Transmitter empty*/
2021-03-17 02:26:35 +08:00
#define UART_LSR_TEMT ((uint8_t)(1<<6))
2013-01-08 22:40:58 +08:00
/** Error in RX FIFO*/
2021-03-17 02:26:35 +08:00
#define UART_LSR_RXFE ((uint8_t)(1<<7))
2013-01-08 22:40:58 +08:00
/** UART Line status bit mask */
2021-03-17 02:26:35 +08:00
#define UART_LSR_BITMASK ((uint8_t)(0xFF))
2013-01-08 22:40:58 +08:00
/*********************************************************************//**
* Macro defines for Macro defines for UART Modem (UART1 only) status register
**********************************************************************/
/** Set upon state change of input CTS */
2021-03-17 02:26:35 +08:00
#define UART1_MSR_DELTA_CTS ((uint8_t)(1<<0))
2013-01-08 22:40:58 +08:00
/** Set upon state change of input DSR */
2021-03-17 02:26:35 +08:00
#define UART1_MSR_DELTA_DSR ((uint8_t)(1<<1))
2013-01-08 22:40:58 +08:00
/** Set upon low to high transition of input RI */
2021-03-17 02:26:35 +08:00
#define UART1_MSR_LO2HI_RI ((uint8_t)(1<<2))
2013-01-08 22:40:58 +08:00
/** Set upon state change of input DCD */
2021-03-17 02:26:35 +08:00
#define UART1_MSR_DELTA_DCD ((uint8_t)(1<<3))
2013-01-08 22:40:58 +08:00
/** Clear To Send State */
2021-03-17 02:26:35 +08:00
#define UART1_MSR_CTS ((uint8_t)(1<<4))
2013-01-08 22:40:58 +08:00
/** Data Set Ready State */
2021-03-17 02:26:35 +08:00
#define UART1_MSR_DSR ((uint8_t)(1<<5))
2013-01-08 22:40:58 +08:00
/** Ring Indicator State */
2021-03-17 02:26:35 +08:00
#define UART1_MSR_RI ((uint8_t)(1<<6))
2013-01-08 22:40:58 +08:00
/** Data Carrier Detect State */
2021-03-17 02:26:35 +08:00
#define UART1_MSR_DCD ((uint8_t)(1<<7))
2013-01-08 22:40:58 +08:00
/** MSR register bit-mask value */
2021-03-17 02:26:35 +08:00
#define UART1_MSR_BITMASK ((uint8_t)(0xFF))
2013-01-08 22:40:58 +08:00
/*********************************************************************//**
* Macro defines for Macro defines for UART Scratch Pad Register
**********************************************************************/
/** UART Scratch Pad bit mask */
2021-03-17 02:26:35 +08:00
#define UART_SCR_BIMASK ((uint8_t)(0xFF))
2013-01-08 22:40:58 +08:00
/*********************************************************************//**
* Macro defines for Macro defines for UART Auto baudrate control register
**********************************************************************/
/** UART Auto-baud start */
2021-03-17 02:26:35 +08:00
#define UART_ACR_START ((uint32_t)(1<<0))
2013-01-08 22:40:58 +08:00
/** UART Auto baudrate Mode 1 */
2021-03-17 02:26:35 +08:00
#define UART_ACR_MODE ((uint32_t)(1<<1))
2013-01-08 22:40:58 +08:00
/** UART Auto baudrate restart */
2021-03-17 02:26:35 +08:00
#define UART_ACR_AUTO_RESTART ((uint32_t)(1<<2))
2013-01-08 22:40:58 +08:00
/** UART End of auto-baud interrupt clear */
2021-03-17 02:26:35 +08:00
#define UART_ACR_ABEOINT_CLR ((uint32_t)(1<<8))
2013-01-08 22:40:58 +08:00
/** UART Auto-baud time-out interrupt clear */
2021-03-17 02:26:35 +08:00
#define UART_ACR_ABTOINT_CLR ((uint32_t)(1<<9))
2013-01-08 22:40:58 +08:00
/** UART Auto Baudrate register bit mask */
2021-03-17 02:26:35 +08:00
#define UART_ACR_BITMASK ((uint32_t)(0x307))
2013-01-08 22:40:58 +08:00
/*********************************************************************//**
* Macro defines for Macro defines for UART IrDA control register
**********************************************************************/
/** IrDA mode enable */
2021-03-17 02:26:35 +08:00
#define UART_ICR_IRDAEN ((uint32_t)(1<<0))
2013-01-08 22:40:58 +08:00
/** IrDA serial input inverted */
2021-03-17 02:26:35 +08:00
#define UART_ICR_IRDAINV ((uint32_t)(1<<1))
2013-01-08 22:40:58 +08:00
/** IrDA fixed pulse width mode */
2021-03-17 02:26:35 +08:00
#define UART_ICR_FIXPULSE_EN ((uint32_t)(1<<2))
2013-01-08 22:40:58 +08:00
/** PulseDiv - Configures the pulse when FixPulseEn = 1 */
2021-03-17 02:26:35 +08:00
#define UART_ICR_PULSEDIV(n) ((uint32_t)((n&0x07)<<3))
2013-01-08 22:40:58 +08:00
/** UART IRDA bit mask */
2021-03-17 02:26:35 +08:00
#define UART_ICR_BITMASK ((uint32_t)(0x3F))
2013-01-08 22:40:58 +08:00
/*********************************************************************//**
* Macro defines for Macro defines for UART Fractional divider register
**********************************************************************/
/** Baud-rate generation pre-scaler divisor */
2021-03-17 02:26:35 +08:00
#define UART_FDR_DIVADDVAL(n) ((uint32_t)(n&0x0F))
2013-01-08 22:40:58 +08:00
/** Baud-rate pre-scaler multiplier value */
2021-03-17 02:26:35 +08:00
#define UART_FDR_MULVAL(n) ((uint32_t)((n<<4)&0xF0))
2013-01-08 22:40:58 +08:00
/** UART Fractional Divider register bit mask */
2021-03-17 02:26:35 +08:00
#define UART_FDR_BITMASK ((uint32_t)(0xFF))
2013-01-08 22:40:58 +08:00
/*********************************************************************//**
* Macro defines for Macro defines for UART Tx Enable register
**********************************************************************/
/** Transmit enable bit */
2021-03-17 02:26:35 +08:00
#define UART_TER_TXEN ((uint8_t)(1<<7))
2013-01-08 22:40:58 +08:00
/** UART Transmit Enable Register bit mask */
2021-03-17 02:26:35 +08:00
#define UART_TER_BITMASK ((uint8_t)(0x80))
2013-01-08 22:40:58 +08:00
/*********************************************************************//**
* Macro defines for Macro defines for UART1 RS485 Control register
**********************************************************************/
/** RS-485/EIA-485 Normal Multi-drop Mode (NMM) is disabled */
2021-03-17 02:26:35 +08:00
#define UART1_RS485CTRL_NMM_EN ((uint32_t)(1<<0))
2013-01-08 22:40:58 +08:00
/** The receiver is disabled */
2021-03-17 02:26:35 +08:00
#define UART1_RS485CTRL_RX_DIS ((uint32_t)(1<<1))
2013-01-08 22:40:58 +08:00
/** Auto Address Detect (AAD) is enabled */
2021-03-17 02:26:35 +08:00
#define UART1_RS485CTRL_AADEN ((uint32_t)(1<<2))
2013-01-08 22:40:58 +08:00
/** If direction control is enabled (bit DCTRL = 1), pin DTR is used for direction control */
2021-03-17 02:26:35 +08:00
#define UART1_RS485CTRL_SEL_DTR ((uint32_t)(1<<3))
2013-01-08 22:40:58 +08:00
/** Enable Auto Direction Control */
2021-03-17 02:26:35 +08:00
#define UART1_RS485CTRL_DCTRL_EN ((uint32_t)(1<<4))
/** This bit reverses the polarity of the direction control signal on the RTS (or DTR) pin.
2013-01-08 22:40:58 +08:00
The direction control pin will be driven to logic "1" when the transmitter has data to be sent */
2021-03-17 02:26:35 +08:00
#define UART1_RS485CTRL_OINV_1 ((uint32_t)(1<<5))
2013-01-08 22:40:58 +08:00
/** RS485 control bit-mask value */
2021-03-17 02:26:35 +08:00
#define UART1_RS485CTRL_BITMASK ((uint32_t)(0x3F))
2013-01-08 22:40:58 +08:00
/*********************************************************************//**
* Macro defines for Macro defines for UART1 RS-485 Address Match register
**********************************************************************/
2021-03-17 02:26:35 +08:00
#define UART1_RS485ADRMATCH_BITMASK ((uint8_t)(0xFF)) /**< Bit mask value */
2013-01-08 22:40:58 +08:00
/*********************************************************************//**
* Macro defines for Macro defines for UART1 RS-485 Delay value register
**********************************************************************/
/* Macro defines for UART1 RS-485 Delay value register */
2021-03-17 02:26:35 +08:00
#define UART1_RS485DLY_BITMASK ((uint8_t)(0xFF)) /** Bit mask value */
2013-01-08 22:40:58 +08:00
/*********************************************************************//**
* Macro defines for Macro defines for UART FIFO Level register
**********************************************************************/
/** Reflects the current level of the UART receiver FIFO */
2021-03-17 02:26:35 +08:00
#define UART_FIFOLVL_RXFIFOLVL(n) ((uint32_t)(n&0x0F))
2013-01-08 22:40:58 +08:00
/** Reflects the current level of the UART transmitter FIFO */
2021-03-17 02:26:35 +08:00
#define UART_FIFOLVL_TXFIFOLVL(n) ((uint32_t)((n>>8)&0x0F))
2013-01-08 22:40:58 +08:00
/** UART FIFO Level Register bit mask */
2021-03-17 02:26:35 +08:00
#define UART_FIFOLVL_BITMASK ((uint32_t)(0x0F0F))
2013-01-08 22:40:58 +08:00
/**
* @}
*/
/* Public Types --------------------------------------------------------------- */
/** @defgroup UART_Public_Types UART Public Types
* @{
*/
/**
* @brief UART Databit type definitions
*/
typedef enum {
2021-03-17 02:26:35 +08:00
UART_DATABIT_5 = 0, /*!< UART 5 bit data mode */
UART_DATABIT_6, /*!< UART 6 bit data mode */
UART_DATABIT_7, /*!< UART 7 bit data mode */
UART_DATABIT_8 /*!< UART 8 bit data mode */
2013-01-08 22:40:58 +08:00
} UART_DATABIT_Type;
/**
* @brief UART Stop bit type definitions
*/
typedef enum {
2021-03-17 02:26:35 +08:00
UART_STOPBIT_1 = (0), /*!< UART 1 Stop Bits Select */
UART_STOPBIT_2, /*!< UART Two Stop Bits Select */
2013-01-08 22:40:58 +08:00
} UART_STOPBIT_Type;
/**
* @brief UART Parity type definitions
*/
typedef enum {
2021-03-17 02:26:35 +08:00
UART_PARITY_NONE = 0, /*!< No parity */
UART_PARITY_ODD, /*!< Odd parity */
UART_PARITY_EVEN, /*!< Even parity */
UART_PARITY_SP_1, /*!< Forced "1" stick parity */
UART_PARITY_SP_0 /*!< Forced "0" stick parity */
2013-01-08 22:40:58 +08:00
} UART_PARITY_Type;
/**
* @brief FIFO Level type definitions
*/
typedef enum {
2021-03-17 02:26:35 +08:00
UART_FIFO_TRGLEV0 = 0, /*!< UART FIFO trigger level 0: 1 character */
UART_FIFO_TRGLEV1, /*!< UART FIFO trigger level 1: 4 character */
UART_FIFO_TRGLEV2, /*!< UART FIFO trigger level 2: 8 character */
UART_FIFO_TRGLEV3 /*!< UART FIFO trigger level 3: 14 character */
2013-01-08 22:40:58 +08:00
} UART_FITO_LEVEL_Type;
/********************************************************************//**
* @brief UART Interrupt Type definitions
**********************************************************************/
typedef enum {
2021-03-17 02:26:35 +08:00
UART_INTCFG_RBR = 0, /*!< RBR Interrupt enable*/
UART_INTCFG_THRE, /*!< THR Interrupt enable*/
UART_INTCFG_RLS, /*!< RX line status interrupt enable*/
UART1_INTCFG_MS, /*!< Modem status interrupt enable (UART1 only) */
UART1_INTCFG_CTS, /*!< CTS1 signal transition interrupt enable (UART1 only) */
UART_INTCFG_ABEO, /*!< Enables the end of auto-baud interrupt */
UART_INTCFG_ABTO /*!< Enables the auto-baud time-out interrupt */
2013-01-08 22:40:58 +08:00
} UART_INT_Type;
/**
* @brief UART Line Status Type definition
*/
typedef enum {
2021-03-17 02:26:35 +08:00
UART_LINESTAT_RDR = UART_LSR_RDR, /*!<Line status register: Receive data ready*/
UART_LINESTAT_OE = UART_LSR_OE, /*!<Line status register: Overrun error*/
UART_LINESTAT_PE = UART_LSR_PE, /*!<Line status register: Parity error*/
UART_LINESTAT_FE = UART_LSR_FE, /*!<Line status register: Framing error*/
UART_LINESTAT_BI = UART_LSR_BI, /*!<Line status register: Break interrupt*/
UART_LINESTAT_THRE = UART_LSR_THRE, /*!<Line status register: Transmit holding register empty*/
UART_LINESTAT_TEMT = UART_LSR_TEMT, /*!<Line status register: Transmitter empty*/
UART_LINESTAT_RXFE = UART_LSR_RXFE /*!<Error in RX FIFO*/
2013-01-08 22:40:58 +08:00
} UART_LS_Type;
/**
* @brief UART Auto-baudrate mode type definition
*/
typedef enum {
2021-03-17 02:26:35 +08:00
UART_AUTOBAUD_MODE0 = 0, /**< UART Auto baudrate Mode 0 */
UART_AUTOBAUD_MODE1, /**< UART Auto baudrate Mode 1 */
2013-01-08 22:40:58 +08:00
} UART_AB_MODE_Type;
/**
* @brief Auto Baudrate mode configuration type definition
*/
typedef struct {
2021-03-17 02:26:35 +08:00
UART_AB_MODE_Type ABMode; /**< Autobaudrate mode */
FunctionalState AutoRestart; /**< Auto Restart state */
2013-01-08 22:40:58 +08:00
} UART_AB_CFG_Type;
/**
* @brief UART End of Auto-baudrate type definition
*/
typedef enum {
2021-03-17 02:26:35 +08:00
UART_AUTOBAUD_INTSTAT_ABEO = UART_IIR_ABEO_INT, /**< UART End of auto-baud interrupt */
UART_AUTOBAUD_INTSTAT_ABTO = UART_IIR_ABTO_INT /**< UART Auto-baud time-out interrupt */
2013-01-08 22:40:58 +08:00
}UART_ABEO_Type;
/**
* UART IrDA Control type Definition
*/
2021-03-17 02:26:35 +08:00
typedef enum
2013-01-08 22:40:58 +08:00
{
2021-03-17 02:26:35 +08:00
/** Pulse width = 2 * Tpclk
- Configures the pulse when FixPulseEn = 1 */
UART_IrDA_PULSEDIV2 = 0,
2013-01-08 22:40:58 +08:00
2021-03-17 02:26:35 +08:00
/** Pulse width = 4 * Tpclk
- Configures the pulse when FixPulseEn = 1 */
UART_IrDA_PULSEDIV4,
2013-01-08 22:40:58 +08:00
2021-03-17 02:26:35 +08:00
/** Pulse width = 8 * Tpclk
- Configures the pulse when FixPulseEn = 1 */
UART_IrDA_PULSEDIV8,
2013-01-08 22:40:58 +08:00
2021-03-17 02:26:35 +08:00
/** Pulse width = 16 * Tpclk
- Configures the pulse when FixPulseEn = 1 */
UART_IrDA_PULSEDIV16,
2013-01-08 22:40:58 +08:00
2021-03-17 02:26:35 +08:00
/** Pulse width = 32 * Tpclk
- Configures the pulse when FixPulseEn = 1 */
UART_IrDA_PULSEDIV32,
2013-01-08 22:40:58 +08:00
2021-03-17 02:26:35 +08:00
/**< Pulse width = 64 * Tpclk
- Configures the pulse when FixPulseEn = 1 */
UART_IrDA_PULSEDIV64,
2013-01-08 22:40:58 +08:00
2021-03-17 02:26:35 +08:00
/**< Pulse width = 128 * Tpclk
- Configures the pulse when FixPulseEn = 1 */
UART_IrDA_PULSEDIV128,
2013-01-08 22:40:58 +08:00
2021-03-17 02:26:35 +08:00
/**< Pulse width = 256 * Tpclk
- Configures the pulse when FixPulseEn = 1 */
UART_IrDA_PULSEDIV256
2013-01-08 22:40:58 +08:00
} UART_IrDA_PULSE_Type;
/********************************************************************//**
* @brief UART1 Full modem - Signal states definition
**********************************************************************/
typedef enum {
2021-03-17 02:26:35 +08:00
INACTIVE = 0, /* In-active state */
ACTIVE = !INACTIVE /* Active state */
2013-01-08 22:40:58 +08:00
}UART1_SignalState;
/**
* @brief UART modem status type definition
*/
typedef enum {
2021-03-17 02:26:35 +08:00
UART1_MODEM_STAT_DELTA_CTS = UART1_MSR_DELTA_CTS, /*!< Set upon state change of input CTS */
UART1_MODEM_STAT_DELTA_DSR = UART1_MSR_DELTA_DSR, /*!< Set upon state change of input DSR */
UART1_MODEM_STAT_LO2HI_RI = UART1_MSR_LO2HI_RI, /*!< Set upon low to high transition of input RI */
UART1_MODEM_STAT_DELTA_DCD = UART1_MSR_DELTA_DCD, /*!< Set upon state change of input DCD */
UART1_MODEM_STAT_CTS = UART1_MSR_CTS, /*!< Clear To Send State */
UART1_MODEM_STAT_DSR = UART1_MSR_DSR, /*!< Data Set Ready State */
UART1_MODEM_STAT_RI = UART1_MSR_RI, /*!< Ring Indicator State */
UART1_MODEM_STAT_DCD = UART1_MSR_DCD /*!< Data Carrier Detect State */
2013-01-08 22:40:58 +08:00
} UART_MODEM_STAT_type;
/**
* @brief Modem output pin type definition
*/
typedef enum {
2021-03-17 02:26:35 +08:00
UART1_MODEM_PIN_DTR = 0, /*!< Source for modem output pin DTR */
UART1_MODEM_PIN_RTS /*!< Source for modem output pin RTS */
2013-01-08 22:40:58 +08:00
} UART_MODEM_PIN_Type;
/**
* @brief UART Modem mode type definition
*/
typedef enum {
2021-03-17 02:26:35 +08:00
UART1_MODEM_MODE_LOOPBACK = 0, /*!< Loop back mode select */
UART1_MODEM_MODE_AUTO_RTS, /*!< Enable Auto RTS flow-control */
UART1_MODEM_MODE_AUTO_CTS /*!< Enable Auto CTS flow-control */
2013-01-08 22:40:58 +08:00
} UART_MODEM_MODE_Type;
/**
* @brief UART Direction Control Pin type definition
*/
typedef enum {
2021-03-17 02:26:35 +08:00
UART1_RS485_DIRCTRL_RTS = 0, /**< Pin RTS is used for direction control */
UART1_RS485_DIRCTRL_DTR /**< Pin DTR is used for direction control */
2013-01-08 22:40:58 +08:00
} UART_RS485_DIRCTRL_PIN_Type;
/********************************************************************//**
* @brief UART Configuration Structure definition
**********************************************************************/
typedef struct {
2021-03-17 02:26:35 +08:00
uint32_t Baud_rate; /**< UART baud rate */
UART_PARITY_Type Parity; /**< Parity selection, should be:
- UART_PARITY_NONE: No parity
- UART_PARITY_ODD: Odd parity
- UART_PARITY_EVEN: Even parity
- UART_PARITY_SP_1: Forced "1" stick parity
- UART_PARITY_SP_0: Forced "0" stick parity
*/
2013-01-08 22:40:58 +08:00
UART_DATABIT_Type Databits; /**< Number of data bits, should be:
2021-03-17 02:26:35 +08:00
- UART_DATABIT_5: UART 5 bit data mode
- UART_DATABIT_6: UART 6 bit data mode
- UART_DATABIT_7: UART 7 bit data mode
- UART_DATABIT_8: UART 8 bit data mode
*/
2013-01-08 22:40:58 +08:00
UART_STOPBIT_Type Stopbits; /**< Number of stop bits, should be:
2021-03-17 02:26:35 +08:00
- UART_STOPBIT_1: UART 1 Stop Bits Select
- UART_STOPBIT_2: UART 2 Stop Bits Select
*/
2013-01-08 22:40:58 +08:00
} UART_CFG_Type;
/********************************************************************//**
* @brief UART FIFO Configuration Structure definition
**********************************************************************/
typedef struct {
2021-03-17 02:26:35 +08:00
FunctionalState FIFO_ResetRxBuf; /**< Reset Rx FIFO command state , should be:
- ENABLE: Reset Rx FIFO in UART
- DISABLE: Do not reset Rx FIFO in UART
*/
FunctionalState FIFO_ResetTxBuf; /**< Reset Tx FIFO command state , should be:
- ENABLE: Reset Tx FIFO in UART
- DISABLE: Do not reset Tx FIFO in UART
*/
FunctionalState FIFO_DMAMode; /**< DMA mode, should be:
- ENABLE: Enable DMA mode in UART
- DISABLE: Disable DMA mode in UART
*/
UART_FITO_LEVEL_Type FIFO_Level; /**< Rx FIFO trigger level, should be:
- UART_FIFO_TRGLEV0: UART FIFO trigger level 0: 1 character
- UART_FIFO_TRGLEV1: UART FIFO trigger level 1: 4 character
- UART_FIFO_TRGLEV2: UART FIFO trigger level 2: 8 character
- UART_FIFO_TRGLEV3: UART FIFO trigger level 3: 14 character
*/
2013-01-08 22:40:58 +08:00
} UART_FIFO_CFG_Type;
/********************************************************************//**
* @brief UART1 Full modem - RS485 Control configuration type
**********************************************************************/
typedef struct {
2021-03-17 02:26:35 +08:00
FunctionalState NormalMultiDropMode_State; /*!< Normal MultiDrop mode State:
- ENABLE: Enable this function.
- DISABLE: Disable this function. */
FunctionalState Rx_State; /*!< Receiver State:
- ENABLE: Enable Receiver.
- DISABLE: Disable Receiver. */
FunctionalState AutoAddrDetect_State; /*!< Auto Address Detect mode state:
- ENABLE: ENABLE this function.
- DISABLE: Disable this function. */
FunctionalState AutoDirCtrl_State; /*!< Auto Direction Control State:
- ENABLE: Enable this function.
- DISABLE: Disable this function. */
UART_RS485_DIRCTRL_PIN_Type DirCtrlPin; /*!< If direction control is enabled, state:
- UART1_RS485_DIRCTRL_RTS:
pin RTS is used for direction control.
- UART1_RS485_DIRCTRL_DTR:
pin DTR is used for direction control. */
SetState DirCtrlPol_Level; /*!< Polarity of the direction control signal on
the RTS (or DTR) pin:
- RESET: The direction control pin will be driven
to logic "0" when the transmitter has data to be sent.
- SET: The direction control pin will be driven
to logic "1" when the transmitter has data to be sent. */
uint8_t MatchAddrValue; /*!< address match value for RS-485/EIA-485 mode, 8-bit long */
uint8_t DelayValue; /*!< delay time is in periods of the baud clock, 8-bit long */
2013-01-08 22:40:58 +08:00
} UART1_RS485_CTRLCFG_Type;
/**
* @}
*/
/* Public Functions ----------------------------------------------------------- */
/** @defgroup UART_Public_Functions UART Public Functions
* @{
*/
/* UART Init/DeInit functions --------------------------------------------------*/
void UART_Init(LPC_UART_TypeDef *UARTx, UART_CFG_Type *UART_ConfigStruct);
void UART_DeInit(LPC_UART_TypeDef* UARTx);
void UART_ConfigStructInit(UART_CFG_Type *UART_InitStruct);
/* UART Send/Receive functions -------------------------------------------------*/
void UART_SendByte(LPC_UART_TypeDef* UARTx, uint8_t Data);
uint8_t UART_ReceiveByte(LPC_UART_TypeDef* UARTx);
uint32_t UART_Send(LPC_UART_TypeDef *UARTx, uint8_t *txbuf,
2021-03-17 02:26:35 +08:00
uint32_t buflen, TRANSFER_BLOCK_Type flag);
2013-01-08 22:40:58 +08:00
uint32_t UART_Receive(LPC_UART_TypeDef *UARTx, uint8_t *rxbuf, \
2021-03-17 02:26:35 +08:00
uint32_t buflen, TRANSFER_BLOCK_Type flag);
2013-01-08 22:40:58 +08:00
/* UART FIFO functions ----------------------------------------------------------*/
void UART_FIFOConfig(LPC_UART_TypeDef *UARTx, UART_FIFO_CFG_Type *FIFOCfg);
void UART_FIFOConfigStructInit(UART_FIFO_CFG_Type *UART_FIFOInitStruct);
/* UART get information functions -----------------------------------------------*/
uint32_t UART_GetIntId(LPC_UART_TypeDef* UARTx);
uint8_t UART_GetLineStatus(LPC_UART_TypeDef* UARTx);
/* UART operate functions -------------------------------------------------------*/
void UART_IntConfig(LPC_UART_TypeDef *UARTx, UART_INT_Type UARTIntCfg, \
2021-03-17 02:26:35 +08:00
FunctionalState NewState);
2013-01-08 22:40:58 +08:00
void UART_TxCmd(LPC_UART_TypeDef *UARTx, FunctionalState NewState);
FlagStatus UART_CheckBusy(LPC_UART_TypeDef *UARTx);
void UART_ForceBreak(LPC_UART_TypeDef* UARTx);
/* UART Auto-baud functions -----------------------------------------------------*/
void UART_ABClearIntPending(LPC_UART_TypeDef *UARTx, UART_ABEO_Type ABIntType);
void UART_ABCmd(LPC_UART_TypeDef *UARTx, UART_AB_CFG_Type *ABConfigStruct, \
2021-03-17 02:26:35 +08:00
FunctionalState NewState);
2013-01-08 22:40:58 +08:00
/* UART1 FullModem functions ----------------------------------------------------*/
void UART_FullModemForcePinState(LPC_UART1_TypeDef *UARTx, UART_MODEM_PIN_Type Pin, \
2021-03-17 02:26:35 +08:00
UART1_SignalState NewState);
2013-01-08 22:40:58 +08:00
void UART_FullModemConfigMode(LPC_UART1_TypeDef *UARTx, UART_MODEM_MODE_Type Mode, \
2021-03-17 02:26:35 +08:00
FunctionalState NewState);
2013-01-08 22:40:58 +08:00
uint8_t UART_FullModemGetStatus(LPC_UART1_TypeDef *UARTx);
/* UART RS485 functions ----------------------------------------------------------*/
void UART_RS485Config(LPC_UART_TypeDef *UARTx,
2021-03-17 02:26:35 +08:00
UART1_RS485_CTRLCFG_Type *RS485ConfigStruct);
2013-01-08 22:40:58 +08:00
void UART_RS485ReceiverCmd(LPC_UART_TypeDef *UARTx, FunctionalState NewState);
void UART_RS485SendSlvAddr(LPC_UART_TypeDef *UARTx, uint8_t SlvAddr);
uint32_t UART_RS485SendData(LPC_UART_TypeDef *UARTx, uint8_t *pData, uint32_t size);
/* UART IrDA functions-------------------------------------------------------------*/
void UART_IrDAInvtInputCmd(LPC_UART_TypeDef* UARTx, FunctionalState NewState);
void UART_IrDACmd(LPC_UART_TypeDef* UARTx, FunctionalState NewState);
void UART_IrDAPulseDivConfig(LPC_UART_TypeDef *UARTx, UART_IrDA_PULSE_Type PulseDiv);
/**
* @}
*/
#ifdef __cplusplus
}
#endif
#endif /* __LPC177X_8X_UART_H_ */
/**
* @}
*/
/* --------------------------------- End Of File ------------------------------ */