This post is older than 2 years and might not be relevant anymore
More Info: Consider searching for newer posts

Sleep specific numbers for nRF52833

Hi Team,
We wanted to verify Sleep current numbers for nRF52833 SoC based custom development kit.
Is there any readily available firmware to verify these numbers?
Thanks,
venkatesh
Parents
  • We don't have FW for all of the mentioned numbers.

    the ble_app_pwr_profiler example starts out in system OFF mode (IOFF_RAMOFF_RESET) and after pushing button 1 the sleep current between the BLE events will equal the ION_RAMON_RTC.

    Other than that the system ON idle current can be easily checked by just entering a __WFE() loop in main, without initializing anything. You can start with the peripheral/blinky example in the SDK

    int main(void){
      for(;;){
        __WFE();
      }
    }

    Any specific numbers you are interested in?

Reply
  • We don't have FW for all of the mentioned numbers.

    the ble_app_pwr_profiler example starts out in system OFF mode (IOFF_RAMOFF_RESET) and after pushing button 1 the sleep current between the BLE events will equal the ION_RAMON_RTC.

    Other than that the system ON idle current can be easily checked by just entering a __WFE() loop in main, without initializing anything. You can start with the peripheral/blinky example in the SDK

    int main(void){
      for(;;){
        __WFE();
      }
    }

    Any specific numbers you are interested in?

Children
Related