HAL + 0/1 examples
CodeScope will show references to LL_USART_InitTypeDef from the following samples and libraries:
Examples
STM32F411RE-Nucleo
Examples_LL
USART
 
Symbols
loading...
Files
loading...

LL_USART_InitTypeDef struct

LL USART Init Structure definition

Syntax

typedef struct {   uint32_t BaudRate;                     uint32_t DataWidth;                    uint32_t StopBits;                     uint32_t Parity;                       uint32_t TransferDirection;            uint32_t HardwareFlowControl;          uint32_t OverSampling;               } LL_USART_InitTypeDef;

Fields

BaudRate

This field defines expected Usart communication baud rate. This feature can be modified afterwards using unitary function LL_USART_SetBaudRate(). Read more...

DataWidth

Specifies the number of data bits transmitted or received in a frame. This parameter can be a value of USART_LL_EC_DATAWIDTH. This feature can be modified afterwards using unitary function LL_USART_SetDataWidth(). Read more...

StopBits

Specifies the number of stop bits transmitted. This parameter can be a value of USART_LL_EC_STOPBITS. This feature can be modified afterwards using unitary function LL_USART_SetStopBitsLength(). Read more...

Parity

Specifies the parity mode. This parameter can be a value of USART_LL_EC_PARITY. This feature can be modified afterwards using unitary function LL_USART_SetParity(). Read more...

TransferDirection

Specifies whether the Receive and/or Transmit mode is enabled or disabled. This parameter can be a value of USART_LL_EC_DIRECTION. This feature can be modified afterwards using unitary function LL_USART_SetTransferDirection(). Read more...

HardwareFlowControl

Specifies whether the hardware flow control mode is enabled or disabled. This parameter can be a value of USART_LL_EC_HWCONTROL. This feature can be modified afterwards using unitary function LL_USART_SetHWFlowCtrl(). Read more...

OverSampling

Specifies whether USART oversampling mode is 16 or 8. This parameter can be a value of USART_LL_EC_OVERSAMPLING. This feature can be modified afterwards using unitary function LL_USART_SetOverSampling(). Read more...

Examples

LL_USART_InitTypeDef is referenced by 1 libraries and example projects.