ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、视频、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
打开hal\_system.h文件,接口列表如下: * 驱动程序初始化: ``` void hal_system_init(void); ``` * 获取芯片ID: ``` void hal_system_get_mcuid(uint32_t *mcuid, hal_system_mcu_type_t type); ``` * 将芯片ID转换为字符串: ``` void hal_system_convert_mcuid_to_string(char *str, const uint32_t *mcuid); ``` * 复位芯片 ``` void hal_system_reset(void); ``` <br/>