💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
打开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/>