Skip to content

Commit

Permalink
add #ifndef VERSION
Browse files Browse the repository at this point in the history
  • Loading branch information
lincomatic committed Dec 16, 2019
1 parent 3b59ae4 commit abc571d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
3 changes: 3 additions & 0 deletions firmware/open_evse/CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
Change Log


20191215 SCL
- added #ifndef VERSION around #define VERSION

D6.1.1 20191215 SCL
- display auth lock status on LCD in disabled & sleeping states

Expand Down
2 changes: 2 additions & 0 deletions firmware/open_evse/open_evse.h
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,9 @@
#define setBits(flags,bits) (flags |= (bits))
#define clrBits(flags,bits) (flags &= ~(bits))

#ifndef VERSION
#define VERSION "D6.1.1"
#endif // !VERSION

#include "Language_default.h" //Default language should always be included as bottom layer

Expand Down

0 comments on commit abc571d

Please sign in to comment.