Hello,
I have a problem to make a software reset on a MSP430F5510. I'm working with CCS 5.
To force my controller to reset , I use the following line:
PMMCTL0|= PMMSWBOR;
The program restarts to the begining, but it doesn't reset the peripherals to their initial values. For exemple, my ADC10 registers keep the values before the reset.
With a reset-button on RST/NMI pin it works, and with the software reset in CCS debugger it restart and reset all values to...
Is there a way to make a software reset that initialize the peripherals? I've tried with a Watchdog event and a POR but the result is the same..
Thanks in advance!