mirror of
https://github.com/oliverschmidt/contiki.git
synced 2024-12-21 19:29:18 +00:00
Fixed checking of the cc1200 GPIO0 pin status.
This commit is contained in:
parent
efde9132a8
commit
91a6ce6576
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user