Removed leds debug output

This commit is contained in:
Niclas Finne 2012-06-07 10:35:22 +02:00
parent 47db065034
commit 418a5772e6
1 changed files with 0 additions and 2 deletions

View File

@ -40,7 +40,6 @@
#include "dev/uart0.h"
#include "dev/watchdog.h"
#include "lib/ringbuf.h"
#include "dev/leds.h"
#include "isr_compat.h"
static int (*uart0_input_handler)(unsigned char c);
@ -144,7 +143,6 @@ ISR(USCIAB0RX, uart0_rx_interrupt)
uint8_t c;
ENERGEST_ON(ENERGEST_TYPE_IRQ);
leds_toggle(LEDS_RED);
if(UCA0STAT & UCRXERR) {
c = UCA0RXBUF; /* Clear error flags by forcing a dummy read. */
} else {