feat: Add rfid feature and .gitignore file

This commit is contained in:
lmx
2025-11-28 16:25:35 +08:00
parent 818e8c3778
commit ade4b0a1f8
1244 changed files with 342105 additions and 0 deletions

View File

@ -0,0 +1,21 @@
#ifndef __DEV_REG_H__
#define __DEV_REG_H__
#include "system/includes.h"
#include "typedef.h"
///设备参数控制句柄
struct __dev_reg {
char *logo;//设备选择使用的逻辑盘符
char *name;//设备名称,底层匹配设备节点使用
char *storage_path;//设备路径文件系统mount时使用
char *root_path;//设备文件系统根目录
char *fs_type;//文件系统类型,如fat, sdfile
};
extern const struct __dev_reg dev_reg[];
#endif//__DEV_REG_H__