Posted on August 08, 2015 at 04:53
Hello,
I want to use USART2 of STM32 as debug output of application, so i overload printf as below:
#pragma import(__use_no_semihosting)
struct
__FILE {
int
handle;
} __stdout;
void
_sys_e...
Posted on August 08, 2015 at 10:33
Hi,clive,
forgive for my bad description. what i mean is that the when call printf like in main(), the PC can receive the whole message, but the overrided printf defined below (2) not called.
1,...