-- CHANGED -- To stop compilation errors I changed all *.c files to *.cpp. I have not tested this to see if it actually works. --- Updated FAT File System driver. Features include: * Updated to R0.09 - Sep 06, 2011 [[http://elm-chan.org/fsw/ff/00index_e.html]] * Bug fixes from Stéphane Bausseron ** [[http://mbed.org/forum/mbed/topic/2273/?page=1#comment-11521]] ** [[http://mbed.org/forum/mbed/topic/2307]] * Long filename support enabled and exposed through mbed SDK.

Dependents:   WAVEplayer_fix

Fork of FatFileSystem by Adam Green

diskio.cpp

Committer:
bridadan
Date:
2015-02-09
Revision:
1:8263aa1f626a
Parent:
diskio.c@ 0:6ceefe1c53e4

File content as of revision 1:8263aa1f626a:

/*-----------------------------------------------------------------------*/
/* Low level disk I/O module skeleton for FatFs     (C)ChaN, 2007        */
/*-----------------------------------------------------------------------*/
/* This is a stub disk I/O module that acts as front end of the existing */
/* disk I/O modules and attach it to FatFs module with common interface. */
/*-----------------------------------------------------------------------*/

#include "diskio.h"
#include <stdio.h>
#include <string.h>
#include "FATFileSystem.h"

#include "mbed.h"

DSTATUS disk_initialize (
	BYTE drv				/* Physical drive nmuber (0..) */
) 
{
	FFSDEBUG("disk_initialize on drv [%d]\n", drv);
	return (DSTATUS)FATFileSystem::_ffs[drv]->disk_initialize();
}

DSTATUS disk_status (
	BYTE drv		/* Physical drive nmuber (0..) */
) 
{
	FFSDEBUG("disk_status on drv [%d]\n", drv);
	return (DSTATUS)FATFileSystem::_ffs[drv]->disk_status();
}

DRESULT disk_read (
	BYTE drv,		/* Physical drive nmuber (0..) */
	BYTE *buff,		/* Data buffer to store read data */
	DWORD sector,	/* Sector address (LBA) */
	BYTE count		/* Number of sectors to read (1..255) */
)
{
	FFSDEBUG("disk_read(sector %d, count %d) on drv [%d]\n", sector, count, drv);
	for(DWORD s=sector; s<sector+count; s++) {
		FFSDEBUG(" disk_read(sector %d)\n", s);
		int res = FATFileSystem::_ffs[drv]->disk_read((char*)buff, s);
		if(res) {
			return RES_PARERR;
		}
		buff += 512;
	}
	return RES_OK;
}

#if _READONLY == 0
DRESULT disk_write (
	BYTE drv,			/* Physical drive nmuber (0..) */
	const BYTE *buff,	/* Data to be written */
	DWORD sector,		/* Sector address (LBA) */
	BYTE count			/* Number of sectors to write (1..255) */
)
{
	FFSDEBUG("disk_write(sector %d, count %d) on drv [%d]\n", sector, count, drv);
	for(DWORD s=sector; s<sector+count; s++) {
		FFSDEBUG(" disk_write(sector %d)\n", s);
		int res = FATFileSystem::_ffs[drv]->disk_write((char*)buff, s);
		if(res) {
			return RES_PARERR;
		}
		buff += 512;
	}
	return RES_OK;
}
#endif /* _READONLY */

DRESULT disk_ioctl (
	BYTE drv,		/* Physical drive nmuber (0..) */
	BYTE ctrl,		/* Control code */
	void *buff		/* Buffer to send/receive control data */
)
{
	FFSDEBUG("disk_ioctl(%d)\n", ctrl);
	switch(ctrl) {
		case CTRL_SYNC:
			if(FATFileSystem::_ffs[drv] == NULL) {
				return RES_NOTRDY;
			} else if(FATFileSystem::_ffs[drv]->disk_sync()) {
				return RES_ERROR;
			} 
			return RES_OK;
		case GET_SECTOR_COUNT:
			if(FATFileSystem::_ffs[drv] == NULL) {
				return RES_NOTRDY;
			} else {
				int res = FATFileSystem::_ffs[drv]->disk_sectors();
				if(res > 0) {
					*((DWORD*)buff) = res; // minimum allowed
					return RES_OK;
				} else {
					return RES_ERROR;
				}
			}
		case GET_BLOCK_SIZE:
			*((DWORD*)buff) = 1; // default when not known
			return RES_OK;

	}
	return RES_PARERR;
}