2.6实验代码分析FATFS是独立于底层介质的应用函数库,对底层介质的操作都要交给用户去实现,其仅仅是提供了一个函数接口而已,函数为空,要用户添加代码。这几个函数的原型如下,在diskio.c中定义:
- / Initialize a Drive /
- DSTATUS disk_initialize (
- BYTE drv / Physical drive number (0..) /
-
)
-
/ Return Disk Status /
- DSTATUS disk_status (
- BYTE drv / Physical drive number (0..) /
-
)
-
/ Read Sector(s) /
- DRESULT disk_read (
暂无评论