2018-03-19 11:54 PM
I am working STM32F303CC MCU. Trying to find sure shot way of soft resetting the device.
Previously I tried with
NVIC_SystemReset()
. It was and miss. On some boards it worked perfectly and on other boards the system will just stop responding.So I have written a small function to soft reset the core, Need feedback from the embedded gurus in the forum
void soft_reset(void)
{__set_PRIMASK(1);
SCB->AIRCR = ((uint32_t)0x05FA0000) | ((uint32_t)0x01);while(1);}#hang #soft-reset ##stm32f4 #stm32f32018-03-20 12:35 AM
On some boards it worked perfectly and on other boards the system will just stop responding.
Why that ?
NVIC_SystemReset() supposedly does the same.
2018-03-20 01:17 AM
Hello
davindersingharora
,by usingNVIC_SystemReset(); function, you can reset MCU with software. It is defined in filecore_cm4.h.
Best regards,
Tilen
2018-03-20 03:12 AM
Previously I tried withNVIC_SystemReset. It was it and miss .
On some boards it worked perfectly and on other boards the system will just stop responding.
Show us how the NRST pin is connected.
JW