增加了 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

@@ -0,0 +1,15 @@
#ifndef APPINFO_MODEL_H
#define APPINFO_MODEL_H
#include "types.h"
typedef struct appinfo_model_t appinfo_model_t;
struct appinfo_model_t
{
uint8_t topName[32];
};
void AppInfoModel_Init(appinfo_model_t *model);
#endif