?? apfs_fat32_disk.c
字號(hào):
//-----------------------------------------------------------------------------
// This file is part of AP.FS
// AP.FS is a FAT32 file system face to the embedded system,It's target is to
// support the portable storage device such as SD Card,TF Card or USB Disc 's
// file system.
// please login www.another-prj.com to get more details.
// caiyuqing
// 2008-1-8
//-----------------------------------------------------------------------------
#include "apfs_fat32_disk.h"
//-----------------------------------------------------------------------------
// FAT_ReadSector: Read a sector from disk
//-----------------------------------------------------------------------------
BOOL apfs_fat32_read_sector(UINT32 sector, BYTE *buffer)
{
return ReadDiskSector(DISK_ID, sector, 1, buffer);
}
//-----------------------------------------------------------------------------
// FAT_WriteSector: Write a sector to disk
//-----------------------------------------------------------------------------
BOOL apfs_fat32_write_sector(UINT32 sector, BYTE *buffer)
{
return WriteDiskSector(DISK_ID, sector, 1, buffer);
}
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -