Beware that this post is related to an SDK in maintenance mode
More Info: Consider nRF Connect SDK for new designs
This post is older than 2 years and might not be relevant anymore
More Info: Consider searching for newer posts

GPIOTE missing event.

Hello,

I have problem with missing GPIOTE event. Sometimes event doesn't occur, sometimes there is no problem. This event is very rare but important. I think it happens during radio activity. Have I missed something?

Device: nRF5282
SDK: 13.0.0.

gpiote_in_cfg.sense 		= NRF_GPIOTE_POLARITY_TOGGLE;
gpiote_in_cfg.pull			= NRF_GPIO_PIN_PULLUP;
gpiote_in_cfg.is_watcher	= false;
gpiote_in_cfg.hi_accuracy	= false;

err_code = nrf_drv_gpiote_in_init(PIN, &gpiote_in_cfg, PIN_on_pin_toggle_evt_handler);

if (err_code == NRF_SUCCESS)
{
	nrf_drv_gpiote_in_event_enable(PIN, true);
}

Related