资源简介
/********************************************************************************\
\* DEC6713_FLASH.c V2.00 *\
\* Copyright 2004 by SEED Electronic Technology LTD. *\
\* All rights reserved. SEED Electronic Technology LTD. *\
\* Restricted rights to use, duplicate or disclose this code are *\
\* granted through contract. *\
\* Designed by: Hongshuai.Li
\* Discription: Erase, write and read the whole chip.
\* Date: Modified 05.10.2005 *\
\********************************************************************************/
#include
#include
#include
#include
#include
#include
#include "DEC6713_FLASH.h"
#include
/********************************************************************************/
Uint32 i;
Uint16 TempData;
Uint32 Src_StartAdd;
Uint32 Dst_StartAdd;
extern far void vectors();
/********************************************************************************/
/********************************************************************************/
void main()
{
Src_StartAdd = 0x90000000;
/* Initialize CSL, must when using. */
CSL_init();
/* Initialize DEC6713 board. */
DEC6713_init();
/* Configure interrupt. */
IRQ_setVecs(vectors);
IRQ_nmiEnable();
IRQ_globalEnable();
/* Erase flash memory. */
Flash_Erase(0x90000000,0x10);
printf("\nErase flash ok.");
/* Write flash memory. */
for(i=0;i<0x40000;i++)
{
Flash_Writes(Src_StartAdd+2*i,fmod(i,0x10000));
}
printf("\nWrite flash ok.");
/* Read flash memory. */
for(i=0;i<0x40000;i++)
{
TempData = Flash_Reads(Src_StartAdd+2*i);
if(TempData != fmod(i,0x10000))
{
printf("\n Testing is Failure!");
printf("\nAddress 0x%x is error!",i);
exit(0);
}
}
printf("\nOpereation i
代码片段和文件信息
- 上一篇:计算机体系结构论文作业
- 下一篇:DES算法IP核的流水线设计
相关资源
- flash植物生长源文件
- 一个FLASH小游戏,飞机大战
- STM32F10x_SPI硬件接口读写Flash25Q16.zip
- 植物生长flash
- Nand_Flash详述(绝对经典)
- AS3.0画板涂鸦板
- dsPIC33E 内部Flash读写及其它外设驱动
- msp430g2553内置FLash使用
- Flash动画制作作品设计说明书
- flash 大学生活
- flash 图表
- STM32的FLASH模拟EEPROM程序,亲测可用
- stm32f10x相关库文件 (包含: stm32f10x
- 酷哥flash支持库2.4(静态版)
- FlashTool STM32F103ZET6通过USB串口烧写
- flash拼图游戏
- 数据结构和算法-Flash动画演示
- 360度全景展示flash源文件
-
xm
l+flash 图片相册,带后台 - flash模拟地球公转自转
- flash游戏中控制角色移动的源代码
- 病毒风波——flash动画
- 辩论赛flash倒计时 PPT倒计时
- flash2
- 爱护环境 保护地球 flash
- FlashK60Dxxx128K.board
- 迷宫游戏用AS3.0实现的。很好玩哦
- 入门级 小鸡破壳 FLASH 源文件
- K60中flash loader最全滴
- 三相全控桥Flash动画
评论
共有 条评论