Sebastian,
The MODIR register support is not provided in the SDK 2.0 LPUART driver. If you're interested in adding this capability, you can augment the current LPUART_Init functionality with the following.
Available RTS flags, choose those required for your application:
LPUART_MODIR_TXRTSE_MASK
LPUART_MODIR_TXRTSPOL_MASK
LPUART_MODIR_RXRTSE_MASK
example code:
base->MODIR = LPUART_MODIR_TXRTSE_MASK | LPUART_MODIR_TXRTSPOL_MASK;
Jason
Sebastian,
The MODIR register support is not provided in the SDK 2.0 LPUART driver. If you're interested in adding this capability, you can augment the current LPUART_Init functionality with the following.
Available RTS flags, choose those required for your application:
LPUART_MODIR_TXRTSE_MASK
LPUART_MODIR_TXRTSPOL_MASK
LPUART_MODIR_RXRTSE_MASK
example code:
base->MODIR = LPUART_MODIR_TXRTSE_MASK | LPUART_MODIR_TXRTSPOL_MASK;
Jason