cancel
Showing results for 
Search instead for 
Did you mean: 

How to reboot a STM32WL from code?

NMeno
Associate II

Hi, I'm using a STM32WLE5CCU micro with FW_WL V1.3.0 library. I want to implement a feature that receives a downlink command from the Network Server and reboot the entire system like pushing a reset button will do.

Once the command is received, is there any local function I can use for this purpose?

Any example of implementation?

Thank you!

1 ACCEPTED SOLUTION

Accepted Solutions
TDK
Guru

Calling HAL_NVIC_SystemReset() will reset the system.

If you feel a post has answered your question, please click "Accept as Solution".

View solution in original post

2 REPLIES 2
TDK
Guru

Calling HAL_NVIC_SystemReset() will reset the system.

If you feel a post has answered your question, please click "Accept as Solution".
NMeno
Associate II

Hi TDK, thanks for your reply, it worked like a charm!