In my application, I had these lines.
nrf_gpiote_event_config(0, mPinDat, NRF_GPIOTE_POLARITY_LOTOHI);
nrf_gpiote_event_config(1, mPinDat, NRF_GPIOTE_POLARITY_HITOLO);
nrf_gpiote_event_config is not supported anymore in SDK8.1. But I am using two channels for the same pin. What is the proper solution in SDK8.1 for this case?
Thanks