Regrading Sleep current in nrf52840

Hi Team,

we have one doubt regarding sleep current when we try to measure with power analyzer(nrf52840 EVM Board) .we got 5.23 micro amps instead of 2.35 micro amps.

we used this example code D:\santhosh\Penny\nrf52840\nrf-NRF52840\nRF5_SDK_17.1.0_ddde560\nRF5_SDK_17.1.0_ddde560\examples\peripheral\ram_retention for current measurement can you help regarding this so it will be so helpful for our team

Parents Reply
  • Hello Santhosh,

    The example code will be like this - 

    void main(void) {

    for(;;) {

    void main(void){ for(;;){

    __WFE();

    }

    }

    When we are talking about RAM retention, we mean that the RAM is retained when the chip is in System OFF mode. But when the system is ON, all RAM is always retained (powered on) unless explicitly power down in code. So basically the above code put the CPU in sleep mode (WFE = Wait For Event). 

    Best Regardds,

    Kazi Afroza Sultana

Children
No Data
Related