4515|4

69

帖子

0

TA的资源

一粒金砂(初级)

楼主
 

WINCE NANDFLASH分区的问题! [复制链接]

大家好,我现在想把NANDFLASH分出来两个FAT分区,我调用了BP_OpenPartition进行分区,但是却始终没有成功!请问哪里错了!

最新回复

学习  详情 回复 发表于 2009-12-5 15:31
点赞 关注

回复
举报

64

帖子

0

TA的资源

一粒金砂(初级)

沙发
 
BP_OpenPartition参数不正确
 
 

回复

74

帖子

0

TA的资源

一粒金砂(初级)

板凳
 
BOOL NANDFormatDataStorage(void)
{
    FlashInfo flashInfo;
    DWORD dwStartBlock, dwNumBlocks;
    DWORD dwIndex;

    // Get NAND flash data bytes per sector.
    //
    if (!FMD_GetInfo(&flashInfo))
    {
        EdbgOutputDebugString("ERROR: Unable to get NAND flash information.\r\n");
        return(FALSE);
    }

    // Calculate the physical block range for the NK image
        dwStartBlock = IMAGE_BOOT_RECOVERY_NAND_OFFSET / flashInfo.dwBytesPerBlock;
    dwNumBlocks = flashInfo.dwNumBlocks - dwStartBlock;

    KITLOutputDebugString("\r\nReserving System Blocks... (Block ID: 0 - 0x%x) \r\n", dwStartBlock);

    for (dwIndex = 0; dwIndex < dwStartBlock; dwIndex++)
    {
        FMD_SetBlockStatus(dwIndex, (BLOCK_STATUS_READONLY | BLOCK_STATUS_RESERVED));
    }

    EdbgOutputDebugString("INFO: Starting format of NAND data storage region.\r\n");

    if (!BP_LowLevelFormat(dwStartBlock, dwNumBlocks, 0))
    {
        EdbgOutputDebugString("\r\nERROR: Unable to format data storage region! \r\n");
    }

    EdbgOutputDebugString("\r\nINFO: Creating partition table... \r\n");

    // Program storage region
    //
    if (BP_OpenPartition((200 * flashInfo.wSectorsPerBlock), 64*500, PART_DOS32 , TRUE,  PART_OPEN_ALWAYS) == INVALID_HANDLE_VALUE)
   {
        EdbgOutputDebugString("\r\nERROR: Fail to create program partition... \r\n");
        return FALSE;
    }
   
    if (BP_OpenPartition(NEXT_FREE_LOC, USE_REMAINING_SPACE, PART_DOS32, FALSE, PART_OPEN_ALWAYS) == INVALID_HANDLE_VALUE)
    {
        EdbgOutputDebugString("\r\nERROR: Fail to create user storage partition... \r\n");
        return FALSE;
    }

    EdbgOutputDebugString("\r\nINFO: Format of NAND data storage region completed successfully.\r\n");
   
    return TRUE;
}
这是我的分区代码,参考一下。
 
 
 

回复

76

帖子

0

TA的资源

一粒金砂(初级)

4
 
收藏
 
 
 

回复

66

帖子

0

TA的资源

一粒金砂(初级)

5
 
学习
 
 
 

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

随便看看
查找数据手册?

EEWorld Datasheet 技术支持

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

 
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
快速回复 返回顶部 返回列表