RA Flexible Software Package Documentation  Release v5.3.0

 
UART (r_sau_uart)

Functions

fsp_err_t R_SAU_UART_Open (uart_ctrl_t *const p_api_ctrl, uart_cfg_t const *const p_cfg)
 
fsp_err_t R_SAU_UART_Close (uart_ctrl_t *const p_api_ctrl)
 
fsp_err_t R_SAU_UART_Read (uart_ctrl_t *const p_api_ctrl, uint8_t *const p_dest, uint32_t const bytes)
 
fsp_err_t R_SAU_UART_Write (uart_ctrl_t *const p_api_ctrl, uint8_t const *const p_src, uint32_t const bytes)
 
fsp_err_t R_SAU_UART_BaudSet (uart_ctrl_t *const p_api_ctrl, void const *const p_baud_setting)
 
fsp_err_t R_SAU_UART_CallbackSet (uart_ctrl_t *const p_api_ctrl, void(*p_callback)(uart_callback_args_t *), void const *const p_context, uart_callback_args_t *const p_callback_memory)
 
fsp_err_t R_SAU_UART_InfoGet (uart_ctrl_t *const p_api_ctrl, uart_info_t *const p_info)
 
fsp_err_t R_SAU_UART_Abort (uart_ctrl_t *const p_api_ctrl, uart_dir_t communication_to_abort)
 
fsp_err_t R_SAU_UART_ReadStop (uart_ctrl_t *const p_api_ctrl, uint32_t *remaining_bytes)
 
fsp_err_t R_SAU_UART_BaudCalculate (sau_uart_instance_ctrl_t *const p_ctrl, uint32_t baudrate, sau_uart_baudrate_setting_t *const p_baud_setting)
 

Detailed Description

UART driver for the SAU peripheral on RA MCUs. This module implements the UART Interface.

Overview

Features

The SAU UART module supports the following features:

Configuration

Build Time Configurations for r_sau_uart

The following build time configurations are defined in fsp_cfg/r_sau_uart_cfg.h:

ConfigurationOptionsDefaultDescription
Parameter Checking
  • Default (BSP)
  • Enabled
  • Disabled
Default (BSP) If selected code for parameter checking is included in the build.
Critical Section Guarding
  • Enabled
  • Disabled
Disabled Enable critical section guarding around peripheral configuration updates. This should be enabled if the R_SAU_I2C module is being used simultaneously with this module.
DTC Support
  • Enable
  • Disable
Disable Enable DTC support for the SAU_UART module.
Enable Single Channel
  • Disable
  • Channel 0
  • Channel 1
  • Channel 2
Disable Enable single channel to reduce code size if only channel 0, 1, or 2 is needed.
Enable Fixed Baudrate
  • Enable
  • Disable
Disable Disable baudrate calculation and setter functions to reduce code size.

Configurations for Connectivity > UART (r_sau_uart)

This module can be added to the Stacks tab via New Stack > Connectivity > UART (r_sau_uart).

ConfigurationOptionsDefaultDescription
General
NameName must be a valid C symbolg_uart0 Module name.
ChannelValue must be a non-negative integer0 Select the UART channel.
Data Bits
  • 7 bits
  • 8 bits
  • 9 bits
8 bits Select the number of bits per word.
Parity
  • None
  • Zero
  • Odd
  • Even
None Select the parity mode.
Stop Bits
  • 1 bit
  • 2 bits
1 bit Select the number of stop bits. In receive, 2 bit is not available.
Bit Order
  • LSB First
  • MSB First
LSB First Select of data transfer sequence.
Baud
Baud RateValue must be an integer greater than 0115200 Enter the desired baud rate.

If the requested baud rate cannot be achieved, adjust the operation clock frequency until the baud rate is achievable. The calculated baud rate is printed in a comment in the generated sau_uart_baudrate_setting_t structure.
Extra
Operation Clock
  • CK0
  • CK1
CK0 Select the operation clock. Use the Clocks tab to set the operation clock divider.
Tx Signal Level
  • Standard
  • Inverted
Standard Select the level of transmitted signal.
Interrupts
CallbackName must be a valid C symbolNULL A user callback function can be provided. If this callback function is provided, it will be called from the interrupt service routine (ISR).
Transmit End Interrupt PriorityMCU Specific OptionsSelect the transmit end interrupt priority.
Receive End Interrupt PriorityMCU Specific OptionsSelect the receive end interrupt priority.
Error Interrupt PriorityMCU Specific OptionsSelect the error interrupt priority.

Clock Configuration

The SAU clock is based on the peripheral module clock which is the system clock (ICLK).

Pin Configuration

Usage Notes

9-bit data transfers

Limitations

DTC Limitations

Examples

SAU UART Example

uint8_t g_dest[TRANSFER_LENGTH];
uint8_t g_src[TRANSFER_LENGTH];
uint8_t g_out_of_band_received[TRANSFER_LENGTH];
uint32_t g_transfer_complete = 0;
uint32_t g_receive_complete = 0;
uint32_t g_out_of_band_index = 0;
void r_sau_uart_basic_example (void)
{
/* Initialize p_src to known data */
for (uint32_t i = 0; i < TRANSFER_LENGTH; i++)
{
g_src[i] = (uint8_t) ('A' + (i % 26));
}
/* Open the transfer instance with initial configuration. */
fsp_err_t err = R_SAU_UART_Open(&g_uart0_ctrl, &g_uart0_cfg);
assert(FSP_SUCCESS == err);
err = R_SAU_UART_Read(&g_uart0_ctrl, g_dest, TRANSFER_LENGTH);
assert(FSP_SUCCESS == err);
err = R_SAU_UART_Write(&g_uart0_ctrl, g_src, TRANSFER_LENGTH);
assert(FSP_SUCCESS == err);
while (!g_transfer_complete)
{
}
while (!g_receive_complete)
{
}
}
void example_callback (uart_callback_args_t * p_args)
{
/* Handle the UART event */
switch (p_args->event)
{
/* Received a character */
{
/* Only put the next character in the receive buffer if there is space for it */
if (sizeof(g_out_of_band_received) > g_out_of_band_index)
{
/* Write either the next one or two bytes depending on the receive data size */
if (UART_DATA_BITS_8 >= g_uart0_cfg.data_bits)
{
g_out_of_band_received[g_out_of_band_index++] = (uint8_t) p_args->data;
}
else
{
uint16_t * p_dest = (uint16_t *) &g_out_of_band_received[g_out_of_band_index];
*p_dest = (uint16_t) p_args->data;
g_out_of_band_index += 2;
}
}
break;
}
/* Receive complete */
{
g_receive_complete = 1;
break;
}
/* Transmit complete */
{
g_transfer_complete = 1;
break;
}
default:
{
}
}
}

SAU UART Baud Set Example

#define SAU_UART_BAUDRATE_19200 (19200)
#define SAU_UART_BAUDRATE_ERROR_PERCENT_5 (5000)
void r_sau_uart_baud_example (void)
{
sau_uart_baudrate_setting_t baud_setting;
uint32_t baud_rate = SAU_UART_BAUDRATE_19200;
fsp_err_t err = R_SAU_UART_BaudCalculate(&g_uart0_ctrl, baud_rate, &baud_setting);
assert(FSP_SUCCESS == err);
err = R_SAU_UART_BaudSet(&g_uart0_ctrl, (void *) &baud_setting);
assert(FSP_SUCCESS == err);
}

Data Structures

struct  sau_uart_extended_cfg_t
 
struct  sau_uart_instance_ctrl_t
 

Enumerations

enum  sau_uart_data_sequence_t
 
enum  sau_operation_clock_t
 
enum  sau_uart_transfer_mode_t
 
enum  sau_uart_signal_level_t
 

Data Structure Documentation

◆ sau_uart_extended_cfg_t

struct sau_uart_extended_cfg_t

UART Configuration

Data Fields
sau_uart_transfer_mode_t transfer_mode Select single transfer mode or continuous transfer mode.
sau_uart_data_sequence_t sequence Transfer sequence (LSB or MSB)
sau_uart_signal_level_t signal_level Transfer data signal level (standard or inverted)
sau_uart_baudrate_setting_t * p_baudrate Baud rate setting (SPS and SDR value)

◆ sau_uart_instance_ctrl_t

struct sau_uart_instance_ctrl_t

UART instance control block. DO NOT INITIALIZE.

Data Fields

uint8_t extra_data_byte
 0 for 7 or 8 bit data length(1-byte), 1 for 9 bit data length(2-byte)
 
uint32_t open
 Used to determine if the channel is configured.
 
uart_cfg_t const * p_cfg
 Pointer to the configuration block.
 
R_SAU0_Type * p_reg
 Base register for the transmit channel.
 
uint8_t sau_unit
 SAU unit information.
 
uint8_t sau_tx_channel
 SAU channel information.
 
uint8_t * p_src
 Source buffer pointer.
 
uint32_t tx_count
 Size of destination buffer pointer from transmit ISR.
 
uint8_t * p_dest
 Destination buffer pointer.
 
uint32_t rx_count
 Size of destination buffer pointer used for receiving data.
 

Enumeration Type Documentation

◆ sau_uart_data_sequence_t

UART Data transfer sequence definition

Enumerator
SAU_UART_DATA_SEQUENCE_MSB 

Data sequence MSB first.

SAU_UART_DATA_SEQUENCE_LSB 

Data sequence LSB first.

◆ sau_operation_clock_t

UART operation clock selection definition

Enumerator
SAU_UART_OPERATION_CLOCK_CK0 

Operating clock use CK0.

SAU_UART_OPERATION_CLOCK_CK1 

Operating clock use CK1.

◆ sau_uart_transfer_mode_t

UART transfer mode selection definition

Enumerator
SAU_UART_TRANSFER_MODE_SINGLE 

Single transfer mode.

SAU_UART_TRANSFER_MODE_CONTINUOUS 

Continuous transfer mode.

◆ sau_uart_signal_level_t

UART data signal level definition

Enumerator
SAU_UART_SIGNAL_LEVEL_STANDARD 

Uart data signal level standard.

SAU_UART_SIGNAL_LEVEL_INVERTED 

Uart data signal level inverted.

Function Documentation

◆ R_SAU_UART_Open()

fsp_err_t R_SAU_UART_Open ( uart_ctrl_t *const  p_api_ctrl,
uart_cfg_t const *const  p_cfg 
)

Configures the UART driver based on the input configurations. If reception is enabled at compile time, reception is enabled at the end of this function. Implements uart_api_t::open

Return values
FSP_SUCCESSChannel opened successfully.
FSP_ERR_ASSERTIONPointer to UART control block or configuration structure is NULL.
FSP_ERR_IP_CHANNEL_NOT_PRESENTThe requested channel does not exist on this MCU.
FSP_ERR_INVALID_ARGUMENTFlow control is enabled but flow control pin is not defined or selected channel does not support "Hardware CTS and Hardware RTS" flow control.
FSP_ERR_ALREADY_OPENControl block has already been opened or channel is being used by another instance. Call close() then open() to reconfigure.
Returns
See Common Error Codes or functions called by this function for other possible return codes. This function calls:

◆ R_SAU_UART_Close()

fsp_err_t R_SAU_UART_Close ( uart_ctrl_t *const  p_api_ctrl)

Aborts any in progress transfers. Disables interrupts, receiver, and transmitter. Closes lower level transfer drivers if used. Removes power. Implements uart_api_t::close

Return values
FSP_SUCCESSChannel successfully closed.
FSP_ERR_ASSERTIONPointer to UART control block is NULL.
FSP_ERR_NOT_OPENThe control block has not been opened

◆ R_SAU_UART_Read()

fsp_err_t R_SAU_UART_Read ( uart_ctrl_t *const  p_api_ctrl,
uint8_t *const  p_dest,
uint32_t const  bytes 
)

Receives user specified number of bytes into destination buffer pointer. Implements uart_api_t::read

Return values
FSP_SUCCESSData reception successfully ends.
FSP_ERR_ASSERTIONPointer to UART control block is NULL. Number of transfers outside the max or min boundary when transfer instance used
FSP_ERR_INVALID_ARGUMENTDestination address or data size is not valid for 9-bit mode.
FSP_ERR_NOT_OPENThe control block has not been opened
FSP_ERR_IN_USEA previous read operation is still in progress.
FSP_ERR_UNSUPPORTEDcurrent operation mode is transmission only.
Returns
See Common Error Codes or functions called by this function for other possible return codes. This function calls:
Note
If 9-bit data length is specified at R_SAU_UART_Open call, p_dest must be aligned 16-bit boundary.

◆ R_SAU_UART_Write()

fsp_err_t R_SAU_UART_Write ( uart_ctrl_t *const  p_api_ctrl,
uint8_t const *const  p_src,
uint32_t const  bytes 
)

Transmits user specified number of bytes from the source buffer pointer. Implements uart_api_t::write

Return values
FSP_SUCCESSData transmission finished successfully.
FSP_ERR_ASSERTIONPointer to UART control block is NULL. Number of transfers outside the max or min boundary when transfer instance used
FSP_ERR_INVALID_ARGUMENTSource address or data size is not valid for 9-bit mode.
FSP_ERR_NOT_OPENThe control block has not been opened
FSP_ERR_IN_USEA UART transmission is in progress
FSP_ERR_UNSUPPORTEDSAU_UART_CFG_TX_ENABLE is set to 0
Returns
See Common Error Codes or functions called by this function for other possible return codes. This function calls:
Note
If 9-bit data length is specified at R_SAU_UART_Open call, p_src must be aligned on a 16-bit boundary.

◆ R_SAU_UART_BaudSet()

fsp_err_t R_SAU_UART_BaudSet ( uart_ctrl_t *const  p_api_ctrl,
void const *const  p_baud_setting 
)

Updates the baud rate using the clock selected in Open. p_baud_setting is a pointer to a sau_uart_baudrate_setting_t structure. Implements uart_api_t::baudSet

Warning
This terminates any in-progress transmission.
Return values
FSP_SUCCESSBaud rate was successfully changed.
FSP_ERR_ASSERTIONPointer p_ctrl is NULL
FSP_ERR_INVALID_ARGUMENTp_api_ctrl is empty.
FSP_ERR_NOT_OPENThe control block has not been opened
FSP_ERR_UNSUPPORTEDFixed baud rate is enabled

◆ R_SAU_UART_CallbackSet()

fsp_err_t R_SAU_UART_CallbackSet ( uart_ctrl_t *const  p_api_ctrl,
void(*)(uart_callback_args_t *)  p_callback,
void const *const  p_context,
uart_callback_args_t *const  p_callback_memory 
)

Updates the user callback for callback structure. Implements uart_api_t::callbackSet

Return values
FSP_SUCCESSCallback updated successfully.
FSP_ERR_ASSERTIONPointer p_ctrl is NULL or p_callback_memory is not NULL.
FSP_ERR_NOT_OPENThe control block has not been opened.

◆ R_SAU_UART_InfoGet()

fsp_err_t R_SAU_UART_InfoGet ( uart_ctrl_t *const  p_api_ctrl,
uart_info_t *const  p_info 
)

Provides the driver information, including the maximum number of bytes that can be received or transmitted at a time. Implements uart_api_t::infoGet

Return values
FSP_SUCCESSInformation stored in provided p_info.
FSP_ERR_INVALID_ARGUMENTPointer to UART control block is NULL.
FSP_ERR_NOT_OPENThe control block has not been opened

◆ R_SAU_UART_Abort()

fsp_err_t R_SAU_UART_Abort ( uart_ctrl_t *const  p_api_ctrl,
uart_dir_t  communication_to_abort 
)

Provides API to abort ongoing transfer. Transmission is aborted after the current character is transmitted. Reception is still enabled after abort(). Any characters received after abort() and before the transfer is reset in the next call to read(), will arrive via the callback function with event UART_EVENT_RX_CHAR. Implements uart_api_t::communicationAbort

Return values
FSP_SUCCESSUART transaction aborted successfully.
FSP_ERR_ASSERTIONPointer to UART control block is NULL.
FSP_ERR_NOT_OPENThe control block has not been opened.
FSP_ERR_UNSUPPORTEDThe requested Abort direction is unsupported.
Returns
See Common Error Codes or functions called by this function for other possible return codes. This function calls:

◆ R_SAU_UART_ReadStop()

fsp_err_t R_SAU_UART_ReadStop ( uart_ctrl_t *const  p_api_ctrl,
uint32_t *  remaining_bytes 
)

Provides API to abort ongoing read. Reception is still enabled after abort(). Any characters received after abort() and before the transfer is reset in the next call to read(), will arrive via the callback function with event UART_EVENT_RX_CHAR. Implements uart_api_t::readStop

Return values
FSP_SUCCESSUART transaction aborted successfully.
FSP_ERR_ASSERTIONPointer to UART control block is NULL.
FSP_ERR_NOT_OPENThe control block has not been opened.
FSP_ERR_UNSUPPORTEDThe requested Abort direction is unsupported.
Returns
See Common Error Codes or functions called by this function for other possible return codes. This function calls:

◆ R_SAU_UART_BaudCalculate()

fsp_err_t R_SAU_UART_BaudCalculate ( sau_uart_instance_ctrl_t *const  p_ctrl,
uint32_t  baudrate,
sau_uart_baudrate_setting_t *const  p_baud_setting 
)

Calculates baud rate register settings (SDR.STCLK) for the specified SAU unit.

Note
This function calculates the baud settings with both operation clocks CK0 and CK1, then selects the operation clock and register setting combination that would produce the lowest error. Call R_SAU_UART_BaudSet to apply the updated register settings.
Configure the operation clock frequencies such that all required baud rates can be achieved using at least one of the 2 operation clocks. If all required baud rates cannot be achieved with one clock, set one operation clock to a lower frequency for slow baud rates, and the second clock to a faster frequency for faster baud rates.
Parameters
[in]p_ctrlPointer to the SAU UART control block.
[in]baudrateBaud rate [bps]. For example, 19200, 57600, 115200, etc.
[out]p_baud_settingBaud setting information stored here if successful
Return values
FSP_SUCCESSBaud rate is successfully calculated
FSP_ERR_UNSUPPORTEDFixed baudrate is being used
FSP_ERR_ASSERTIONNull pointer
FSP_ERR_INVALID_ARGUMENTBaud rate is not achievable with selected operation clock frequency