Dear all,
I have a problem to reactivate ADC after the chip goes into LPM4. I have initialized the system and adc to measure voltage inputs and the process works fine without any problem. When the system goes into LPM4 I turn everything off. When I exit LPM4 I initilize the system again with the same initialization functions. However, the adc doesn't work, other system's components work perfect. Any idea!!
Please note that I use CC430 as a µC
Code Example of initialization:
void systemInitialization(void){
initClock();
IO_initialization();
#ifdef DEBUGING
UART_initialization();
#endif
ADC_initialization();
initTimer();
}