日本黄色一级经典视频|伊人久久精品视频|亚洲黄色色周成人视频九九九|av免费网址黄色小短片|黄色Av无码亚洲成年人|亚洲1区2区3区无码|真人黄片免费观看|无码一级小说欧美日免费三级|日韩中文字幕91在线看|精品久久久无码中文字幕边打电话

當前位置:首頁 > 單片機 > 單片機
[導讀] SD卡接口程序/******************************************//* SD Code for M32L *//* By pasyong *//* 2006-4 *//* Base ICC6.31A *//************************************************************/

SD卡接口程序/******************************************/
/* SD Code for M32L */

/* By pasyong */
/* 2006-4 */
/* Base ICC6.31A */
/************************************************************/
#include
#include
#include "1011.h"
#define uchar unsigned char
#define uint unsigned int
#define MMC_CS_PIN BIT(4) //PORTB.4
#define MMC_PORT PORTB


uchar reading=0,a=0,pointer=0;
void sd_port_init()
{
MMC_PORT =MMC_CS_PIN;
}
uchar BUFFER[512]; //扇區(qū)緩沖區(qū)
uint i=0;
void delay_nus(uint n)
{
unsigned char b;
for (b = 1; b ;
}
//****************************************************************************
//Send a Command to MMC/SD-Card
//Return: the second byte of response register of MMC/SD-Card
//****************************************************************************
uchar SD_Write_Command(uchar cmd,unsigned long arg)
{
uchar tmp;
uchar retry=0;

//MMC_PORT =MMC_CS_PIN; //SD卡關(guān)閉
//send 8 CLOCk Impulse
Write_Byte_SPI(0xFF);

//set MMC_Chip_Select to low (MMC/SD-Cardactive)
MMC_PORT&=~MMC_CS_PIN; //SD卡使能

Write_Byte_SPI(cmd 0x40); //送頭命令
Write_Byte_SPI(arg>>24);
Write_Byte_SPI(arg>>16); //send 6 Byte Command to MMC/SD-Card
Write_Byte_SPI(arg>>8);
Write_Byte_SPI(arg&0xff);
Write_Byte_SPI(0x95); //僅僅對RESET有效的CRC效驗碼

//get 8 bit response
//Read_Byte_MMC(); //read the first byte,ignore it.
do
{ //Only last 8 bit is used here.Read it out.
tmp = Read_Byte_SPI();
retry++;
}
while((tmp==0xff)&&(retry<100)); //當沒有收到有效的命令的時候

if(reading==0)
MMC_PORT =MMC_CS_PIN; //MMC_CS_PIN=1;
else MMC_PORT&=~MMC_CS_PIN; //MMC_CS_PIN=0;
return(tmp);
}
//****************************************************************************
//SD卡初始化(SPI-MODE)
//****************************************************************************
uchar SD_Init(void)
{
uchar retry,temp;
uchar i;
MMC_PORT&=~MMC_CS_PIN; //SD卡使能

delay_nus(250); //Wait MMC/SD ready...
for (i=0;i<0x0f;i++)
{
Write_Byte_SPI(0xff); //send 74 clock at least!!!
}
//Send Command CMD0 to MMC/SD Card
retry=0;

do
{ //retry 200 times to send CMD0 command
temp=SD_Write_Command(0,0);
retry++;
if(retry==100)
{
;//CMD0 Error!
}
}
while(temp!=1);

//Send Command CMD1 to MMC/SD-Card
retry=0;
do
{ //retry 100 times to send CMD1 command
temp=SD_Write_Command(1,0);
retry++;
if(retry==100)
{
;
}
}
while(temp!=0);
retry=0;
SD_Write_Command(16,512); //設(shè)置一次讀寫B(tài)LOCK的長度為512個字節(jié)

MMC_PORT =MMC_CS_PIN; //MMC_CS_PIN=1; //set MMC_Chip_Select to high
return(0); //All commands have been taken.
}
//****************************************************************************
//從SD卡讀一個扇區(qū) Return 0 if no Error.
//****************************************************************************
uchar SD_Read_Block(unsigned long address)
{
uchar temp=0;uint i=0;
reading=1;
temp=SD_Write_Command(17,address); //讀出RESPONSE
while (Read_Byte_SPI()!= 0xfe)
{;} //直到讀取到了數(shù)據(jù)的開始頭0XFE,才繼續(xù)
for(i=0; i<512; i++)
{
BUFFER[i]=Read_Byte_SPI();
}
Read_Byte_SPI();//CRC - Byte
Read_Byte_SPI();//CRC - Byte
reading=0;
MMC_PORT =MMC_CS_PIN; //關(guān)閉SD卡
return(temp);
}


本站聲明: 本文章由作者或相關(guān)機構(gòu)授權(quán)發(fā)布,目的在于傳遞更多信息,并不代表本站贊同其觀點,本站亦不保證或承諾內(nèi)容真實性等。需要轉(zhuǎn)載請聯(lián)系該專欄作者,如若文章內(nèi)容侵犯您的權(quán)益,請及時聯(lián)系本站刪除( 郵箱:macysun@21ic.com )。
換一批
延伸閱讀
關(guān)閉