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