From f158c5c6a787156a7bbe0bd23763a34c842c5df4 Mon Sep 17 00:00:00 2001 From: Armel FAUVEAU Date: Fri, 9 Feb 2024 17:00:12 +0100 Subject: [PATCH] Fix Chirp signature --- ui/welcome.c | 2 +- version.c | 3 ++- version.h | 1 + 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/ui/welcome.c b/ui/welcome.c index 8e939fa..c2d7401 100644 --- a/ui/welcome.c +++ b/ui/welcome.c @@ -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); diff --git a/version.c b/version.c index d210ab1..1613d60 100644 --- a/version.c +++ b/version.c @@ -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; diff --git a/version.h b/version.h index e247189..32ada24 100644 --- a/version.h +++ b/version.h @@ -23,5 +23,6 @@ extern const char UART_Version[]; #endif #ifdef ENABLE_FEAT_F4HWN + extern const char Credits[]; extern const char Feat[]; #endif