⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 landzo

📁 【开源】线性CCD自适应性算法攻略
💻
字号:
/*-----------------------------------------------------------------------
/  Low level disk interface modlue include file
/-----------------------------------------------------------------------*/

#ifndef _DISKIO
#define _DISKIO

#define _READONLY	0	/* 1: Remove write functions */
#define _USE_IOCTL	1	/* 1: Use disk_ioctl fucntion */


#include "common.h"
#include "integer.h"


/* Status of Disk Functions */
typedef BYTE	DSTATUS;

/* Results of Disk Functions */
typedef enum
{
    RES_OK = 0,		/* 0: 成功 */
    RES_ERROR,		/* 1: R/W 错误 */
    RES_WRPRT,		/* 2: 写保护 */
    RES_NOTRDY,		/* 3: 未就绪 */
    RES_PARERR		/* 4: 参数无效 */
} DRESULT;


/* Disk Status Bits (DSTATUS) */
#define STA_NOINIT		0x01	/* 磁盘未初始化   */
#define STA_NODISK		0x02	/* 磁盘未插入    */
#define STA_PROTECT		0x04	/* 写保护        */


/* Generic command (defined for FatFs) */
#define CTRL_SYNC			0	/* 冲刷磁盘缓冲 */
#define GET_SECTOR_COUNT	1	/* 获取磁盘大小 */
#define GET_SECTOR_SIZE		2	/* 获取扇区大小 (for multiple sector size (_MAX_SS >= 1024)) */
#define GET_BLOCK_SIZE		3	/* 获取块大小 (for only f_mkfs()) */
#define CTRL_ERASE_SECTOR	4	/* 强制删除一个扇区 (for only _USE_ERASE) */

/* Generic command */
#define CTRL_POWER			5	/* Get/Set power status */
#define CTRL_LOCK			6	/* Lock/Unlock media removal */
#define CTRL_EJECT			7	/* Eject media */

/* MMC/SDC specific ioctl command */
#define MMC_GET_TYPE		10	/* Get card type */
#define MMC_GET_CSD			11	/* Get CSD */
#define MMC_GET_CID			12	/* Get CID */
#define MMC_GET_OCR			13	/* Get OCR */
#define MMC_GET_SDSTAT		14	/* Get SD status */

/* ATA/CF specific ioctl command */
#define ATA_GET_REV			20	/* Get F/W revision */
#define ATA_GET_MODEL		21	/* Get model name */
#define ATA_GET_SN			22	/* Get serial number */

/* NAND specific ioctl command */
#define NAND_FORMAT			30	/* Create physical format */




/*--------------移植时需要编写的几个底层函数--------------*/
/* Prototypes for disk control functions */
DSTATUS disk_initialize (BYTE);                       //初始化磁盘(只支持磁盘0)
DSTATUS disk_status (BYTE);                           //返回磁盘状态
DRESULT disk_read (BYTE, BYTE *, DWORD, BYTE);        //读磁盘扇区
DRESULT disk_ioctl (BYTE, BYTE, void *);              //磁盘控制
DWORD   get_fattime (void);                           //获取当前时间

#if	_READONLY == 0
DRESULT disk_write (BYTE, const BYTE *, DWORD, BYTE); //写磁盘扇区
#endif


#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -