HI
I am using this sequence functions in my main loop for low current consumption
__SEV(); __WFE(); __WFE();
normally I have 13mA in my application when I am using those functions my current is 7.8 mA
but the velocity process get down in my main loop , using
__SEV(); __WFE(); __WFE();
for (;;)//main loop
{
__SEV(); __WFE(); __WFE();
caida_init();
idle_state_handle();
turnOnLed();
}
how can I to fix that?,
or what can I use to replace it?
is the RTOS a possible solution?
thanks and reagrds
