好的,突然printf在AVR studio中不工作了,我不知道发生了什么,这是代码,但它没有输出任何东西到调试窗口:
#include <avr/io.h>
#include <stdio.h>
int main(void)
{
while(1)
{
printf("a");
}
}发布于 2019-03-12 11:01:19
它适用于串口。从未在调试器中使用过它。请尝试使用变量,并读取它们的内容。
https://stackoverflow.com/questions/33028033
复制相似问题