KT24-1110_65E-HA-651B/apps/common/dev_manager/dev_reg.h

22 lines
502 B
C
Raw Permalink Normal View History

2024-11-10 10:44:17 +00:00
#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__