1.40.20.33 USART_STOP Enum

C

/* Blocking, non-blocking and ring buffer mode */

typedef enum
{
    /* 1 bit stop bit */
    USART_STOP_1_BIT = SERCOM_USART_INT_CTRLB_SBMODE_1_BIT,
    
    /* 2 bit stop bit */
    USART_STOP_2_BIT = SERCOM_USART_INT_CTRLB_SBMODE_2_BIT,
    
    /* Force the compiler to reserve 32-bit memory for each enum */
    USART_STOP_INVALID = 0xFFFFFFFFU
    
} USART_STOP;

Summary

Defines the data type for the USART peripheral stop bits

Description

This may be used in the SERCOMx_USART_SerialSetup API to change the stop bit configuration

Remarks

None