Hello,nrf_pwr_mgmt
I am doing basic BLE advertising on the nRF52840 DK board and using nRF5 SK 17.0.2. I can see the current consumption is ~50uA but after using nrf_pwr_mgmt I don't see any change in current consumption.
I am initializing the nrf_pwr_mgmt_init() in main and in loop I am executing nrf_pwr_mgmt_run() function.
power_management_init();
ble_stack_init();
gap_params_init();
advertising_init();
advertising_start();
for (;;)
{
idle_state_handle();
}
Am I doing anything wrong? Is the above code is enough to achieve low power mode?
Thanks in advance.
Regards,
Neeraj Dhekale