- 创建了项目的基本目录结构和文件 - 添加了 CMakeLists.txt 和 Makefile 构建配置 - 创建了 main.c 文件,实现了简单的 LED 闪烁和按键检测功能 - 集成了 SEGGER RTT 库 - 添加了 .gitignore 文件,排除了不必要的生成文件
13 lines
202 B
C
13 lines
202 B
C
#ifndef __GE_RESOURCE_H__
|
|
#define __GE_RESOURCE_H__
|
|
|
|
struct ge_resource;
|
|
typedef struct ge_resource ge_resource_t;
|
|
|
|
struct ge_resource {
|
|
int type;
|
|
void* context;
|
|
};
|
|
|
|
#endif // __GE_RESOURCE_H__
|