Question
UART initialisation
Posted on February 22, 2013 at 09:24
Hi everybody,
I'm using a STM32F205VE and something that I don't understand.I do this : USART_InitStructure.USART_BaudRate = 9600; USART_InitStructure.USART_WordLength = USART_WordLength_8b; USART_InitStructure.USART_StopBits = USART_StopBits_1; USART_InitStructure.USART_Parity = USART_Parity_No; USART_InitStructure.USART_Mode = USART_Mode_Rx | USART_Mode_Tx; USART_InitStructure.USART_HardwareFlowControl = USART_HardwareFlowControl_None; USART_Init(USART6,&USART_InitStructure);and I can see the configuration into the USART6 register.I do the same thing for USART3 and nothing happen, no registers are configurated.Have you some ideas about this problem ? Must I do something special for this USART ?Thank you in advance,