UART Transmit issue
Hi there,
I have a gps receive code on f411 black-pill, and it is work fine. Recently, the system updated software packages to F4 1.28.0, found that the HAL library HAL_UART_Transmit does not work on each UART tx port, but HAL_UART_Receive_IT normal, I wonder if anyone is experiencing the same problem, and how to solve it. The function of HAL_UART_Transmit just use for printf as following
int __io_putchar (int ch)
{
HAL_UART_Transmit (&huart1, (uint8_t *)&ch, 1, 0xFFFF);
return ch;
} /* __io_putchar() */
