Skip to content

Commit

Permalink
Fix Chirp signature
Browse files Browse the repository at this point in the history
  • Loading branch information
armel committed Feb 9, 2024
1 parent 2f81391 commit f158c5c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ui/welcome.c
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ void UI_DisplayWelcome(void)

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

#ifdef ENABLE_FEAT_F4HWN
const char Version[] = AUTHOR_STRING_1 " " VERSION_STRING_1;
const char Version[] = AUTHOR_STRING_2 " " VERSION_STRING_2;
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;
Expand Down
1 change: 1 addition & 0 deletions version.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,6 @@ extern const char UART_Version[];
#endif

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

0 comments on commit f158c5c

Please sign in to comment.