nRF52 periodically waking up, power consumption, zephyr, nrf connect sdk

Currently, I'm facing a problem, that a custom board somewhat doesn't work. The main only consists of

#include <nrf.h>

void main(void) {
  while (1) {
    __WFE();
    __SEV();
    __WFE();
  }
}

The problem is, that the cpu seems to wake up every (about) 500us. The current measurement shows peaks every 500us with about 2mA and then back again to nearly 0.

If this is due to the custom hardware, I cannot see why because, there is nothing particular on the pcb. Which component could be the reason for the periodically wake up?

Parents Reply Children
No Data
Related