mirror of
https://github.com/OneOfEleven/uv-k5-firmware-custom.git
synced 2025-04-29 14:51:26 +03:00
More menu renames
This commit is contained in:
parent
a4ebe10f60
commit
8189e0b6e5
@ -27,11 +27,17 @@ Battery voltage boot screen now includes the percentage (as well as voltage).
|
|||||||
Slightly less intense menu style.
|
Slightly less intense menu style.
|
||||||
|
|
||||||
* "STEP" menu, added 1.25kHz option, removed 5kHz option
|
* "STEP" menu, added 1.25kHz option, removed 5kHz option
|
||||||
|
* "TXP" menu, renamed to "TX-PWR"
|
||||||
|
* "SAVE" menu, renamed to "B-SAVE"
|
||||||
|
* "WX" menu, renamed to "CROS-B" - 'WX' normally means weather here in the UK
|
||||||
* "ABR" menu, renamed to "BAK-LT", shows extended backlight times
|
* "ABR" menu, renamed to "BAK-LT", shows extended backlight times
|
||||||
|
* "SCR" menu, renamed to "SCRAM"
|
||||||
* "MIC" menu, shows mic gain in dB's, now includes the max mic gain possible (+15.5dB)
|
* "MIC" menu, shows mic gain in dB's, now includes the max mic gain possible (+15.5dB)
|
||||||
* "VOL" menu, renamed to "BATVOL", shows voltage and percentage
|
* "VOL" menu, renamed to "BATVOL", shows voltage and percentage
|
||||||
* "AM" menu, renamed to "MODE", shows modulation mode
|
* "AM" menu, renamed to "MODE", shows modulation mode
|
||||||
|
|
||||||
|
Menu renames are to try and reduce 'WTF does that do/mean ?'
|
||||||
|
|
||||||
# Compiler
|
# Compiler
|
||||||
|
|
||||||
arm-none-eabi GCC version 10.3.1 is recommended, which is the current version on Ubuntu 22.04.03 LTS.
|
arm-none-eabi GCC version 10.3.1 is recommended, which is the current version on Ubuntu 22.04.03 LTS.
|
||||||
|
BIN
firmware.bin
BIN
firmware.bin
Binary file not shown.
Binary file not shown.
19
ui/menu.c
19
ui/menu.c
@ -32,27 +32,24 @@
|
|||||||
|
|
||||||
static const char MenuList[][7] =
|
static const char MenuList[][7] =
|
||||||
{
|
{
|
||||||
// 0
|
|
||||||
"SQL",
|
"SQL",
|
||||||
"STEP",
|
"STEP",
|
||||||
"TXP",
|
"TX-PWR",
|
||||||
"R_DCS",
|
"R_DCS",
|
||||||
"R_CTCS",
|
"R_CTCS",
|
||||||
"T_DCS",
|
"T_DCS",
|
||||||
"T_CTCS",
|
"T_CTCS",
|
||||||
"SFT-D",
|
"SFT-D",
|
||||||
// 8
|
|
||||||
"OFFSET",
|
"OFFSET",
|
||||||
"W/N",
|
"W/N",
|
||||||
"SCR",
|
"SCRAM",
|
||||||
"BCL",
|
"BCL",
|
||||||
"MEM-CH",
|
"MEM-CH",
|
||||||
"SAVE",
|
"B-SAVE",
|
||||||
"VOX",
|
"VOX",
|
||||||
"BAK-LT",
|
"BAK-LT",
|
||||||
// 16
|
|
||||||
"TDR",
|
"TDR",
|
||||||
"WX",
|
"CROS-B",
|
||||||
"BEEP",
|
"BEEP",
|
||||||
"TOT",
|
"TOT",
|
||||||
#ifndef DISABLE_VOICE
|
#ifndef DISABLE_VOICE
|
||||||
@ -61,7 +58,6 @@ static const char MenuList[][7] =
|
|||||||
"SC-REV",
|
"SC-REV",
|
||||||
"MDF",
|
"MDF",
|
||||||
"AUTOLK",
|
"AUTOLK",
|
||||||
// 24
|
|
||||||
"S-ADD1",
|
"S-ADD1",
|
||||||
"S-ADD2",
|
"S-ADD2",
|
||||||
"STE",
|
"STE",
|
||||||
@ -70,7 +66,6 @@ static const char MenuList[][7] =
|
|||||||
"1-CALL",
|
"1-CALL",
|
||||||
"S-LIST",
|
"S-LIST",
|
||||||
"SLIST1",
|
"SLIST1",
|
||||||
// 32
|
|
||||||
"SLIST2",
|
"SLIST2",
|
||||||
#ifndef DISABLE_ALARM
|
#ifndef DISABLE_ALARM
|
||||||
"AL-MOD",
|
"AL-MOD",
|
||||||
@ -81,7 +76,6 @@ static const char MenuList[][7] =
|
|||||||
"D-ST",
|
"D-ST",
|
||||||
"D-RSP",
|
"D-RSP",
|
||||||
"D-HOLD",
|
"D-HOLD",
|
||||||
// 40
|
|
||||||
"D-PRE",
|
"D-PRE",
|
||||||
"PTT-ID",
|
"PTT-ID",
|
||||||
"D-DCD",
|
"D-DCD",
|
||||||
@ -90,21 +84,20 @@ static const char MenuList[][7] =
|
|||||||
"ROGER",
|
"ROGER",
|
||||||
"BATVOL",
|
"BATVOL",
|
||||||
"MODE",
|
"MODE",
|
||||||
// 48
|
|
||||||
#ifndef DISABLE_NOAA
|
#ifndef DISABLE_NOAA
|
||||||
"NOAA_S",
|
"NOAA_S",
|
||||||
#endif
|
#endif
|
||||||
"DEL-CH",
|
"DEL-CH",
|
||||||
"RESET",
|
"RESET",
|
||||||
|
|
||||||
// normally hidden menu items from here on ..
|
// normally hidden menu items from here on.
|
||||||
|
// enabled if pressing PTT and side button below PTT at power-on.
|
||||||
|
|
||||||
"350TX",
|
"350TX",
|
||||||
"F-LOCK",
|
"F-LOCK",
|
||||||
"200TX",
|
"200TX",
|
||||||
"500TX",
|
"500TX",
|
||||||
"350EN",
|
"350EN",
|
||||||
// 56 (55 if NOAA is not used)
|
|
||||||
"SCREN"
|
"SCREN"
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user