2005-12-07 09:29 PM
printf function in ST Visual Develop
2005-12-06 03:07 PM
Hi All:
In ST Visual Develop, the compiler is Cosmic, I use Win2K. I use printf function, but there is no any out put in the Output winodws and DOS prompt windows . Where does the message out put? Many Thanks Li Fan2005-12-07 03:01 AM
Hi,
The library function does not put it out at all... You have to write your own putchar like this: char putchar (char c) { /* here you put c where you want... (UART/SPI/LCD) */ return (c); }2005-12-07 09:29 PM