Macros | Functions
Uart_api

Macros

#define UART_CLK_DIVIDER   8
 

Functions

void UARTParityModeSet (uint32_t ui32Base, uint32_t ui32Parity)
 
uint32_t UARTParityModeGet (uint32_t ui32Base)
 
void UARTFIFOLevelSet (uint32_t ui32Base, uint32_t ui32TxLevel, uint32_t ui32RxLevel)
 
void UARTFIFOLevelGet (uint32_t ui32Base, uint32_t *pui32TxLevel, uint32_t *pui32RxLevel)
 
void UARTConfigSetExpClk (uint32_t ui32Base, uint32_t ui32UARTClk, uint32_t ui32Baud, uint32_t ui32Config)
 
void UARTConfigGetExpClk (uint32_t ui32Base, uint32_t ui32UARTClk, uint32_t *pui32Baud, uint32_t *pui32Config)
 
void UARTEnable (uint32_t ui32Base)
 
void UARTDisable (uint32_t ui32Base)
 
void UARTFIFOEnable (uint32_t ui32Base)
 
void UARTFIFODisable (uint32_t ui32Base)
 
void UARTEnableSIR (uint32_t ui32Base, bool bLowPower)
 
void UARTDisableSIR (uint32_t ui32Base)
 
void UARTSmartCardEnable (uint32_t ui32Base)
 
void UARTSmartCardDisable (uint32_t ui32Base)
 
void UARTModemControlSet (uint32_t ui32Base, uint32_t ui32Control)
 
void UARTModemControlClear (uint32_t ui32Base, uint32_t ui32Control)
 
uint32_t UARTModemControlGet (uint32_t ui32Base)
 
uint32_t UARTModemStatusGet (uint32_t ui32Base)
 
void UARTFlowControlSet (uint32_t ui32Base, uint32_t ui32Mode)
 
uint32_t UARTFlowControlGet (uint32_t ui32Base)
 
void UARTTxIntModeSet (uint32_t ui32Base, uint32_t ui32Mode)
 
uint32_t UARTTxIntModeGet (uint32_t ui32Base)
 
bool UARTCharsAvail (uint32_t ui32Base)
 
bool UARTSpaceAvail (uint32_t ui32Base)
 
int32_t UARTCharGetNonBlocking (uint32_t ui32Base)
 
int32_t UARTCharGet (uint32_t ui32Base)
 
bool UARTCharPutNonBlocking (uint32_t ui32Base, unsigned char ucData)
 
void UARTCharPut (uint32_t ui32Base, unsigned char ucData)
 
void UARTBreakCtl (uint32_t ui32Base, bool bBreakState)
 
bool UARTBusy (uint32_t ui32Base)
 
void UARTIntRegister (uint32_t ui32Base, void(*pfnHandler)(void))
 
void UARTIntUnregister (uint32_t ui32Base)
 
void UARTIntEnable (uint32_t ui32Base, uint32_t ui32IntFlags)
 
void UARTIntDisable (uint32_t ui32Base, uint32_t ui32IntFlags)
 
uint32_t UARTIntStatus (uint32_t ui32Base, bool bMasked)
 
void UARTIntClear (uint32_t ui32Base, uint32_t ui32IntFlags)
 
void UARTDMAEnable (uint32_t ui32Base, uint32_t ui32DMAFlags)
 
void UARTDMADisable (uint32_t ui32Base, uint32_t ui32DMAFlags)
 
uint32_t UARTRxErrorGet (uint32_t ui32Base)
 
void UARTRxErrorClear (uint32_t ui32Base)
 
void UARTClockSourceSet (uint32_t ui32Base, uint32_t ui32Source)
 
uint32_t UARTClockSourceGet (uint32_t ui32Base)
 
void UART9BitEnable (uint32_t ui32Base)
 
void UART9BitDisable (uint32_t ui32Base)
 
void UART9BitAddrSet (uint32_t ui32Base, uint8_t ui8Addr, uint8_t ui8Mask)
 
void UART9BitAddrSend (uint32_t ui32Base, uint8_t ui8Addr)
 
void UARTLoopbackEnable (uint32_t ui32Base)
 

Detailed Description

Macro Definition Documentation

§ UART_CLK_DIVIDER

#define UART_CLK_DIVIDER   8

Referenced by UARTConfigSetExpClk().

Function Documentation

§ UARTParityModeSet()

void UARTParityModeSet ( uint32_t  ui32Base,
uint32_t  ui32Parity 
)

Sets the type of parity.

Parameters
ui32Baseis the base address of the UART port.
ui32Parityspecifies the type of parity to use.

This function configures the type of parity to use for transmitting and expect when receiving. The ui32Parity parameter must be one of UART_CONFIG_PAR_NONE, UART_CONFIG_PAR_EVEN, UART_CONFIG_PAR_ODD, UART_CONFIG_PAR_ONE, or UART_CONFIG_PAR_ZERO. The last two parameters allow direct control of the parity bit; it is always either one or zero based on the mode.

Returns
None.

References ASSERT, HWREG, UART_CONFIG_PAR_EVEN, UART_CONFIG_PAR_NONE, UART_CONFIG_PAR_ODD, UART_CONFIG_PAR_ONE, UART_CONFIG_PAR_ZERO, UART_LCRH_EPS, UART_LCRH_PEN, UART_LCRH_SPS, and UART_O_LCRH.

§ UARTParityModeGet()

uint32_t UARTParityModeGet ( uint32_t  ui32Base)

Gets the type of parity currently being used.

Parameters
ui32Baseis the base address of the UART port.

This function gets the type of parity used for transmitting data and expected when receiving data.

Returns
Returns the current parity settings, specified as one of UART_CONFIG_PAR_NONE, UART_CONFIG_PAR_EVEN, UART_CONFIG_PAR_ODD, UART_CONFIG_PAR_ONE, or UART_CONFIG_PAR_ZERO.

References ASSERT, HWREG, UART_LCRH_EPS, UART_LCRH_PEN, UART_LCRH_SPS, and UART_O_LCRH.

§ UARTFIFOLevelSet()

void UARTFIFOLevelSet ( uint32_t  ui32Base,
uint32_t  ui32TxLevel,
uint32_t  ui32RxLevel 
)

Sets the FIFO level at which interrupts are generated.

Parameters
ui32Baseis the base address of the UART port.
ui32TxLevelis the transmit FIFO interrupt level, specified as one of UART_FIFO_TX1_8, UART_FIFO_TX2_8, UART_FIFO_TX4_8, UART_FIFO_TX6_8, or UART_FIFO_TX7_8.
ui32RxLevelis the receive FIFO interrupt level, specified as one of UART_FIFO_RX1_8, UART_FIFO_RX2_8, UART_FIFO_RX4_8, UART_FIFO_RX6_8, or UART_FIFO_RX7_8.

This function configures the FIFO level at which transmit and receive interrupts are generated.

Returns
None.

References ASSERT, HWREG, UART_FIFO_RX1_8, UART_FIFO_RX2_8, UART_FIFO_RX4_8, UART_FIFO_RX6_8, UART_FIFO_RX7_8, UART_FIFO_TX1_8, UART_FIFO_TX2_8, UART_FIFO_TX4_8, UART_FIFO_TX6_8, UART_FIFO_TX7_8, and UART_O_IFLS.

§ UARTFIFOLevelGet()

void UARTFIFOLevelGet ( uint32_t  ui32Base,
uint32_t *  pui32TxLevel,
uint32_t *  pui32RxLevel 
)

Gets the FIFO level at which interrupts are generated.

Parameters
ui32Baseis the base address of the UART port.
pui32TxLevelis a pointer to storage for the transmit FIFO level, returned as one of UART_FIFO_TX1_8, UART_FIFO_TX2_8, UART_FIFO_TX4_8, UART_FIFO_TX6_8, or UART_FIFO_TX7_8.
pui32RxLevelis a pointer to storage for the receive FIFO level, returned as one of UART_FIFO_RX1_8, UART_FIFO_RX2_8, UART_FIFO_RX4_8, UART_FIFO_RX6_8, or UART_FIFO_RX7_8.

This function gets the FIFO level at which transmit and receive interrupts are generated.

Returns
None.

References ASSERT, HWREG, UART_IFLS_RX_M, UART_IFLS_TX_M, and UART_O_IFLS.

§ UARTConfigSetExpClk()

void UARTConfigSetExpClk ( uint32_t  ui32Base,
uint32_t  ui32UARTClk,
uint32_t  ui32Baud,
uint32_t  ui32Config 
)

Sets the configuration of a UART.

Parameters
ui32Baseis the base address of the UART port.
ui32UARTClkis the rate of the clock supplied to the UART module.
ui32Baudis the desired baud rate.
ui32Configis the data format for the port (number of data bits, number of stop bits, and parity).

This function configures the UART for operation in the specified data format. The baud rate is provided in the ui32Baud parameter and the data format in the ui32Config parameter.

The ui32Config parameter is the logical OR of three values: the number of data bits, the number of stop bits, and the parity. UART_CONFIG_WLEN_8, UART_CONFIG_WLEN_7, UART_CONFIG_WLEN_6, and UART_CONFIG_WLEN_5 select from eight to five data bits per byte (respectively). UART_CONFIG_STOP_ONE and UART_CONFIG_STOP_TWO select one or two stop bits (respectively). UART_CONFIG_PAR_NONE, UART_CONFIG_PAR_EVEN, UART_CONFIG_PAR_ODD, UART_CONFIG_PAR_ONE, and UART_CONFIG_PAR_ZERO select the parity mode (no parity bit, even parity bit, odd parity bit, parity bit always one, and parity bit always zero, respectively).

The peripheral clock is the same as the processor clock. The frequency of the system clock is the value returned by SysCtlClockFreqSet(), or it can be explicitly hard coded if it is constant and known (to save the code/execution overhead of fetch of the variable call holding the return value of SysCtlClockFreqSet()).

The function disables the UART by calling UARTDisable() before changing the the parameters and enables the UART by calling UARTEnable().

If changing the UART baud clock source (via UARTClockSourceSet()), the peripheral clock can be changed to PIOSC. In this case, the peripheral clock should be specified as 16,000,000 (the nominal rate of PIOSC).

Returns
None.

References ASSERT, HWREG, UART_CLK_DIVIDER, UART_CTL_HSE, UART_O_CTL, UART_O_FBRD, UART_O_FR, UART_O_IBRD, UART_O_LCRH, UARTDisable(), and UARTEnable().

§ UARTConfigGetExpClk()

void UARTConfigGetExpClk ( uint32_t  ui32Base,
uint32_t  ui32UARTClk,
uint32_t *  pui32Baud,
uint32_t *  pui32Config 
)

Gets the current configuration of a UART.

Parameters
ui32Baseis the base address of the UART port.
ui32UARTClkis the rate of the clock supplied to the UART module.
pui32Baudis a pointer to storage for the baud rate.
pui32Configis a pointer to storage for the data format.

This function determines the baud rate and data format for the UART, given an explicitly provided peripheral clock (hence the ExpClk suffix). The returned baud rate is the actual baud rate; it may not be the exact baud rate requested or an ``official'' baud rate. The data format returned in pui32Config is enumerated the same as the ui32Config parameter of UARTConfigSetExpClk().

The peripheral clock is the same as the processor clock. The frequency of the system clock is the value returned by SysCtlClockFreqSet(), or it can be explicitly hard coded if it is constant and known (to save the code/execution overhead of fetch of the variable call holding the return value of SysCtlClockFreqSet()).

If changing the UART baud clock source (via UARTClockSourceSet()), the peripheral clock can be changed to PIOSC. In this case, the peripheral clock should be specified as 16,000,000 (the nominal rate of PIOSC).

Returns
None.

References ASSERT, HWREG, UART_CTL_HSE, UART_LCRH_EPS, UART_LCRH_PEN, UART_LCRH_SPS, UART_LCRH_STP2, UART_LCRH_WLEN_M, UART_O_CTL, UART_O_FBRD, UART_O_IBRD, and UART_O_LCRH.

§ UARTEnable()

void UARTEnable ( uint32_t  ui32Base)

Enables transmitting and receiving.

Parameters
ui32Baseis the base address of the UART port.

This function enables the UART and its transmit and receive FIFOs.

Returns
None.

References ASSERT, HWREG, UART_CTL_RXE, UART_CTL_TXE, UART_CTL_UARTEN, UART_LCRH_FEN, UART_O_CTL, and UART_O_LCRH.

Referenced by UARTConfigSetExpClk().

§ UARTDisable()

void UARTDisable ( uint32_t  ui32Base)

Disables transmitting and receiving.

Parameters
ui32Baseis the base address of the UART port.

This function disables the UART, waits for the end of transmission of the current character, and flushes the transmit FIFO.

Returns
None.

References ASSERT, HWREG, UART_CTL_RXE, UART_CTL_TXE, UART_CTL_UARTEN, UART_FR_BUSY, UART_LCRH_FEN, UART_O_CTL, UART_O_FR, and UART_O_LCRH.

Referenced by UARTConfigSetExpClk().

§ UARTFIFOEnable()

void UARTFIFOEnable ( uint32_t  ui32Base)

Enables the transmit and receive FIFOs.

Parameters
ui32Baseis the base address of the UART port.

This functions enables the transmit and receive FIFOs in the UART.

Returns
None.

References ASSERT, HWREG, UART_LCRH_FEN, and UART_O_LCRH.

§ UARTFIFODisable()

void UARTFIFODisable ( uint32_t  ui32Base)

Disables the transmit and receive FIFOs.

Parameters
ui32Baseis the base address of the UART port.

This function disables the transmit and receive FIFOs in the UART.

Returns
None.

References ASSERT, HWREG, UART_LCRH_FEN, and UART_O_LCRH.

§ UARTEnableSIR()

void UARTEnableSIR ( uint32_t  ui32Base,
bool  bLowPower 
)

Enables SIR (IrDA) mode on the specified UART.

Parameters
ui32Baseis the base address of the UART port.
bLowPowerindicates if SIR Low Power Mode is to be used.

This function enables SIR (IrDA) mode on the UART. If the bLowPower flag is set, then SIR low power mode will be selected as well. This function only has an effect if the UART has not been enabled by a call to UARTEnable(). The call UARTEnableSIR() must be made before a call to UARTConfigSetExpClk() because the UARTConfigSetExpClk() function calls the UARTEnable() function. Another option is to call UARTDisable() followed by UARTEnableSIR() and then enable the UART by calling UARTEnable().

Returns
None.

References ASSERT, HWREG, UART_CTL_SIREN, UART_CTL_SIRLP, and UART_O_CTL.

§ UARTDisableSIR()

void UARTDisableSIR ( uint32_t  ui32Base)

Disables SIR (IrDA) mode on the specified UART.

Parameters
ui32Baseis the base address of the UART port.

This function disables SIR(IrDA) mode on the UART. This function only has an effect if the UART has not been enabled by a call to UARTEnable(). The call UARTEnableSIR() must be made before a call to UARTConfigSetExpClk() because the UARTConfigSetExpClk() function calls the UARTEnable() function. Another option is to call UARTDisable() followed by UARTEnableSIR() and then enable the UART by calling UARTEnable().

Returns
None.

References ASSERT, HWREG, UART_CTL_SIREN, UART_CTL_SIRLP, and UART_O_CTL.

§ UARTSmartCardEnable()

void UARTSmartCardEnable ( uint32_t  ui32Base)

Enables ISO7816 smart card mode on the specified UART.

Parameters
ui32Baseis the base address of the UART port.

This function enables the SMART control bit for the ISO7816 smart card mode on the UART. This call also sets 8-bit word length and even parity as required by ISO7816.

Returns
None.

References ASSERT, HWREG, UART_CTL_SMART, UART_LCRH_EPS, UART_LCRH_PEN, UART_LCRH_SPS, UART_LCRH_STP2, UART_LCRH_WLEN_8, UART_LCRH_WLEN_M, UART_O_CTL, and UART_O_LCRH.

§ UARTSmartCardDisable()

void UARTSmartCardDisable ( uint32_t  ui32Base)

Disables ISO7816 smart card mode on the specified UART.

Parameters
ui32Baseis the base address of the UART port.

This function clears the SMART (ISO7816 smart card) bit in the UART control register.

Returns
None.

References ASSERT, HWREG, UART_CTL_SMART, and UART_O_CTL.

§ UARTModemControlSet()

void UARTModemControlSet ( uint32_t  ui32Base,
uint32_t  ui32Control 
)

Sets the states of the DTR and/or RTS modem control signals.

Parameters
ui32Baseis the base address of the UART port.
ui32Controlis a bit-mapped flag indicating which modem control bits should be set.

This function configures the states of the DTR or RTS modem handshake outputs from the UART.

The ui32Control parameter is the logical OR of any of the following:

  • UART_OUTPUT_DTR - The modem control DTR signal
  • UART_OUTPUT_RTS - The modem control RTS signal
Returns
None.

References ASSERT, HWREG, UART_O_CTL, UART_OUTPUT_DTR, and UART_OUTPUT_RTS.

§ UARTModemControlClear()

void UARTModemControlClear ( uint32_t  ui32Base,
uint32_t  ui32Control 
)

Clears the states of the DTR and/or RTS modem control signals.

Parameters
ui32Baseis the base address of the UART port.
ui32Controlis a bit-mapped flag indicating which modem control bits should be set.

This function clears the states of the DTR or RTS modem handshake outputs from the UART.

The ui32Control parameter is the logical OR of any of the following:

  • UART_OUTPUT_DTR - The modem control DTR signal
  • UART_OUTPUT_RTS - The modem control RTS signal
Returns
None.

References ASSERT, HWREG, UART_O_CTL, UART_OUTPUT_DTR, and UART_OUTPUT_RTS.

§ UARTModemControlGet()

uint32_t UARTModemControlGet ( uint32_t  ui32Base)

Gets the states of the DTR and RTS modem control signals.

Parameters
ui32Baseis the base address of the UART port.

This function returns the current states of each of the two UART modem control signals, DTR and RTS.

Returns
Returns the states of the handshake output signals. This value is a logical OR combination of values UART_OUTPUT_RTS and UART_OUTPUT_DTR where the presence of each flag indicates that the associated signal is asserted.

References ASSERT, HWREG, UART_O_CTL, UART_OUTPUT_DTR, and UART_OUTPUT_RTS.

§ UARTModemStatusGet()

uint32_t UARTModemStatusGet ( uint32_t  ui32Base)

Gets the states of the RI, DCD, DSR and CTS modem status signals.

Parameters
ui32Baseis the base address of the UART port.

This function returns the current states of each of the four UART modem status signals, RI, DCD, DSR and CTS.

Returns
Returns the states of the handshake output signals. This value is a logical OR combination of values UART_INPUT_RI, UART_INPUT_DCD, UART_INPUT_CTS and UART_INPUT_DSR where the presence of each flag indicates that the associated signal is asserted.

References ASSERT, HWREG, UART_INPUT_CTS, UART_INPUT_DCD, UART_INPUT_DSR, UART_INPUT_RI, and UART_O_FR.

§ UARTFlowControlSet()

void UARTFlowControlSet ( uint32_t  ui32Base,
uint32_t  ui32Mode 
)

Sets the UART hardware flow control mode to be used.

Parameters
ui32Baseis the base address of the UART port.
ui32Modeindicates the flow control modes to be used. This parameter is a logical OR combination of values UART_FLOWCONTROL_TX and UART_FLOWCONTROL_RX to enable hardware transmit (CTS) and receive (RTS) flow control or UART_FLOWCONTROL_NONE to disable hardware flow control.

This function configures the required hardware flow control modes. If ui32Mode contains flag UART_FLOWCONTROL_TX, data is only transmitted if the incoming CTS signal is asserted. If ui32Mode contains flag UART_FLOWCONTROL_RX, the RTS output is controlled by the hardware and is asserted only when there is space available in the receive FIFO. If no hardware flow control is required, UART_FLOWCONTROL_NONE should be passed.

Returns
None.

References ASSERT, HWREG, UART_FLOWCONTROL_RX, UART_FLOWCONTROL_TX, and UART_O_CTL.

§ UARTFlowControlGet()

uint32_t UARTFlowControlGet ( uint32_t  ui32Base)

Returns the UART hardware flow control mode currently in use.

Parameters
ui32Baseis the base address of the UART port.

This function returns the current hardware flow control mode.

Returns
Returns the current flow control mode in use. This value is a logical OR combination of values UART_FLOWCONTROL_TX if transmit (CTS) flow control is enabled and UART_FLOWCONTROL_RX if receive (RTS) flow control is in use. If hardware flow control is disabled, UART_FLOWCONTROL_NONE is returned.

References ASSERT, HWREG, UART_FLOWCONTROL_RX, UART_FLOWCONTROL_TX, and UART_O_CTL.

§ UARTTxIntModeSet()

void UARTTxIntModeSet ( uint32_t  ui32Base,
uint32_t  ui32Mode 
)

Sets the operating mode for the UART transmit interrupt.

Parameters
ui32Baseis the base address of the UART port.
ui32Modeis the operating mode for the transmit interrupt. It may be UART_TXINT_MODE_EOT to trigger interrupts when the transmitter is idle or UART_TXINT_MODE_FIFO to trigger based on the current transmit FIFO level.

This function allows the mode of the UART transmit interrupt to be set. By default, the transmit interrupt is asserted when the FIFO level falls past a threshold set via a call to UARTFIFOLevelSet(). Alternatively, if this function is called with ui32Mode set to UART_TXINT_MODE_EOT, the transmit interrupt is asserted once the transmitter is completely idle - the transmit FIFO is empty and all bits, including any stop bits, have cleared the transmitter.

Returns
None.

References ASSERT, HWREG, UART_O_CTL, UART_TXINT_MODE_EOT, and UART_TXINT_MODE_FIFO.

§ UARTTxIntModeGet()

uint32_t UARTTxIntModeGet ( uint32_t  ui32Base)

Returns the current operating mode for the UART transmit interrupt.

Parameters
ui32Baseis the base address of the UART port.

This function returns the current operating mode for the UART transmit interrupt. The return value is UART_TXINT_MODE_EOT if the transmit interrupt is currently configured to be asserted once the transmitter is completely idle - the transmit FIFO is empty and all bits, including any stop bits, have cleared the transmitter. The return value is UART_TXINT_MODE_FIFO if the interrupt is configured to be asserted based on the level of the transmit FIFO.

Returns
Returns UART_TXINT_MODE_FIFO or UART_TXINT_MODE_EOT.

References ASSERT, HWREG, UART_O_CTL, UART_TXINT_MODE_EOT, and UART_TXINT_MODE_FIFO.

§ UARTCharsAvail()

bool UARTCharsAvail ( uint32_t  ui32Base)

Determines if there are any characters in the receive FIFO.

Parameters
ui32Baseis the base address of the UART port.

This function returns a flag indicating whether or not there is data available in the receive FIFO.

Returns
Returns true if there is data in the receive FIFO or false if there is no data in the receive FIFO.

References ASSERT, HWREG, UART_FR_RXFE, and UART_O_FR.

§ UARTSpaceAvail()

bool UARTSpaceAvail ( uint32_t  ui32Base)

Determines if there is any space in the transmit FIFO.

Parameters
ui32Baseis the base address of the UART port.

This function returns a flag indicating whether or not there is space available in the transmit FIFO.

Returns
Returns true if there is space available in the transmit FIFO or false if there is no space available in the transmit FIFO.

References ASSERT, HWREG, UART_FR_TXFF, and UART_O_FR.

§ UARTCharGetNonBlocking()

int32_t UARTCharGetNonBlocking ( uint32_t  ui32Base)

Receives a character from the specified port.

Parameters
ui32Baseis the base address of the UART port.

This function gets a character from the receive FIFO for the specified port.

Returns
Returns the character read from the specified port, cast as a int32_t. A -1 is returned if there are no characters present in the receive FIFO. The UARTCharsAvail() function should be called before attempting to call this function.

References ASSERT, HWREG, UART_FR_RXFE, UART_O_DR, and UART_O_FR.

§ UARTCharGet()

int32_t UARTCharGet ( uint32_t  ui32Base)

Waits for a character from the specified port.

Parameters
ui32Baseis the base address of the UART port.

This function gets a character from the receive FIFO for the specified port. If there are no characters available, this function waits until a character is received before returning.

Returns
Returns the character read from the specified port, cast as a int32_t.

References ASSERT, HWREG, UART_FR_RXFE, UART_O_DR, and UART_O_FR.

§ UARTCharPutNonBlocking()

bool UARTCharPutNonBlocking ( uint32_t  ui32Base,
unsigned char  ucData 
)

Sends a character to the specified port.

Parameters
ui32Baseis the base address of the UART port.
ucDatais the character to be transmitted.

This function writes the character ucData to the transmit FIFO for the specified port. This function does not block, so if there is no space available, then a false is returned and the application must retry the function later.

Returns
Returns true if the character was successfully placed in the transmit FIFO or false if there was no space available in the transmit FIFO.

References ASSERT, HWREG, UART_FR_TXFF, UART_O_DR, and UART_O_FR.

§ UARTCharPut()

void UARTCharPut ( uint32_t  ui32Base,
unsigned char  ucData 
)

Waits to send a character from the specified port.

Parameters
ui32Baseis the base address of the UART port.
ucDatais the character to be transmitted.

This function sends the character ucData to the transmit FIFO for the specified port. If there is no space available in the transmit FIFO, this function waits until there is space available before returning.

Returns
None.

References ASSERT, HWREG, UART_FR_TXFF, UART_O_DR, and UART_O_FR.

§ UARTBreakCtl()

void UARTBreakCtl ( uint32_t  ui32Base,
bool  bBreakState 
)

Causes a BREAK to be sent.

Parameters
ui32Baseis the base address of the UART port.
bBreakStatecontrols the output level.

Calling this function with bBreakState set to true asserts a break condition on the UART. Calling this function with bBreakState set to false removes the break condition. For proper transmission of a break command, the break must be asserted for at least two complete frames.

Returns
None.

References ASSERT, HWREG, UART_LCRH_BRK, and UART_O_LCRH.

§ UARTBusy()

bool UARTBusy ( uint32_t  ui32Base)

Determines whether the UART transmitter is busy or not.

Parameters
ui32Baseis the base address of the UART port.

This function allows the caller to determine whether all transmitted bytes have cleared the transmitter hardware. If false is returned, the transmit FIFO is empty and all bits of the last transmitted character, including all stop bits, have left the hardware shift register.

Returns
Returns true if the UART is transmitting or false if all transmissions are complete.

References ASSERT, HWREG, UART_FR_BUSY, and UART_O_FR.

§ UARTIntRegister()

void UARTIntRegister ( uint32_t  ui32Base,
void(*)(void)  pfnHandler 
)

Registers an interrupt handler for a UART interrupt.

Parameters
ui32Baseis the base address of the UART port.
pfnHandleris a pointer to the function to be called when the UART interrupt occurs.

This function does the actual registering of the interrupt handler. This function enables the global interrupt in the interrupt controller; specific UART interrupts must be enabled via UARTIntEnable(). It is the interrupt handler's responsibility to clear the interrupt source.

See also
IntRegister() for important information about registering interrupt handlers.
Returns
None.

References ASSERT.

§ UARTIntUnregister()

void UARTIntUnregister ( uint32_t  ui32Base)

Unregisters an interrupt handler for a UART interrupt.

Parameters
ui32Baseis the base address of the UART port.

This function does the actual unregistering of the interrupt handler. It clears the handler to be called when a UART interrupt occurs. This function also masks off the interrupt in the interrupt controller so that the interrupt handler no longer is called.

See also
IntRegister() for important information about registering interrupt handlers.
Returns
None.

References ASSERT.

§ UARTIntEnable()

void UARTIntEnable ( uint32_t  ui32Base,
uint32_t  ui32IntFlags 
)

Enables individual UART interrupt sources.

Parameters
ui32Baseis the base address of the UART port.
ui32IntFlagsis the bit mask of the interrupt sources to be enabled.

This function enables the indicated UART interrupt sources. Only the sources that are enabled can be reflected to the processor interrupt; disabled sources have no effect on the processor.

The ui32IntFlags parameter is the logical OR of any of the following:

  • UART_INT_9BIT - 9-bit Address Match interrupt
  • UART_INT_OE - Overrun Error interrupt
  • UART_INT_BE - Break Error interrupt
  • UART_INT_PE - Parity Error interrupt
  • UART_INT_FE - Framing Error interrupt
  • UART_INT_RT - Receive Timeout interrupt
  • UART_INT_TX - Transmit interrupt
  • UART_INT_RX - Receive interrupt
  • UART_INT_DSR - DSR interrupt
  • UART_INT_DCD - DCD interrupt
  • UART_INT_CTS - CTS interrupt
  • UART_INT_RI - RI interrupt
Returns
None.

References ASSERT, HWREG, and UART_O_IM.

§ UARTIntDisable()

void UARTIntDisable ( uint32_t  ui32Base,
uint32_t  ui32IntFlags 
)

Disables individual UART interrupt sources.

Parameters
ui32Baseis the base address of the UART port.
ui32IntFlagsis the bit mask of the interrupt sources to be disabled.

This function disables the indicated UART interrupt sources. Only the sources that are enabled can be reflected to the processor interrupt; disabled sources have no effect on the processor.

The ui32IntFlags parameter has the same definition as the ui32IntFlags parameter to UARTIntEnable().

Returns
None.

References ASSERT, HWREG, and UART_O_IM.

§ UARTIntStatus()

uint32_t UARTIntStatus ( uint32_t  ui32Base,
bool  bMasked 
)

Gets the current interrupt status.

Parameters
ui32Baseis the base address of the UART port.
bMaskedis false if the raw interrupt status is required and true if the masked interrupt status is required.

This function returns the interrupt status for the specified UART. Either the raw interrupt status or the status of interrupts that are allowed to reflect to the processor can be returned.

Returns
Returns the current interrupt status, enumerated as a bit field of values described in UARTIntEnable().

References ASSERT, HWREG, UART_O_MIS, and UART_O_RIS.

§ UARTIntClear()

void UARTIntClear ( uint32_t  ui32Base,
uint32_t  ui32IntFlags 
)

Clears UART interrupt sources.

Parameters
ui32Baseis the base address of the UART port.
ui32IntFlagsis a bit mask of the interrupt sources to be cleared.

The specified UART interrupt sources are cleared, so that they no longer assert. This function must be called in the interrupt handler to keep the interrupt from being triggered again immediately upon exit.

The ui32IntFlags parameter has the same definition as the ui32IntFlags parameter to UARTIntEnable().

Note
Because there is a write buffer in the Cortex-M processor, it may take several clock cycles before the interrupt source is actually cleared. Therefore, it is recommended that the interrupt source be cleared early in the interrupt handler (as opposed to the very last action) to avoid returning from the interrupt handler before the interrupt source is actually cleared. Failure to do so may result in the interrupt handler being immediately reentered (because the interrupt controller still sees the interrupt source asserted).
Returns
None.

References ASSERT, HWREG, and UART_O_ICR.

§ UARTDMAEnable()

void UARTDMAEnable ( uint32_t  ui32Base,
uint32_t  ui32DMAFlags 
)

Enable UART uDMA operation.

Parameters
ui32Baseis the base address of the UART port.
ui32DMAFlagsis a bit mask of the uDMA features to enable.

The specified UART uDMA features are enabled. The UART can be configured to use uDMA for transmit or receive and to disable receive if an error occurs. The ui32DMAFlags parameter is the logical OR of any of the following values:

  • UART_DMA_RX - enable uDMA for receive
  • UART_DMA_TX - enable uDMA for transmit
  • UART_DMA_ERR_RXSTOP - disable uDMA receive on UART error
Note
The uDMA controller must also be set up before DMA can be used with the UART.
Returns
None.

References ASSERT, HWREG, and UART_O_DMACTL.

§ UARTDMADisable()

void UARTDMADisable ( uint32_t  ui32Base,
uint32_t  ui32DMAFlags 
)

Disable UART uDMA operation.

Parameters
ui32Baseis the base address of the UART port.
ui32DMAFlagsis a bit mask of the uDMA features to disable.

This function is used to disable UART uDMA features that were enabled by UARTDMAEnable(). The specified UART uDMA features are disabled. The ui32DMAFlags parameter is the logical OR of any of the following values:

  • UART_DMA_RX - disable uDMA for receive
  • UART_DMA_TX - disable uDMA for transmit
  • UART_DMA_ERR_RXSTOP - do not disable uDMA receive on UART error
Returns
None.

References ASSERT, HWREG, and UART_O_DMACTL.

§ UARTRxErrorGet()

uint32_t UARTRxErrorGet ( uint32_t  ui32Base)

Gets current receiver errors.

Parameters
ui32Baseis the base address of the UART port.

This function returns the current state of each of the 4 receiver error sources. The returned errors are equivalent to the four error bits returned via the previous call to UARTCharGet() or UARTCharGetNonBlocking() with the exception that the overrun error is set immediately when the overrun occurs rather than when a character is next read.

Returns
Returns a logical OR combination of the receiver error flags, UART_RXERROR_FRAMING, UART_RXERROR_PARITY, UART_RXERROR_BREAK and UART_RXERROR_OVERRUN.

References ASSERT, HWREG, and UART_O_RSR.

§ UARTRxErrorClear()

void UARTRxErrorClear ( uint32_t  ui32Base)

Clears all reported receiver errors.

Parameters
ui32Baseis the base address of the UART port.

This function is used to clear all receiver error conditions reported via UARTRxErrorGet(). If using the overrun, framing error, parity error or break interrupts, this function must be called after clearing the interrupt to ensure that later errors of the same type trigger another interrupt.

Returns
None.

References ASSERT, HWREG, and UART_O_ECR.

§ UARTClockSourceSet()

void UARTClockSourceSet ( uint32_t  ui32Base,
uint32_t  ui32Source 
)

Sets the baud clock source for the specified UART.

Parameters
ui32Baseis the base address of the UART port.
ui32Sourceis the baud clock source for the UART.

This function allows the baud clock source for the UART to be selected. The possible clock source are the system clock (UART_CLOCK_SYSTEM) or the alternate clock (UART_CLOCK_ALTCLK).

Changing the baud clock source changes the baud rate generated by the UART. Therefore, the baud rate should be reconfigured after any change to the baud clock source.

Returns
None.

References ASSERT, HWREG, UART_CLOCK_ALTCLK, UART_CLOCK_SYSTEM, and UART_O_CC.

§ UARTClockSourceGet()

uint32_t UARTClockSourceGet ( uint32_t  ui32Base)

Gets the baud clock source for the specified UART.

Parameters
ui32Baseis the base address of the UART port.

This function returns the baud clock source for the specified UART. The possible baud clock source are the system clock (UART_CLOCK_SYSTEM) or the precision internal oscillator (UART_CLOCK_ALTCLK).

Returns
None.

References ASSERT, HWREG, and UART_O_CC.

§ UART9BitEnable()

void UART9BitEnable ( uint32_t  ui32Base)

Enables 9-bit mode on the specified UART.

Parameters
ui32Baseis the base address of the UART port.

This function enables the 9-bit operational mode of the UART.

Returns
None.

References ASSERT, HWREG, UART_9BITADDR_9BITEN, and UART_O_9BITADDR.

§ UART9BitDisable()

void UART9BitDisable ( uint32_t  ui32Base)

Disables 9-bit mode on the specified UART.

Parameters
ui32Baseis the base address of the UART port.

This function disables the 9-bit operational mode of the UART.

Returns
None.

References ASSERT, HWREG, UART_9BITADDR_9BITEN, and UART_O_9BITADDR.

§ UART9BitAddrSet()

void UART9BitAddrSet ( uint32_t  ui32Base,
uint8_t  ui8Addr,
uint8_t  ui8Mask 
)

Sets the device address(es) for 9-bit mode.

Parameters
ui32Baseis the base address of the UART port.
ui8Addris the device address.
ui8Maskis the device address mask.

This function configures the device address or range of device addresses that respond to requests on the 9-bit UART port. The received address is masked with the mask and then compared against the given address, allowing either a single address (if ui8Mask is 0xff) or a set of addresses to be matched.

Returns
None.

References ASSERT, HWREG, UART_9BITADDR_ADDR_S, UART_9BITAMASK_MASK_S, UART_O_9BITADDR, and UART_O_9BITAMASK.

§ UART9BitAddrSend()

void UART9BitAddrSend ( uint32_t  ui32Base,
uint8_t  ui8Addr 
)

Sends an address character from the specified port when operating in 9-bit mode.

Parameters
ui32Baseis the base address of the UART port.
ui8Addris the address to be transmitted.

This function waits until all data has been sent from the specified port and then sends the given address as an address byte. It then waits until the address byte has been transmitted before returning.

The normal data functions (UARTCharPut(), UARTCharPutNonBlocking(), UARTCharGet(), and UARTCharGetNonBlocking()) are used to send and receive data characters in 9-bit mode.

Returns
None.

References ASSERT, HWREG, UART_FR_BUSY, UART_FR_TXFE, UART_LCRH_EPS, UART_LCRH_PEN, UART_LCRH_SPS, UART_O_DR, UART_O_FR, and UART_O_LCRH.

§ UARTLoopbackEnable()

void UARTLoopbackEnable ( uint32_t  ui32Base)

Enables internal loopback mode for a UART port

Parameters
ui32Baseis the base address of the UART port.

This function configures a UART port in internal loopback mode to help with diagnostics and debug. In this mode, the transmit and receive terminals of the same UART port are internally connected. Hence, the data transmitted on the UnTx output is received on the UxRx input, without having to go through I/O's. UARTCharPut(), UARTCharGet() functions can be used along with this function.

Returns
None.

References ASSERT, HWREG, UART_CTL_LBE, and UART_O_CTL.

Copyright 2018, Texas Instruments Incorporated