KT24-1110_65E-HA-651B/apps/common/dev_manager/dev_reg.h
2024-11-10 18:44:17 +08:00

22 lines
502 B
C
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#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__