cc1310有没有什么方法可以实现软件重启
时间:12-23
整理:3721RD
点击:
看门狗好像可以做到,还有其他方法吗?
可以使用SysCtrlSystemReset();
注意需要添加#include <driverlib/sys_ctrl.h>
you can use SysCtrlSystemReset() from low-level DriverLib to achieve a hard reset:
#include <driverlib/sys_ctrl.h> SysCtrlSystemReset();
Best regards
也可以寄存器操作系统复位的
非常感谢!
感谢回答!