avr.c: Update a comment.

fileio.c: Properly handle all the Intel Hex record types that I can
          find information about.


git-svn-id: svn://svn.savannah.nongnu.org/avrdude/trunk/avrdude@52 81a1dc3b-b13d-400b-aceb-764788c761c2
This commit is contained in:
Brian S. Dean
2001-01-26 17:22:40 +00:00
parent a87a5d0671
commit 0775e02d27
2 changed files with 159 additions and 71 deletions

8
avr.c
View File

@@ -489,7 +489,6 @@ char * avr_memtstr ( AVRMEM memtype )
}
int avr_initmem ( struct avrpart * p )
{
int i;
@@ -508,8 +507,11 @@ int avr_initmem ( struct avrpart * p )
/*
* Verify up to 'size' bytes of p against v. Return the number of
* bytes verified, or -1 if they don't match.
* Verify the memory buffer of p with that of v. The byte range of v,
* may be a subset of p. The byte range of p should cover the whole
* chip's memory size.
*
* Return the number of bytes verified, or -1 if they don't match.
*/
int avr_verify(struct avrpart * p, struct avrpart * v, AVRMEM memtype, int size)
{