From dedc0e87d0988992281d35dab9974ea02ab184fe 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 --- src/fileio.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fileio.c b/src/fileio.c index 7c021ce4..ce01723e 100644 --- a/src/fileio.c +++ b/src/fileio.c @@ -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; }