Hi,
I'm looking for some guidance.
I'm using a HolyIoT nRF54L15 dev kit to evaluate their nRF54L15 module.
I am currently looking power consumption.
I have tried the boards/nordic/system_off sample on my official nRF54L15 dev kit and it reaches the expected 1µA.
When I try the same sample on the HolyIoT board, it consumes about 2mA, which tells me it's not going to sleep!
I've reached out to Holyiot Technology asking them for a sample project, but figured I could try and figure this out myself in the mean time.
Can you offer me any guidance on what steps to try?
I've tried a custom overlay
&uart20 {
status = "disabled";
};
&uart30 {
status = "disabled";
};
&pwm20 {
status = "disabled";
};
&spi00 {
status = "disabled";
};
&adc {
status = "disabled";
};
and I've also tried turning off a bunch of stuff. This is my prj.conf file
CONFIG_PM_DEVICE=y CONFIG_GPIO=n CONFIG_CRC=n CONFIG_POWEROFF=y CONFIG_HWINFO=n CONFIG_GPIO_WAKEUP_ENABLE=n CONFIG_SERIAL=n CONFIG_CONSOLE=n CONFIG_USE_SEGGER_RTT=n CONFIG_LOG=n CONFIG_PM_CPU_OPS=y CONFIG_PM_DEVICE_RUNTIME=y CONFIG_PM_DEVICE_POWER_DOMAIN=y # From Power Down sample CONFIG_USB_DEVICE_STACK=n CONFIG_DEBUG_OPTIMIZATIONS=n CONFIG_DEBUG_THREAD_INFO=n CONFIG_RAM_POWER_DOWN_LIBRARY=y CONFIG_LTO=y CONFIG_ISR_TABLES_LOCAL_DECLARATION=y
Nothing happens. Consumption measured by my PPK II sits around 2mA.