Is there a command to reset the MCU?
已解决! 转到解答。
Going off of Erich's tip, I went looking for that register and found this little gem in the LPCopen code:
NVIC_SystemReset()
Sweet.
在原帖中查看解决方案
ARM Cortex M has a way to trigger a reset with writing to the AIRCR register.
See How to Reset an ARM Cortex-M with Software | MCU on Eclipse
I hope this helps,
Erich