⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 fat32_base.h

📁 万龙开发板的原理图和pcb图
💻 H
字号:
#ifndef FAT32_BASE_H
#define FAT32_BASE_H
//-----------------------------------------------------------------------------
// Globals
//-----------------------------------------------------------------------------
typedef struct {
	   // Filesystem globals
	   UI8 SectorsPerCluster;
	   UI32 cluster_begin_lba;
	   UI32 RootDir_First_Cluster;
	   UI32 fat_begin_lba;
          UI32 filenumber;
	   //Long File Name Structure (max 91 LFN length)
	   UI8 String[7][13];
	   UI8 no_of_strings;
} FAT32_t;

extern FAT32_t  FAT32;
//-----------------------------------------------------------------------------
// Prototypes
//-----------------------------------------------------------------------------
UI32 FAT32_FindLBABegin(void);
UI32 FAT32_LBAofCluster(UI32 Cluster_Number);
void FAT32_FindFAT32Details(void);
UI32 FAT32_FindNextCluster(UI32 Current_Cluster);


#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -