ihex: ignore 03 records without a warning.

This commit is contained in:
Daniel Beer 2010-09-10 13:29:17 +12:00
parent 479b0b2a9f
commit de402ea9a6
1 changed files with 2 additions and 0 deletions

2
ihex.c
View File

@ -63,6 +63,8 @@ static int feed_line(FILE *in, uint8_t *data, int nbytes, binfile_imgcb_t cb,
return cb(user_data, address, payload, data_len);
case 1:
case 3:
/* These can be safely ignored */
break;
case 2: