sddma.h

来自「SD卡驱动程序。周立功单片机公司开发板提供的标准例程。」· C头文件 代码 · 共 22 行

H
22
字号


#ifndef __DMA_H 
#define __DMA_H

#define DMA_SRC			0x7FD00000		/* This is the area original data is stored
										or data to be written to the SD/MMC card. */
#define DMA_DST			0x7FD01000		/* This is the area, after writing to the SD/MMC,
										data read from the SD/MMC card. */
#define DMA_MCIFIFO		0xE008C080
#define DMA_SIZE		SD_BLOCKSIZE	/* DMA_SIZE is the same BLOCK_LENGTH defined in mci.h */

/* DMA mode */
#define M2M				0x00
#define M2P				0x01
#define P2M				0x02
#define P2P				0x03

extern INT32U DMA_Init(INT32U ChannelNum, INT32U DMAMode);

#endif /* end __DMA_H */

⌨️ 快捷键说明

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