hi,
i am doing a project where i have an push button connected on pin P1.07 of nrf52840(PCA 10056) DevKit. i am using sdk 14.2's ble app blinky example.
in buttons_init() fucntion i have changed LEDBUTTON_BUTTON's macro defination to
#define LEDBUTTON_BUTTON's NRF_GPIO_PIN_MAP(1,7)
and changed button event detection config to
nrf_drv_gpiote_in_config_t config = GPIOTE_CONFIG_IN_SENSE_HITOLO(false);
because pin is pulled high. so i should get a button press event on press of button
but when i am pressing button i am not getting any button event on this pin.
when i chaned button pin to any pin of port 0 it works fine, but wy it is not working on port 1 pin.
please help.