Return the maximum address (+1) written as opposed to the actual number of
bytes written. The presence of an Intel Hex address record can cause these two number to be different; but the callers of this routine need the former. git-svn-id: svn://svn.savannah.nongnu.org/avrdude/trunk/avrdude@54 81a1dc3b-b13d-400b-aceb-764788c761c2
This commit is contained in:
parent
79356b2300
commit
34faf25814
24
fileio.c
24
fileio.c
|
@ -224,14 +224,25 @@ int ihex_readrec ( struct ihexrec * ihex, char * rec )
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Intel Hex to binary buffer
|
||||||
|
*
|
||||||
|
* Given an open file 'inf' which contains Intel Hex formated data,
|
||||||
|
* parse the file and lay it out within the memory buffer pointed to
|
||||||
|
* by outbuf. The size of outbuf, 'bufsize' is honored; if data would
|
||||||
|
* fall outsize of the memory buffer outbuf, an error is generated.
|
||||||
|
*
|
||||||
|
* Return the maximum memory address within 'outbuf' that was written.
|
||||||
|
* If an error occurs, return -1.
|
||||||
|
*
|
||||||
|
* */
|
||||||
|
|
||||||
int ihex2b ( char * infile, FILE * inf,
|
int ihex2b ( char * infile, FILE * inf,
|
||||||
unsigned char * outbuf, int bufsize )
|
unsigned char * outbuf, int bufsize )
|
||||||
{
|
{
|
||||||
char buffer [ MAX_LINE_LEN ];
|
char buffer [ MAX_LINE_LEN ];
|
||||||
unsigned char * buf;
|
unsigned char * buf;
|
||||||
unsigned int nextaddr, baseaddr;
|
unsigned int nextaddr, baseaddr, maxaddr;
|
||||||
int nbytes;
|
|
||||||
int i;
|
int i;
|
||||||
int lineno;
|
int lineno;
|
||||||
int len;
|
int len;
|
||||||
|
@ -240,8 +251,8 @@ int ihex2b ( char * infile, FILE * inf,
|
||||||
|
|
||||||
lineno = 0;
|
lineno = 0;
|
||||||
buf = outbuf;
|
buf = outbuf;
|
||||||
nbytes = 0;
|
|
||||||
baseaddr = 0;
|
baseaddr = 0;
|
||||||
|
maxaddr = 0;
|
||||||
|
|
||||||
while (fgets((char *)buffer,MAX_LINE_LEN,inf)!=NULL) {
|
while (fgets((char *)buffer,MAX_LINE_LEN,inf)!=NULL) {
|
||||||
lineno++;
|
lineno++;
|
||||||
|
@ -277,11 +288,12 @@ int ihex2b ( char * infile, FILE * inf,
|
||||||
for (i=0; i<ihex.reclen; i++) {
|
for (i=0; i<ihex.reclen; i++) {
|
||||||
buf[nextaddr+i] = ihex.data[i];
|
buf[nextaddr+i] = ihex.data[i];
|
||||||
}
|
}
|
||||||
nbytes += ihex.reclen;
|
if (nextaddr+ihex.reclen > maxaddr)
|
||||||
|
maxaddr = nextaddr+ihex.reclen;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case 1: /* end of file record */
|
case 1: /* end of file record */
|
||||||
return nbytes;
|
return maxaddr;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case 2: /* extended segment address record */
|
case 2: /* extended segment address record */
|
||||||
|
@ -316,7 +328,7 @@ int ihex2b ( char * infile, FILE * inf,
|
||||||
"file \"%s\"\n",
|
"file \"%s\"\n",
|
||||||
progname, infile);
|
progname, infile);
|
||||||
|
|
||||||
return nbytes;
|
return maxaddr;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue