// // Created by misaki on 2025/8/28. // /** * @brief 杂项工具类,存放一些工具函数 */ #pragma once #ifdef __cplusplus extern "C" { #endif // 打印系统内存使用情况 void print_sys_memory(void); // 创建一个定时任务,每x秒打印一次系统内存使用情况 void create_print_sys_memory_task(); #ifdef __cplusplus } #endif