#include <avr/io.h>
#include <stdlib.h>
int main(void)
{
while(1)
{
printf("a");
}
}
So I assume that your "printf" has worked before?so suddenly printf is not working in AVR studio
You should include the stdio.h file.
#include <avr/io.h>
#include <stdio.h>
int main(void)
{
while(1)
{
printf("a");
}
}
it suddently stoped, and now it doesent work in any code
You know, how many times I used printf function? Never.
Yes but i think putc() doesent work in simulation.
We use cookies and similar technologies for the following purposes:
Do you accept cookies and these technologies?
We use cookies and similar technologies for the following purposes:
Do you accept cookies and these technologies?