cancel
Showing results for 
Search instead for 
Did you mean: 

programmatic reboot of STM32?

David Pekin
Senior
Posted on February 21, 2018 at 18:05

Hello,

Is there a simple way for the program to force a reboot of the STM32 device?  Can I programatically pull the line associated with the reset button low or is there some other way to do a hard reset on the board?

Thanks,

1 ACCEPTED SOLUTION

Accepted Solutions
Posted on February 21, 2018 at 18:12

    NVIC_SystemReset();

JW

View solution in original post

2 REPLIES 2
Posted on February 21, 2018 at 18:12

    NVIC_SystemReset();

JW

Posted on February 21, 2018 at 19:40

Thanks!