STM32L486xx HAL User Manual
Defines
Direction
LPUART Exported Constants

Defines

#define LL_LPUART_DIRECTION_NONE   0x00000000U
#define LL_LPUART_DIRECTION_RX   USART_CR1_RE
#define LL_LPUART_DIRECTION_TX   USART_CR1_TE
#define LL_LPUART_DIRECTION_TX_RX   (USART_CR1_TE |USART_CR1_RE)

Define Documentation

#define LL_LPUART_DIRECTION_NONE   0x00000000U

Transmitter and Receiver are disabled

Definition at line 276 of file stm32l4xx_ll_lpuart.h.

#define LL_LPUART_DIRECTION_RX   USART_CR1_RE

Transmitter is disabled and Receiver is enabled

Definition at line 277 of file stm32l4xx_ll_lpuart.h.

#define LL_LPUART_DIRECTION_TX   USART_CR1_TE

Transmitter is enabled and Receiver is disabled

Definition at line 278 of file stm32l4xx_ll_lpuart.h.

#define LL_LPUART_DIRECTION_TX_RX   (USART_CR1_TE |USART_CR1_RE)

Transmitter and Receiver are enabled

Definition at line 279 of file stm32l4xx_ll_lpuart.h.

Referenced by LL_LPUART_StructInit().