Hi,
I am using 2 gpio interrupts from 2 separate sensors with active soft device. one sensor generates interrupts at around 400-800 ms and the other comparatively lesser time in every 5 sec. my device has to wake and read data when the interrupts are triggered
i have initialized the gpio with IN_EVENT (high accuracy = true) but i am missing some interrupts frequently.
In this documentation, its mentioned to use PPI in high accuarcy mode with a timer to count the transitions. in my case the timer may not be required as it comes only in around 400ms. i am a bit confused on the ppi part, as per my understanding from the documentation ppi is used to trigger a task of another peripheral on an event, gpio state change in my case (please correct me if i am wrong). how should i add the ppi to my application so that i dont miss any interrupts?