USART judges that the input character has no response
#include "stm32f4xx.h" #include "main.h" #include "stdio.h" #include "stdlib.h" #include "string.h" void My_Usart2_Printf(char *string){ while(*string){ USART_SendData(USART2, (unsigned short int) *string++); ...