#include "oulib.h" int main (void) { /* Configure port B with output pin B0 */ DDRB = 0x1; while(1) { PORTB = PORTB ^ 0x1; // Toggle bit 0 delay_ms(500); }; return (0); }