Adbadb
Junior Member level 1
Ok, so suddenly printf is not working in AVR studio, i dont know what happened, this is the code, but it doesn't output anything to the debug window:
Code:
#include <avr/io.h>
#include <stdlib.h>
int main(void)
{
while(1)
{
printf("a");
}
}