Skip to content

Commit

Permalink
Change version
Browse files Browse the repository at this point in the history
  • Loading branch information
armel committed Feb 26, 2024
1 parent e43c455 commit 3860c88
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
5 changes: 3 additions & 2 deletions ui/welcome.c
Original file line number Diff line number Diff line change
Expand Up @@ -103,8 +103,9 @@ void UI_DisplayWelcome(void)
UI_PrintString(WelcomeString1, 0, 127, 2, 10);

#ifdef ENABLE_FEAT_F4HWN
UI_PrintStringSmallNormal(Credits, 0, 128, 5);
UI_PrintStringSmallNormal(Feat, 0, 128, 6);
UI_PrintStringSmallBold(Version, 0, 128, 4);
UI_PrintStringSmallNormal(Based, 0, 128, 5);
UI_PrintStringSmallNormal(Credits, 0, 128, 6);
#else
UI_PrintStringSmallNormal(Version, 0, 128, 6);
#endif
Expand Down
2 changes: 1 addition & 1 deletion version.c
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@

#ifdef ENABLE_FEAT_F4HWN
const char Version[] = AUTHOR_STRING_2 " " VERSION_STRING_2;
const char Based[] = "based on";
const char Credits[] = AUTHOR_STRING_1 " " VERSION_STRING_1;
const char Feat[] = "Feat " AUTHOR_STRING_2 " " VERSION_STRING_2;
#else
const char Version[] = AUTHOR_STRING VER;
#endif
Expand Down
2 changes: 1 addition & 1 deletion version.h
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,5 @@ extern const char UART_Version[];

#ifdef ENABLE_FEAT_F4HWN
extern const char Credits[];
extern const char Feat[];
extern const char Based[];
#endif

0 comments on commit 3860c88

Please sign in to comment.