I have a IMU whose interrupt is connected to GPIO0.11 which is also nrf-gpio-forwarder GPIO (which I dont use)
I managed to get it to work but lost that progress and cant reproduce it again, that is to set Interrupt on pin 0.11.
I know it has something to do with mcuboot and nrf5340 conf and overlay files.
my interrupts are defined in nrf5340dk_nrf5340_cpuapp.overlay
buttons {
compatible = "gpio-keys";
button0: button_0 {
gpios = <&gpio1 13 (GPIO_PULL_UP | GPIO_ACTIVE_LOW)>;
label = "Push button 0";
};
int1: int_1 {
status = "okay";
gpios = <&gpio0 11 GPIO_ACTIVE_HIGH>;
label = "interrupt 1";
};
int2: int_2 {
status = "okay";
gpios = <&gpio0 9 GPIO_ACTIVE_HIGH>;
label = "interrupt 2";
};
};
Any help would be appreciated.!