I am using NRF_GPIOTE->EVENTS_IN[0] and NRF_GPIOTE->EVENTS_IN[1] in my software. I had my own GPIOTE_IRQHandler working. Today I am adding UART module into my source code, compiler tells me that app_gpiote.c has a GPIOTE_IRQHandler too.
I checked app_gpiote.c, it only deals with NRF_GPIOTE->EVENTS_PORT.
What is the best way to organize that: my own GPIOTE_IRQHandler for handling NRF_GPIOTE->EVENTS_IN's, and SDK's GPIOTE_IRQHandler for NRF_GPIOTE->EVENTS_PORT?
Thanks