| 
    EFM32 Jade Gecko 1 Software Documentation
    efm32jg1-doc-5.1.2
    
   | 
 
LEUART driver instance initialization structure. This data structure contains a number of UARTDRV configuration options required for driver instance initialization. This struct is passed to UARTDRV_InitLeuart() when initializing a UARTDRV instance.
#include <uartdrv.h>
Data Fields | |
| uint32_t | baudRate | 
| UART baud rate.  | |
| uint8_t | ctsPin | 
| CTS pin number.  | |
| GPIO_Port_TypeDef | ctsPort | 
| CTS pin port number.  | |
| UARTDRV_FlowControlType_t | fcType | 
| Flow control mode.  | |
| LEUART_Parity_TypeDef | parity | 
| Parity configuration.  | |
| LEUART_TypeDef * | port | 
| The peripheral used for LEUART.  | |
| uint8_t | portLocationRx | 
| Location number for LEUART Rx pin.  | |
| uint8_t | portLocationTx | 
| Location number for LEUART Tx pin.  | |
| uint8_t | rtsPin | 
| RTS pin number.  | |
| GPIO_Port_TypeDef | rtsPort | 
| RTS pin port number.  | |
| UARTDRV_Buffer_FifoQueue_t * | rxQueue | 
| Receive operation queue.  | |
| LEUART_Stopbits_TypeDef | stopBits | 
| Number of stop bits.  | |
| UARTDRV_Buffer_FifoQueue_t * | txQueue | 
| Transmit operation queue.  | |