Skip to content

Commit

Permalink
drivers/at86rf2xx: fixed for usage of new pcint interface RIOT-OS#9159
Browse files Browse the repository at this point in the history
  • Loading branch information
TorbenPetersen committed May 30, 2018
1 parent 74600d6 commit 2d88f9e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/at86rf2xx/at86rf2xx_netdev.c
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ static int _init(netdev_t *netdev)
gpio_clear(dev->params.sleep_pin);
gpio_init(dev->params.reset_pin, GPIO_OUT);
gpio_set(dev->params.reset_pin);
gpio_init_int(INT_ENTRY, dev->params.int_pin, GPIO_IN,
gpio_init_int((gpio_int_t*)INT_ENTRY, dev->params.int_pin, GPIO_IN,
GPIO_RISING, _irq_handler, dev);

/* reset device to default values and put it into RX state */
Expand Down

0 comments on commit 2d88f9e

Please sign in to comment.