Hi,
I'm trying to reduce the power consumption of my Matter Temperature sensor code.
I'm averaging around 90µA of consumption, but I'm confident that can be reduced.
I have a timer setup that, when it fires, every 5 seconds, it will take two ADC readings. This looks like:

When my code is idle (before and after these three spikes), it's still drawing an average of 28µA. Using the PPKII, I've zoomed in and you can see the saw tooth shape.

I have disabled the following peripherals on the board
&uart20 {
status = "disabled";
};
&uart30 {
status = "disabled";
};
&mx25r64 {
status = "disabled";
};
&pwm20 {
status = "disabled";
};
&wdt31 {
status = "okay";
};
I have also setup a few power saving settings under the prj.conf file.
CONFIG_PM_DEVICE=y CONFIG_OPENTHREAD_MTD=y CONFIG_OPENTHREAD_NORDIC_LIBRARY_MTD=y CONFIG_CHIP_ENABLE_ICD_SUPPORT=y CONFIG_CHIP_ICD_LIT_SUPPORT=y CONFIG_RAM_POWER_DOWN_LIBRARY=y CONFIG_LOG=n CONFIG_CONSOLE=n CONFIG_SERIAL=n
This project is based on the nrf/samples/matter/template sample. It is compiled using the "internal" overlay (which disables the external flash)
Could you help me identify what is using that 28µA??