2008-12-28 14:35:37 +01:00
|
|
|
/*-----------------------------------------------------------------------
|
2009-04-09 14:20:12 +02:00
|
|
|
/ Low level disk interface modlue include file R0.07 (C)ChaN, 2009
|
2009-04-13 02:59:01 +02:00
|
|
|
/-----------------------------------------------------------------------
|
|
|
|
/ FatFs module is an open source project to implement FAT file system to small
|
|
|
|
/ embedded systems. It is opened for education, research and development under
|
|
|
|
/ license policy of following trems.
|
|
|
|
/
|
|
|
|
/ Copyright (C) 2009, ChaN, all right reserved.
|
|
|
|
/
|
|
|
|
/ * The FatFs module is a free software and there is no warranty.
|
|
|
|
/ * You can use, modify and/or redistribute it for personal, non-profit or
|
|
|
|
/ commercial use without any restriction under your responsibility.
|
|
|
|
/ * Redistributions of source code must retain the above copyright notice.
|
|
|
|
/
|
|
|
|
/----------------------------------------------------------------------------*/
|
|
|
|
// original source: http://elm-chan.org/fsw/ff/00index_e.html
|
2008-12-28 14:35:37 +01:00
|
|
|
|
|
|
|
#ifndef _DISKIO
|
|
|
|
|
|
|
|
#define _READONLY 1 /* 1: Read-only mode */
|
2009-04-13 15:42:46 +02:00
|
|
|
#define _USE_IOCTL 0
|
2008-12-28 14:35:37 +01:00
|
|
|
|
|
|
|
#include "integer.h"
|
|
|
|
|
|
|
|
/* Status of Disk Functions */
|
|
|
|
typedef BYTE DSTATUS;
|
|
|
|
|
|
|
|
/* Results of Disk Functions */
|
|
|
|
typedef enum {
|
|
|
|
RES_OK = 0, /* 0: Successful */
|
|
|
|
RES_ERROR, /* 1: R/W Error */
|
|
|
|
RES_WRPRT, /* 2: Write Protected */
|
|
|
|
RES_NOTRDY, /* 3: Not Ready */
|
|
|
|
RES_PARERR /* 4: Invalid Parameter */
|
|
|
|
} DRESULT;
|
|
|
|
|
|
|
|
|
|
|
|
/*---------------------------------------*/
|
|
|
|
/* Prototypes for disk control functions */
|
|
|
|
|
|
|
|
DSTATUS disk_initialize (BYTE);
|
|
|
|
DSTATUS disk_status (BYTE);
|
|
|
|
DRESULT disk_read (BYTE, BYTE*, DWORD, BYTE);
|
|
|
|
#if _READONLY == 0
|
|
|
|
DRESULT disk_write (BYTE, const BYTE*, DWORD, BYTE);
|
|
|
|
#endif
|
2009-04-13 02:59:01 +02:00
|
|
|
#if _USE_IOCTL == 1
|
2008-12-28 14:35:37 +01:00
|
|
|
DRESULT disk_ioctl (BYTE, BYTE, void*);
|
2009-04-13 02:59:01 +02:00
|
|
|
#endif
|
2008-12-28 14:35:37 +01:00
|
|
|
|
|
|
|
|
|
|
|
/* Disk Status Bits (DSTATUS) */
|
|
|
|
|
|
|
|
#define STA_NOINIT 0x01 /* Drive not initialized */
|
|
|
|
#define STA_NODISK 0x02 /* No medium in the drive */
|
|
|
|
#define STA_PROTECT 0x04 /* Write protected */
|
|
|
|
|
|
|
|
|
2009-04-13 02:59:01 +02:00
|
|
|
#if _USE_IOCTL == 1
|
|
|
|
/* Command code for disk_ioctl() */
|
|
|
|
#define CTRL_SYNC 0 /* Mandatory for write functions */
|
|
|
|
#endif
|
2008-12-28 14:35:37 +01:00
|
|
|
|
|
|
|
#define _DISKIO
|
|
|
|
#endif
|