diff --git a/Host/BootCommander.exe b/Host/BootCommander.exe index 8588fad9..87ebb173 100644 Binary files a/Host/BootCommander.exe and b/Host/BootCommander.exe differ diff --git a/Host/Source/LibOpenBLT/srecparser.c b/Host/Source/LibOpenBLT/srecparser.c index a8cddf35..80c05353 100644 --- a/Host/Source/LibOpenBLT/srecparser.c +++ b/Host/Source/LibOpenBLT/srecparser.c @@ -293,7 +293,7 @@ static bool SRecParserSaveToFile (char const * firmwareFile) if (result) { /* Add the S0-record. */ - if (fprintf(fp, "%s\r\n", line) < 0) + if (fprintf(fp, "%s\n", line) < 0) { /* Could not write line to the file. */ result = false; @@ -339,7 +339,7 @@ static bool SRecParserSaveToFile (char const * firmwareFile) break; } /* Add the data record. */ - if (fprintf(fp, "%s\r\n", line) < 0) + if (fprintf(fp, "%s\n", line) < 0) { /* Could not write line to the file. Abort loop. */ result = false; @@ -362,7 +362,7 @@ static bool SRecParserSaveToFile (char const * firmwareFile) if (result) { /* Add the termination record. */ - if (fprintf(fp, "%s\r\n", line) < 0) + if (fprintf(fp, "%s\n", line) < 0) { /* Could not write line to the file. */ result = false; diff --git a/Host/libopenblt.dll b/Host/libopenblt.dll index 0de04829..57874642 100644 Binary files a/Host/libopenblt.dll and b/Host/libopenblt.dll differ