1.35.21.29 USART_PARITY Enum

C

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

typedef enum
{
    USART_PARITY_NONE = US_MR_USART_PAR_NO,
    USART_PARITY_ODD = US_MR_USART_PAR_ODD,
    USART_PARITY_EVEN = US_MR_USART_PAR_EVEN,
    USART_PARITY_MARK = US_MR_USART_PAR_MARK,
    USART_PARITY_SPACE = US_MR_USART_PAR_SPACE,
    USART_PARITY_MULTIDROP = US_MR_USART_PAR_MULTIDROP,

    /* Force the compiler to reserve 32-bit memory for each enum */
    USART_PARITY_INVALID = 0xFFFFFFFF

} USART_PARITY;

Summary

Defines the type of parity for USART peripheral.

Description

This may be in the USARTx_SerialSetup API to change the parity configuration

Remarks

None.