2023-08-10 02:10 PM
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!
Solved! Go to Solution.
2023-08-10 04:53 PM
Calling HAL_NVIC_SystemReset() will reset the system.
2023-08-10 04:53 PM
Calling HAL_NVIC_SystemReset() will reset the system.
2023-08-14 08:38 AM
Hi TDK, thanks for your reply, it worked like a charm!