Change Intel HEX line length from 32 to 16 to match line length of avr-objcopy

This commit is contained in:
Marius Greuel 2018-04-15 21:45:12 +02:00
parent 93b2a56c0e
commit bc9b67a153
1 changed files with 1 additions and 1 deletions

View File

@ -1159,7 +1159,7 @@ static int fileio_ihex(struct fioparms * fio,
switch (fio->op) {
case FIO_WRITE:
rc = b2ihex(mem->buf, size, 32, fio->fileoffset, filename, f);
rc = b2ihex(mem->buf, size, 16, fio->fileoffset, filename, f);
if (rc < 0) {
return -1;
}