STM32F407 USART receive, When change baud rate not working
Hello.
I'm using STM32F407, use usart3 set DMA setting baud rate 9600 and use receive
void HAL_UARTEx_RxEventCallback(UART_HandleTypeDef *huart, uint16_t Size)
{
if (huart->Instance == USART3) {
HAL_UARTEx_ReceiveToIdle_DMA(&huart3, RxBuff, Size);
__HAL_DMA_DISABLE_IT(&hdma_usart3_rx, DMA_IT_HT);
}
}
connect to computer using software terminal "HTerm"
Set baud rate 9600 STM32F407 can receive
But i change to other baud rate such as 115200
then i change baud rate 9600 can not receive



