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.