Fix a typo that provokes many unjustified "cc2420 unexpected IFG" alerts to occur

This commit is contained in:
Kévin Roussel 2014-03-31 14:54:39 +02:00
parent dea33bd8b6
commit 90ea047546

View File

@ -207,7 +207,7 @@ interrupt (PORT1_VECTOR) __attribute__ ((naked)) cc2420_isr(void)
DEBUG("rx interrupt"); DEBUG("rx interrupt");
} }
/* GIO0 is falling => check if FIFOP is high, indicating an RXFIFO overflow */ /* GIO0 is falling => check if FIFOP is high, indicating an RXFIFO overflow */
else if ((P1IFG & CC2420_GIO0) != 0) { else if ((P1IFG & CC2420_GIO0_PIN) != 0) {
P1IFG &= ~CC2420_GIO0_PIN; P1IFG &= ~CC2420_GIO0_PIN;
if (cc2420_get_fifop()) { if (cc2420_get_fifop()) {
cc2420_rxoverflow_irq(); cc2420_rxoverflow_irq();