增加了 APPinfo 页面的基础显示功能

This commit is contained in:
2026-04-02 17:13:24 +08:00
parent e3435cd3dd
commit df94630210
32 changed files with 2031 additions and 1439 deletions

View File

@@ -30,5 +30,12 @@ typedef int (*FUNCPTR) ( );
#define ASSERT(expr) ((void)0) // 发布模式禁用断言
#endif
#ifdef DEBUG
#define LOG(format, ...) \
printf(format, ##__VA_ARGS__)
#else
#define LOG(format, ...) ((void)0) // 发布模式禁用断言
#endif
#endif