HAL
LL_USART_ConfigLINMode() is only used within HAL.
 
Symbols
loading...
Files
loading...
SummarySyntaxArgumentsRelatedReferences

Return value

None

Notes

In LIN mode, the following bits must be kept cleared: - STOP and CLKEN bits in the USART_CR2 register, - SCEN bit in the USART_CR3 register, - IREN bit in the USART_CR3 register, - HDSEL bit in the USART_CR3 register. This function also set the UART/USART in LIN mode. Macro IS_UART_LIN_INSTANCE(USARTx) can be used to check whether or not LIN feature is supported by the USARTx instance. Call of this function is equivalent to following function call sequence : - Clear CLKEN in CR2 using LL_USART_DisableSCLKOutput() function - Clear STOP in CR2 using LL_USART_SetStopBitsLength() function - Clear SCEN in CR3 using LL_USART_DisableSmartcard() function - Clear IREN in CR3 using LL_USART_DisableIrda() function - Clear HDSEL in CR3 using LL_USART_DisableHalfDuplex() function - Set LINEN in CR2 using LL_USART_EnableLIN() function Other remaining configurations items related to LIN Mode (as Baud Rate, Word length, LIN Break Detection Length, ...) should be set using dedicated functions CR2 STOP LL_USART_ConfigLINMode\n CR2 LINEN LL_USART_ConfigLINMode\n CR3 IREN LL_USART_ConfigLINMode\n CR3 SCEN LL_USART_ConfigLINMode\n CR3 HDSEL LL_USART_ConfigLINMode

References

from examples