Skip to content

Commit

Permalink
Fixed bug with chibi due to previous GPIO bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Kevin Townsend committed Dec 4, 2013
1 parent d43aa16 commit c1dc51a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/rf/chibi/chb_drvr.c
Expand Up @@ -618,7 +618,7 @@ U16 chb_get_short_addr()
int16_t addr;

chb_eeprom_read(CFG_EEPROM_CHIBI_SHORTADDR, (uint8_t*)&addr, 2);
return addr;
return addr;
}
/**************************************************************************/
/*!
Expand Down Expand Up @@ -763,7 +763,7 @@ static void chb_radio_init()
CHB_EINTPIN,
gpioInterruptSense_Edge, // Edge-sensitive
gpioInterruptEdge_Single, // Single edge
gpioInterruptEvent_ActiveLow); // High triggers interrupt
gpioInterruptEvent_ActiveHigh); // High triggers interrupt

// enable interrupt
gpioIntEnable (CHB_EINTPORT,
Expand Down

0 comments on commit c1dc51a

Please sign in to comment.