forked from svpcom/rtl8812au
-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Raphael
committed
Dec 30, 2023
1 parent
705d560
commit 670fc8b
Showing
3 changed files
with
7 additions
and
12 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
ERSION_HEADER |
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,12 +1 @@ | ||
#ifndef RTW_VERSION_H | ||
#define RTW_VERSION_H | ||
|
||
// Helper macro to convert a macro to a string | ||
#define STR_HELPER(x) #x | ||
#define STR(x) STR_HELPER(x) | ||
|
||
// Generate the version string with the current date in the format v5.2.20.2_OHD_20122023 | ||
#define CURRENT_DATE __DATE__ | ||
#define DRIVERVERSION "v5.2.20.2_OHD_" STR(CURRENT_DATE[4]) STR(CURRENT_DATE[5]) STR(CURRENT_DATE[7]) STR(CURRENT_DATE[8]) STR(CURRENT_DATE[9]) STR(CURRENT_DATE[22]) STR(CURRENT_DATE[23]) | ||
|
||
#endif // RTW_VERSION_H | ||
#define DRIVERVERSION "v5.2.20.2_ohd_THIS_IS_DIRTY" |