getchar not working
I have a STM32L4R5 STM32CubeIde project using FreeRTOS.I have implemented _read(), _write() etc. to use UART for I/O.printf() is working fine.I can read characters from stdin using read(0, &mychar, 1) but getchar() does not work.I've traced through g...