From 22d5a9a7d36206083cda53845bbfd71a6570d7af Mon Sep 17 00:00:00 2001 From: Marius Greuel Date: Sun, 15 Apr 2018 21:45:12 +0200 Subject: [PATCH] Change Intel HEX line length from 32 to 16 to match line length of avr-objcopy --- fileio.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fileio.c b/fileio.c index f2d61782..244ba64b 100644 --- a/fileio.c +++ b/fileio.c @@ -1157,7 +1157,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; }