Skip to content
Snippets Groups Projects
Commit edf4c495 authored by Oleg Hahm's avatar Oleg Hahm
Browse files

Merge pull request #954 from rousselk/cc2420-fix-isr

Fix for CC2420 radio driver for TelosB
parents 951cc0cd 90ea0475
No related branches found
No related tags found
No related merge requests found
......@@ -207,7 +207,7 @@ interrupt (PORT1_VECTOR) __attribute__ ((naked)) cc2420_isr(void)
DEBUG("rx interrupt");
}
/* 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;
if (cc2420_get_fifop()) {
cc2420_rxoverflow_irq();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment