#include void main(void) { DDRB = DDRB | 0x01; while(1) { PORTB = PORTB | 0x01; PORTB = PORTB & ~0x01; } }