NCS 2.6.0 GPIO1.xx interrupt no working

Hi:

software: NCS 2.6.0  sample zephyr\samples\boards\nrf\nrfx

hardware: nrf5340DK

I only modified the 'nrf5340_cpuapp_common.dtsi',  and the gpio1.4 interrupt is not working.

button0: button_0 {
            gpios = <&gpio0 23 (GPIO_PULL_UP | GPIO_ACTIVE_LOW)>;
            label = "Push button 1";
            zephyr,code = <INPUT_KEY_0>;
        };
to
button0: button_0 {
            gpios = <&gpio1 4 (GPIO_PULL_UP | GPIO_ACTIVE_LOW)>;
            label = "Push button 1";
            zephyr,code = <INPUT_KEY_0>;
        };
How to implement the GPIO1.x  interrupt in NCS 2.6.0?
Thanks!
Parents Reply Children
Related