Skip to content

Commit

Permalink
release v1.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
gicking committed Aug 8, 2023
1 parent 9fe62e2 commit 58823f1
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion include/hexfile.h
Original file line number Diff line number Diff line change
Expand Up @@ -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


/**********************
Expand Down
4 changes: 2 additions & 2 deletions include/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -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_

Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/hexfile.c
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 58823f1

Please sign in to comment.