9357|15

3

帖子

0

TA的资源

一粒金砂(中级)

楼主
 

SD 卡 SPI 模式初始化过程,带流程图。 [复制链接]

流程图如下,该代码能识别 MMC V3, SD V1.X 和 SD V2.00及其后续版本,其中 SD V2.00及其后续版本又可分为标准容量和大容量版本。
此帖出自stm32/stm8论坛

最新回复

强大  详情 回复 发表于 2014-11-14 15:56

点评

感谢楼主提供的技术资料  详情 回复 发表于 2012-9-24 16:14
点赞 关注
 

回复
举报

3

帖子

0

TA的资源

一粒金砂(中级)

沙发
 

SD SPI 发送命令 API 如下,所有实现代码参考附件。

 

/**
  * @brief  Send 6 bytes command to the SD card.
  * @param  Cmd: The command send to SD card.
  * @param  argument: The command argument.
  * @param  response_type: the SPI command response type.
  * @param  *response: the SPI response returned.
  * @retval The SD Response.
  */
uint8_t ARC_sd_send_command(uint8_t cmd, uint32_t argument, 
                            SD_Response response_type, uint8_t *response)
{
    int32_t i = 0;
    uint8_t crc = 0x01;
    int8_t response_length = 0;
    uint8_t tmp;
    uint8_t Frame[6];

    if (cmd & 0x80)  /* Send a CMD55 prior to ACMD<n> */
    { 
        cmd &= 0x7F;
        ARC_sd_send_command(SD_CMD_APP_CMD, 0, R1, response);
        if (response[0] > 0x1)
        {
            ARC_SD_CS_HIGH();
            ARC_SPI_SendByte(SPI1, SD_DUMMY_BYTE);
            return response[0];
        }
    }
    ARC_SD_CS_LOW();

    if(cmd == SD_CMD_GO_IDLE_STATE)
        crc = 0x95;
   
    if(cmd == SD_CMD_SEND_IF_COND)
        crc = 0x87;
   
    /* All data is sent MSB first, and MSb first */
    /* cmd Format:
    cmd[7:6] : 01
    cmd[5:0] : command */

    Frame[0] = ((cmd & 0x3F) | 0x40); /*!< Construct byte 1 */

    Frame[1] = (uint8_t)(argument >> 24); /*!< Construct byte 2 */

    Frame[2] = (uint8_t)(argument >> 16); /*!< Construct byte 3 */

    Frame[3] = (uint8_t)(argument >> 8); /*!< Construct byte 4 */

    Frame[4] = (uint8_t)(argument); /*!< Construct byte 5 */

    Frame[5] = (uint8_t)(crc); /*!< Construct CRC: byte 6 */

    for (i = 0; i < 6; i++)
    {
        ARC_SPI_SendByte(SPI1, Frame); /*!< Send the Cmd bytes */
    }
   
    switch (response_type)
    {
        case R1:
        case R1B:
            response_length = 1;
            break;
        case R2:
            response_length = 2;
            break;
        case R3:
        case R7:
            response_length = 5;
            break;
        default:
            break;
    }
   
    /* Wait for a response. A response can be recognized by the start bit (a zero) */
    i = 0xFF;
    do
    {
        tmp = ARC_SPI_SendByte(SPI1, SD_DUMMY_BYTE);
    }while ((tmp & 0x80) && --i);

    response[0] = tmp;
   
    /* Just bail if we never got a response */
    if (i == 0)
    {
        ARC_SD_CS_HIGH();
        ARC_SPI_SendByte(SPI1, SD_DUMMY_BYTE);
        return response[0];
    }

    if((response[0] & SD_ILLEGAL_COMMAND) == SD_ILLEGAL_COMMAND)
    {
        ARC_SD_CS_HIGH();
        ARC_SPI_SendByte(SPI1, SD_DUMMY_BYTE);
        return response[0];
    }

    i = 1;
    while(i < response_length)
    {
        tmp = ARC_SPI_SendByte(SPI1, SD_DUMMY_BYTE);
        response = tmp;
        i++;
    }
   
    /* If the response is a "busy" type (R1B), then there's some
     * special handling that needs to be done. The card will
     * output a continuous stream of zeros, so the end of the BUSY
     * state is signaled by any nonzero response. The bus idles
     * high.
     */
    if (response_type == R1B)
    {
        do
        {
            tmp = ARC_SPI_SendByte(SPI1, SD_DUMMY_BYTE);;
        }while (tmp != 0xFF);

        ARC_SPI_SendByte(SPI1, SD_DUMMY_BYTE);
    }
   
    ARC_SD_CS_HIGH();
    ARC_SPI_SendByte(SPI1, SD_DUMMY_BYTE);
    return response[0];
}

ARC_SD.rar

2.12 KB, 下载次数: 122

此帖出自stm32/stm8论坛
 
 

回复

3

帖子

0

TA的资源

一粒金砂(中级)

板凳
 

使用手册。

 

14_SD.pdf

323.53 KB, 下载次数: 266

此帖出自stm32/stm8论坛
 
 

回复

5015

帖子

12

TA的资源

裸片初长成(初级)

4
 
正有一个人在问呢!
谢谢楼主!
此帖出自stm32/stm8论坛
 
 
 

回复

48

帖子

0

TA的资源

一粒金砂(高级)

5
 
谢谢了!
此帖出自stm32/stm8论坛
 
 
 

回复

73

帖子

0

TA的资源

一粒金砂(高级)

6
 
多谢
此帖出自stm32/stm8论坛
 
 
 

回复

21

帖子

0

TA的资源

一粒金砂(中级)

7
 
学习来了
此帖出自stm32/stm8论坛
 
 
 

回复

134

帖子

0

TA的资源

一粒金砂(中级)

8
 
MARk
此帖出自stm32/stm8论坛
 
 
 

回复

234

帖子

0

TA的资源

一粒金砂(高级)

9
 
楼主有sdhc的标准不,整点上来看看呗。
此帖出自stm32/stm8论坛
 
个人签名努力就有不清不楚的收获。
 
 

回复

2

帖子

0

TA的资源

一粒金砂(初级)

10
 
楼主强大
此帖出自stm32/stm8论坛
 
 
 

回复

30

帖子

0

TA的资源

一粒金砂(中级)

11
 
学习来了
此帖出自stm32/stm8论坛
 
 
 

回复

227

帖子

7

TA的资源

一粒金砂(高级)

12
 

回复 楼主 armrunc 的帖子

感谢楼主提供的技术资料
此帖出自stm32/stm8论坛
 
 
 

回复

26

帖子

0

TA的资源

一粒金砂(初级)

13
 
学习了。。谢谢楼主提供资料
此帖出自stm32/stm8论坛
 
 
 

回复

11

帖子

0

TA的资源

一粒金砂(初级)

14
 
谢谢,呵呵
此帖出自stm32/stm8论坛
 
 
 

回复

21

帖子

1

TA的资源

一粒金砂(中级)

15
 
话说SPI操作SD卡的读写速度虽然差不多只能十来K,可对SD卡的兼容性很好。SDIO的老是出问题来着。
此帖出自stm32/stm8论坛
 
 
 

回复

52

帖子

0

TA的资源

一粒金砂(中级)

16
 
强大
此帖出自stm32/stm8论坛
 
 
 

回复
您需要登录后才可以回帖 登录 | 注册

随便看看
查找数据手册?

EEWorld Datasheet 技术支持

相关文章 更多>>
关闭
站长推荐上一条 1/9 下一条

 
EEWorld订阅号

 
EEWorld服务号

 
汽车开发圈

About Us 关于我们 客户服务 联系方式 器件索引 网站地图 最新更新 手机版

站点相关: 国产芯 安防电子 汽车电子 手机便携 工业控制 家用电子 医疗电子 测试测量 网络通信 物联网

北京市海淀区中关村大街18号B座15层1530室 电话:(010)82350740 邮编:100190

电子工程世界版权所有 京B2-20211791 京ICP备10001474号-1 电信业务审批[2006]字第258号函 京公网安备 11010802033920号 Copyright © 2005-2025 EEWORLD.com.cn, Inc. All rights reserved
快速回复 返回顶部 返回列表