Hello,
I use NRF52810 with SDK 14.2.0 and softdevice 112. I need to use 7 input pins, but if I config more than 3 pins, all signals disappear.
GPIOTE_CONFIG_NUM_OF_LOW_POWER_EVENTS
is setted to 7.
My configuration for each pins is like below:Fullscreen123456/**< INPUT. */nrf_drv_gpiote_in_config_t config_pwr = GPIOTE_CONFIG_IN_SENSE_TOGGLE(false);// BTN_PWRerr_code = nrf_drv_gpiote_in_init(BTN_PWR, &config_pwr, PIN_EVT_Handler);APP_ERROR_CHECK(err_code);nrf_drv_gpiote_in_event_enable(BTN_PWR, true);