I am using Msp430 for application. I am using Timer_A for timer interrupt operation. the clk ssytem is SMCLK 8Mhz clk.
I want to use watchdog timer just to serve the purpose of watchdog. i.e counting and resets after certain period. but i dont want system reset at the time.
I use command
WDTCTL = WDTPW + WDTCNTCL;
in forover loop of my code.
i stop watchdog while going in LPM with
WDTCTL = WDTPW + WDTHOLD;
still i experience a reset in the system at some point.
please let me know how can i use watchdog as watchdog means it does system reset only if any fault occurs.