Skip to content

Commit

Permalink
migrate to VSCode/PlatformIO file structure
Browse files Browse the repository at this point in the history
  • Loading branch information
gicking committed Jul 15, 2023
1 parent cd1d665 commit 5d46bad
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 4 deletions.
4 changes: 1 addition & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,7 @@
lib/*

# Executables
hexfile_merger
hexfile_merger.exe
.pio/*
hexfile_merger*

# Doxygen output
doxygen/html/*
Expand Down
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,11 @@ Georg

# Revision History

v1.6.1 (2023-07-15)
- migrate to VSCode / PlatformIO file structure for convenience

----------------

v1.6.0 (2023-06-29)
- switch from static RAM buffer to dynamic memory image
- support for 32-bit addresses (see memory_image.h)
Expand Down
7 changes: 6 additions & 1 deletion 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) | 1) // -> v1.6.0
#define VERSION ((1<<14) | (6<<6) | (1<<1) | 1) // -> v1.6.1

#endif // _SW_VERSION_H_

Expand All @@ -27,6 +27,11 @@
Revision History
----------------
v1.6.1 (2023-07-15)
- migrate to VSCode / PlatformIO file structure for convenience
----------------
v1.6.0 (2023-06-29)
- switch from static RAM buffer to dynamic memory image
- support for 32-bit addresses (see memory_image.h)
Expand Down

0 comments on commit 5d46bad

Please sign in to comment.