I have a Nucleo-H743zi board and am debugging an application using STM32CubeIDE. There is some legacy code that does some debug printf's I don't see anything on the debug console or the regular console. How does one configure standard output to r...
Thanks. I saw those two ports eventually. I saw this code....int __io_putchar(int ch){ uint8_t ch8=ch; HAL_UART_Transmit(&huart1,(uint8_t *)&ch8,1,HAL_MAX_DELAY); return ch;}int __io_getchar(){ uint8_t ch8; HAL_UART_Receive(&huart1,&ch8,...