mirror of
https://github.com/OneOfEleven/uv-k5-firmware-custom.git
synced 2025-04-28 14:21:25 +03:00
single VFO update
This commit is contained in:
parent
d4756354b5
commit
62d0799b32
BIN
firmware.bin
BIN
firmware.bin
Binary file not shown.
Binary file not shown.
17
ui/main.c
17
ui/main.c
@ -911,21 +911,20 @@ const char *state_list[] = {"", "BUSY", "BAT LOW", "TX DISABLE", "TIMEOUT", "ALA
|
|||||||
}
|
}
|
||||||
|
|
||||||
y += 2;
|
y += 2;
|
||||||
x = LCD_WIDTH - (7 * 7);
|
x = LCD_WIDTH - (7 * 6) - 4;
|
||||||
|
|
||||||
{ // audio scramble symbol
|
// audio scramble symbol
|
||||||
if (g_vfo_info[vfo_num].channel.scrambler > 0 && g_eeprom.config.setting.enable_scrambler)
|
if (g_vfo_info[vfo_num].channel.scrambler > 0 && g_eeprom.config.setting.enable_scrambler)
|
||||||
UI_PrintStringSmall("SCR", x, 0, y);
|
UI_PrintStringSmall("SCR", x, 0, y);
|
||||||
}
|
x += (7 * 3) + 4;
|
||||||
|
|
||||||
{ // bandwidth & modulation mode
|
{ // bandwidth & modulation mode
|
||||||
const char bw_list[] = "WNn ";
|
const char bw_list[] = "WNn ";
|
||||||
const char *mode_list[] = {"FM", "AM", "SB", ""};
|
const char *mode_list[] = {"FM", "AM", "SB", ""};
|
||||||
// wide/narrow band symbol
|
|
||||||
strcpy(str, " ");
|
|
||||||
str[0] = bw_list[g_vfo_info[vfo_num].channel.channel_bandwidth];
|
str[0] = bw_list[g_vfo_info[vfo_num].channel.channel_bandwidth];
|
||||||
strcpy(str + 1, mode_list[g_vfo_info[vfo_num].channel.mod_mode]);
|
strcpy(str + 1, mode_list[g_vfo_info[vfo_num].channel.mod_mode]);
|
||||||
UI_PrintStringSmall(str, x + (7 * 4), 0, y);
|
UI_PrintStringSmall(str, x, 0, y);
|
||||||
|
//x += 7 * 3;
|
||||||
}
|
}
|
||||||
|
|
||||||
y++;
|
y++;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user