From 10df99d049de5ef24c5722f8658b635dc88eaf95 Mon Sep 17 00:00:00 2001 From: LolloDev Date: Sat, 13 Jan 2024 21:25:51 +0100 Subject: [PATCH] Generalize org brand identity --- README.md | 6 ------ ui/welcome.c | 2 +- version.c | 6 +++--- 3 files changed, 4 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index fe297a6..b044a37 100644 --- a/README.md +++ b/README.md @@ -10,12 +10,6 @@ An attempt to port unify as many of the many other fork's features as possible > Use this firmware at your own risk (entirely). There is absolutely no guarantee that it will work in any way shape or form on your radio(s), it may even brick your radio(s), in which case, you'd need to buy another radio. Anyway, have fun. -For improved/better firmware and new features, you can find the following repositories by other collaborators: - -* https://github.com/fagci/uv-k5-firmware-fagci-mod -* https://github.com/OneOfEleven/uv-k5-firmware-custom -* https://github.com/Tunas1337/uv-k5-firmware (Check the branches) -* https://github.com/rebezhir/openquack for Russian users ## Credits diff --git a/ui/welcome.c b/ui/welcome.c index 581b830..243dab0 100644 --- a/ui/welcome.c +++ b/ui/welcome.c @@ -37,7 +37,7 @@ void UI_DisplayWelcome(void) { memset(WelcomeString0, 0, sizeof(WelcomeString0)); memset(WelcomeString1, 0, sizeof(WelcomeString1)); if (gEeprom.POWER_ON_DISPLAY_MODE == POWER_ON_DISPLAY_MODE_VOLTAGE) { - sprintf(WelcomeString0, "VOLTAGE"); + sprintf(WelcomeString0, "qshosfw"); sprintf(WelcomeString1, "%d.%02dV", gBatteryVoltageAverage / 100, gBatteryVoltageAverage % 100); } else { diff --git a/version.c b/version.c index c8bab91..e60ceca 100644 --- a/version.c +++ b/version.c @@ -1,3 +1,3 @@ -const char Version[] = "MCFW-" GIT_HASH; -const char UART_Version[45] = - "UV-K5 Firmware, Open Edition, MCFW-" GIT_HASH "\r\n"; +const char Version[] = GIT_HASH; +const char UART_Version[80] = + "QSH-OSFW " GIT_HASH " " __DATE__ " " __TIME__"\r\n";