Description
When the MCU goes into sleep mode after attachInterrupt() it consumes 1mA. This is too much for a battery powered application.
I prefer to switch from Config Channels to Pin Sense. This allows sleeping with uA current. Pin Sense is not so flexible like Config Channels. This requires a logic to find out what pin was changed. Falling and Rising detection is easily possible. Pin change needs some logic.
Switching to Pin Sense allows monitoring of more Pins than Config Channels.
If it not possible to switch to pin sense, I need handling of NRF_GPIOTE->EVENTS_PORT, so I can implement my own routine.
When it is acceptable to switch to Pin Sense, I create a Pull Request.
Btw. I think the actual implementation will fail when multiple pins are inserted and removed in different order.