打印

FATFS文件系统的SD卡移植

[复制链接]
455|0
手机看帖
扫描二维码
随时随地手机跟帖
跳转到指定楼层
楼主
没名字的人|  楼主 | 2020-4-23 07:07 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
FATFS文件系统的底层接口,disk_write中添加SD卡扇区写操作时为什么没有像spi flash移植FATFS那样先进行擦除操作???

spi flash的disk_write
DRESULT TM_FATFS_FLASH_SPI_disk_write(BYTE *buff, DWORD sector, UINT count)
{
        uint32_t write_addr;  
        FLASH_DEBUG_FUNC();
        sector+=512;
        write_addr = sector<<12;   
        SPI_FLASH_SectorErase(write_addr);//进行擦除
        SPI_FLASH_BufferWrite(buff,write_addr,4096);
        return RES_OK;
}


SD的disk_write
DRESULT TM_FATFS_SD_SDIO_disk_write(BYTE *buff, DWORD sector, UINT count)
{
        SD_Error Status = SD_OK;

        if (!TM_FATFS_SDIO_WriteEnabled()) {
                return RES_WRPRT;
        }

        if (SD_Detect() != SD_PRESENT) {
                return RES_NOTRDY;
        }

        if ((DWORD)buff & 3) {
                DRESULT res = RES_OK;
                DWORD scratch[BLOCK_SIZE / 4];

                while (count--) {
                        memcpy(scratch, buff, BLOCK_SIZE);
                        res = TM_FATFS_SD_SDIO_disk_write((void *)scratch, sector++, 1);

                        if (res != RES_OK) {
                                break;
                        }

                        buff += BLOCK_SIZE;
                }

                return(res);
        }

        Status = SD_WriteMultiBlocks((uint8_t *)buff, (uint64_t)sector << 9, BLOCK_SIZE, count); // 4GB Compliant

        if (Status == SD_OK) {
                SDTransferState State;

                Status = SD_WaitWriteOperation(); // Check if the Transfer is finished

                while ((State = SD_GetStatus()) == SD_TRANSFER_BUSY); // BUSY, OK (DONE), ERROR (FAIL)

                if ((State == SD_TRANSFER_ERROR) || (Status != SD_OK)) {
                        return RES_ERROR;
                } else {
                        return RES_OK;
                }
        } else {
                return RES_ERROR;
        }
}

使用特权

评论回复

相关帖子

发新帖 我要提问
您需要登录后才可以回帖 登录 | 注册

本版积分规则

420

主题

432

帖子

0

粉丝