HAL + 0/2 examples
SourceVu will show references to LL_USART_ConfigSyncMode() from the following samples and libraries:
 
Symbols
loading...
Files
loading...
SummarySyntaxArgumentsRelatedReferences

Return value

None

Notes

In Synchronous mode, the following bits must be kept cleared: - LINEN bit 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 sets the USART in Synchronous mode. Macro IS_USART_INSTANCE(USARTx) can be used to check whether or not Synchronous mode is supported by the USARTx instance. Call of this function is equivalent to following function call sequence : - Clear LINEN in CR2 using LL_USART_DisableLIN() function - Clear IREN in CR3 using LL_USART_DisableIrda() function - Clear SCEN in CR3 using LL_USART_DisableSmartcard() function - Clear HDSEL in CR3 using LL_USART_DisableHalfDuplex() function - Set CLKEN in CR2 using LL_USART_EnableSCLKOutput() function Other remaining configurations items related to Synchronous Mode (as Baud Rate, Word length, Parity, Clock Polarity, ...) should be set using dedicated functions CR2 CLKEN LL_USART_ConfigSyncMode\n CR3 SCEN LL_USART_ConfigSyncMode\n CR3 IREN LL_USART_ConfigSyncMode\n CR3 HDSEL LL_USART_ConfigSyncMode

References

from examples