#include "avr/io.h" int main () { DDRD = (1<<5); TCCR1A = 0x40; TCCR1B = 0x09; OCR1AH = 0x02; OCR1AL = 0x00; while (1); return 0; }