How to reach system off current of 0.8uA with nRF54L15

Hi

I have tried the system off example with the nRF54L15dk. The current with enabled GRTC is about 3µA. Do you have an example application to reach the specified 0.8µA?

Kind regards

Samuel

Parents Reply
  • Hi

    I think the issue is RAM rentention. It need to be turned off the reach the numbers in the datasheet. I will test it myself tomorrow and get back to you. 

    It can be turned off by adding the following to main

    NRF_MEMCONF->POWER[0].RET = 0;
    NRF_MEMCONF->POWER[1].RET = 0;
    NRF_MEMCONF->POWER[0].RET2 = 0;
    NRF_MEMCONF->POWER[1].RET2 = 0;

    Update: This should fix the issue

    Regards

    Runar

Children
Related