From 58823f1018807baae5b37290fdedd5e0ce588d59 Mon Sep 17 00:00:00 2001 From: gicking Date: Tue, 8 Aug 2023 21:54:13 +0200 Subject: [PATCH] release v1.6.0 --- README.md | 2 +- include/hexfile.h | 2 +- include/version.h | 4 ++-- src/hexfile.c | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 47a7d7b..bdf260b 100644 --- a/README.md +++ b/README.md @@ -319,7 +319,7 @@ If you are aware of bugs, please drop me a note or start an [issue](https://gith # Revision History -v1.6.0b (2023-07-31) +v1.6.0 (2023-08-08) - switch from static RAM buffer to dynamic memory image - support for 32-bit addresses (see memory_image.h) - migrate to VSCode / PlatformIO file structure for convenience diff --git a/include/hexfile.h b/include/hexfile.h index 1568d96..b52117b 100644 --- a/include/hexfile.h +++ b/include/hexfile.h @@ -24,7 +24,7 @@ /********************** MACROS **********************/ -//#define HEXFILE_DIRECT_IMPORT // comment out for import file to RAM, then convert to memory image +#define HEXFILE_DIRECT_IMPORT // comment out for import file to RAM, then convert to memory image /********************** diff --git a/include/version.h b/include/version.h index 13a8591..1fed458 100644 --- a/include/version.h +++ b/include/version.h @@ -17,7 +17,7 @@ #define _SW_VERSION_H_ /// 16b SW version identifier -#define VERSION ((1<<14) | (6<<6) | (0<<1) | (0<<0)) // -> v1.6.0b +#define VERSION ((1<<14) | (6<<6) | (0<<1) | (1<<0)) // -> v1.6.0 #endif // _SW_VERSION_H_ @@ -27,7 +27,7 @@ Revision History ---------------- -v1.6.0b (2023-07-31) +v1.6.0 (2023-08-08) - switch from static RAM buffer to dynamic memory image - support for 32-bit addresses (see memory_image.h) - migrate to VSCode / PlatformIO file structure for convenience diff --git a/src/hexfile.c b/src/hexfile.c index 72a9820..f0d1f80 100644 --- a/src/hexfile.c +++ b/src/hexfile.c @@ -170,7 +170,7 @@ void import_file_s19(const char *filename, MemoryImage_s *image, const uint8_t v // release memory for file import free(fileBuf); - #endif // direct data import + #endif // HEXFILE_DIRECT_IMPORT // close file again