forked from Ryper3D/MMU2-1S_Firmware
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request Ryper3D#1 from Addu3D/7-colors
10 colors
- Loading branch information
Showing
6 changed files
with
32 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
//! @file | ||
|
||
#ifndef VERSION_H_ | ||
#define VERSION_H_ | ||
|
||
static const uint16_t fw_version = 106; //!< example: 103 means version 1.0.3 | ||
static const uint16_t fw_buildnr = ${GIT_PARENT_COMMITS}; //!< number of commits preceeding current HEAD | ||
#define FW_HASH "${GIT_COMMIT_HASH}" | ||
|
||
//! @macro FW_LOCAL_CHANGES | ||
//! @val 0 no changes in tracked local files | ||
//! @val 1 some local git tracked files has been changed | ||
#include "dirty.h" | ||
|
||
//! @file | ||
#ifndef VERSION_H_ | ||
#define VERSION_H_ | ||
static const uint16_t fw_version = 107; //!< example: 103 means version 1.0.3 | ||
static const uint16_t fw_buildnr = ${GIT_PARENT_COMMITS}; //!< number of commits preceeding current HEAD | ||
#define FW_HASH "${GIT_COMMIT_HASH}" | ||
//! @macro FW_LOCAL_CHANGES | ||
//! @val 0 no changes in tracked local files | ||
//! @val 1 some local git tracked files has been changed | ||
#include "dirty.h" | ||
#endif //VERSION_H_ |