怎么让stm32经过串口一直发送一串数据

2025-04-07 17:29:16
推荐回答(1个)
回答1:

……
char *str = "hello,world!\n";

while(1)
{
printf("%s",str);

}