Skip to content

Commit

Permalink
Generalize org brand identity
Browse files Browse the repository at this point in the history
  • Loading branch information
LolloDev5123 committed Jan 13, 2024
1 parent 7951aee commit 10df99d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 10 deletions.
6 changes: 0 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion ui/welcome.c
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
6 changes: 3 additions & 3 deletions version.c
Original file line number Diff line number Diff line change
@@ -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";

0 comments on commit 10df99d

Please sign in to comment.