我想在大小为 32 kb 的内部 flashROM 上写入一个 28 kb 闪存大小的“.hex”文件。上面提到的问题是用于初始化 flashROM。我为编写该文件所做的工作和代码如下所述:
- 我有一个 Intel hex 格式的 .hex 文件,我必须读取和写入 At91(8051) 微控制器的内部 FlashROM。
- 以“rb+”模式打开 .hex 文件。
- 获取文件的长度并将指针设置为起始地址(第零地址)。
- 由于我需要逐页写入该文件,并且在我的情况下页面大小为 256 字节,因此我将文件除以 256。
- 之后,我尝试编写该文件。
请让我知道我哪里出错了。代码如下。
int a,b; int size,last_chunk; FILE *file; char *buffer1,name[20]; unsigned long fileLen;
file = fopen("flashROM.hex", "rb+");
if (!file)
{
fprintf(stderr, "Unable to open file %s", name);
return;
}
fseek(file, 0, SEEK_END);
fileLen=ftell(file);
printf("the file length is:%d\n",fileLen);
fseek(file, 0, SEEK_SET);
//Allocate memory
buffer1 =(char *)malloc(fileLen+1);
if (!buffer1)
{
fprintf(stderr, "Memory error!");
fclose(file);
return;
}
//Read file contents into buffer
fread(buffer1, fileLen, 1, file);
/* We have to divide the entire file into chunks of 256 bytes*/
size = fileLen/256;
printf("\nsize = %d\n",size);
last_chunk = fileLen%256;
printf("\nlast chunk = %d bytes\n",last_chunk);
address = 0x0000;
printf("File upgradation should start from :%.4x",address);
for(a=0;a<=size;a++)
{
write(fd,&buffer1,size);
printf("Iteration=[%d]\t Data=[%x]\n",a,*buffer1);
usleep(5000);
}
for(b=0;b<=last_chunk;b++)
{
write(fd,&buffer1,1);
usleep(5000);
}
执行上述程序的二进制文件后,我的结果如下:
Writing upgrade file
the file length is:30855
size = 120
last chunk = 135 bytes
File upgradation should start from :0000
Iteration=[0] Data=[3a]
Iteration=[1] Data=[3a]
Iteration=[2] Data=[3a]
Iteration=[3] Data=[3a]
Iteration=[4] Data=[3a]
Iteration=[5] Data=[3a]
Iteration=[6] Data=[3a]
Iteration=[7] Data=[3a]
我不知道,为什么数据总是“3a”,不清楚。请让我知道我在编程中做错了什么。