Unable to disable GPIOTE for nRF Connect SDK 2.6.1

Hi, 

Recently I upgraded to nRF Connect SDK 2.6.1 and I was required to enable the GPIOTE in order to build properly. Doing this has significantly increased (nearly doubled) the total current consumption at runtime. How can I disable this peripheral now? I am unable to do so now using the overlay file.

Old: 

&gpiote {
    status = "disabled";
};
New:
&gpiote {
    status = "okay";
};

Thank you,

Parents Reply
  • This used to work in the older 2.4.2. I had the following in all of my .overlay files and had much less current consumption with full functionality with all my GPIO interrupts. Now I am unable to achieve the same current consumption because I am forced to keep the gpiote enabled in all my device tree files. I guess, for now I am stuck on 2.4.2.

    &gpiote {
    	status = "disabled";
    };

Children
No Data
Related