2.6实验代码分析FATFS是独立于底层介质的应用函数库,对底层介质的操作都要交给用户去实现,其仅仅是提供了一个函数接口而已,函数为空,要用户添加代码。这几个函数的原型如下,在diskio.c中定义:

  1. / Initialize a Drive /
  2. DSTATUS disk_initialize (
  3. BYTE drv / Physical drive number (0..) /
  4. )

  5. / Return Disk Status /

  6. DSTATUS disk_status (
  7. BYTE drv / Physical drive number (0..) /
  8. )

  9. / Read Sector(s) /

  10. DRESULT disk_read (