Question
printf() on NUCLEO-F767ZI board not working
I had written a function to support printf() using USART3 for NUCLEO-F767ZI board. Please check the code below, but I did not see the prints on the console in STM32CudeIDE. Please let me know what the issue can be. Do I need to do any changes on the board to make it work?
int _write(int file, char *ptr, int len)
{
HAL_UART_Transmit(&huart3, (uint8_t*)ptr, len, HAL_MAX_DELAY);
return len;
}
