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

Power consumption of 180 uA during low power System on.

when I am waiting for an event the current consumption is becoming ~180uA continuously.

I am waiting for an event using the following function

void deep_sleep(void)
{
__SEV();
__WFE();
__WFE();

}

there are 2 places where I call this function, one causing a continuous current of ~180uA and another is 3 uA.

i wanted to know what are the possible causes for 180 uA of current.

Related