From: Olivier Matz Date: Thu, 23 May 2013 17:42:14 +0000 (+0200) Subject: remove led blink and activate real code X-Git-Url: http://git.droids-corp.org/?p=beacon-rx-433.git;a=commitdiff_plain;h=6c2b37ed3725443a7342e0baca30c6dc97ee2578;ds=sidebyside remove led blink and activate real code --- diff --git a/main.c b/main.c index 6797250..1a9b01e 100644 --- a/main.c +++ b/main.c @@ -369,13 +369,6 @@ int main(void) /* led and buzzer are outputs */ #if defined(__AVR_ATtiny45__) DDRB |= (1 << LED_BIT) | (1 << BUZ_BIT); - - while (1) { - PORTB |= (1 << LED_BIT); - wait_ms(500); - PORTB &= ~(1 << LED_BIT); - wait_ms(500); - } #endif i = 0;