#include "ff.h"
#include "diskio.h"
/* 扩展字符范围 */
#define _DF1S 0x81
#define _DF1E 0xFE
#define _DS1S 0x40
#define _DS1E 0x7E
#define _DS2S 0x80
#define _DS2E 0xFE
/* 字符类型相关宏定义 */
#define IsUpper(c) (((c)>='A')&&((c)<='Z'))
#define IsLower(c) (((c)>='a')&&((c)<='z'))
#define IsDigit(c) (((c)>='0')&&((c)<='9'))
/* 是否是扩展字符 */
#define IsDBCS1(c) ((BYTE)(c) >= _DF1S && (BYTE)(c) <= _DF1E)
#define IsDBCS2(c) (((BYTE)(c) >= _DS1S && (BYTE)(c) <= _DS1E) || ((BYTE)(c) >= _DS2S && (BYTE)(c) <= _DS2E))
/* 文件属性位 */
#define AM_VOL 0x08 /* 卷标 */
#define AM_LFN 0x0F /* 长文件名
FatFs源码分析
最新推荐文章于 2024-03-17 13:34:44 发布