Wio Terminal reset command

I wanted to implement a command to reset the Wio Terminal programmatically. When I use ESP the command to reset it is ESP.restart (). Is there an equivalent command for Wio Terminal?
I will be grateful for the answer

I found this help on the Arduino forum and there is an NVIC_SystemReset () command; I have tested it on Wio Terminal and it works very well. Place here the references for the community.

https://forum.arduino.cc/index.php?topic=379950.0

The NVIC_SystemReset() function is briefly mentioned together with other CMSIS functions for NVIC control on page 4-7 of the “Cortex-M0+ Devices Generic User Guide”. It’s possible to download it from the ARM Information Center: http://infocenter.arm.com/help/index.jsp?topic=/com.arm.doc.ddi0484c/index.html

That’s great. You found a solution.