Posted on May 13, 2016 at 05:20i want to use watchdog to reset system when mcu loop, but after using NVIC_SystemReset(), all ram values are init again, i want to keep ram values same before SystemReset,how do that????
Posted on May 16, 2016 at 03:30thanks for all; I done that;I use __no_init __root before variables ( ex: __no_init __root uint8_t tx[10]; )variables will not init again if I reset system. they keep values before reset.