ihex: ignore 03 records without a warning.
This commit is contained in:
parent
479b0b2a9f
commit
de402ea9a6
2
ihex.c
2
ihex.c
|
@ -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);
|
return cb(user_data, address, payload, data_len);
|
||||||
|
|
||||||
case 1:
|
case 1:
|
||||||
|
case 3:
|
||||||
|
/* These can be safely ignored */
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case 2:
|
case 2:
|
||||||
|
|
Loading…
Reference in New Issue