I'm measuring the power consumption of the BLE Beacon example and got the graph below for one beacon transmission. I'm wondering what those smaller peaks are with 1ms period? Does the softdevice wake up for something every 1ms? Is there a way to avoid this?
My code is simply just the following:
int main(void)
{
power_management_init();
ble_stack_init();
advertising_init();
advertising_start();
for (;; )
{
nrf_pwr_mgmt_run();
}
}
Thanks for any hints!
![]()
