Merge pull request #1938 from makrog/pr/cc1200-fixes

Fixed checking of the cc1200 GPIO0 pin status.
master-31012017
Antonio Lignan 2016-11-30 14:24:48 +01:00 committed by GitHub
commit a8acaf08d5
1 changed files with 1 additions and 1 deletions

View File

@ -241,7 +241,7 @@ cc1200_arch_gpio2_disable_irq(void)
int
cc1200_arch_gpio0_read_pin(void)
{
return GPIO_READ_PIN(CC1200_GDO0_PORT_BASE, CC1200_GDO0_PIN_MASK);
return (GPIO_READ_PIN(CC1200_GDO0_PORT_BASE, CC1200_GDO0_PIN_MASK) ? 1 : 0);
}
/*---------------------------------------------------------------------------*/
int