0
mirror of https://github.com/OneOfEleven/uv-k5-firmware-custom.git synced 2025-04-28 14:21:25 +03:00

250 lines
6.1 KiB
C
Raw Normal View History

2023-09-09 08:03:56 +01:00
/* Copyright 2023 Dual Tachyon
* https://github.com/DualTachyon
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include <string.h>
#include "app/scanner.h"
2023-09-14 09:56:30 +01:00
#ifdef ENABLE_FMRADIO
#include "app/fm.h"
#endif
2023-09-09 08:03:56 +01:00
#include "bitmaps.h"
#include "driver/keyboard.h"
#include "driver/st7565.h"
#include "external/printf/printf.h"
2023-09-09 08:03:56 +01:00
#include "functions.h"
#include "helper/battery.h"
#include "misc.h"
#include "settings.h"
#include "ui/helper.h"
#include "ui/ui.h"
2023-09-09 08:03:56 +01:00
#include "ui/status.h"
2023-09-14 09:56:30 +01:00
void UI_DisplayStatus(const bool test_display)
2023-09-09 08:03:56 +01:00
{
uint8_t *line = gStatusLine;
unsigned int x = 0;
unsigned int x1 = 0;
gUpdateStatus = false;
memset(gStatusLine, 0, sizeof(gStatusLine));
// **************
2023-09-09 08:03:56 +01:00
// POWER-SAVE indicator
if (gCurrentFunction == FUNCTION_TRANSMIT)
{
memmove(line + x, BITMAP_TX, sizeof(BITMAP_TX));
x1 = x + sizeof(BITMAP_TX);
}
else
if (gCurrentFunction == FUNCTION_RECEIVE ||
gCurrentFunction == FUNCTION_MONITOR ||
gCurrentFunction == FUNCTION_INCOMING)
{
memmove(line + x, BITMAP_RX, sizeof(BITMAP_RX));
x1 = x + sizeof(BITMAP_RX);
}
else
2023-09-14 09:56:30 +01:00
if (gCurrentFunction == FUNCTION_POWER_SAVE || test_display)
{
memmove(line + x, BITMAP_POWERSAVE, sizeof(BITMAP_POWERSAVE));
x1 = x + sizeof(BITMAP_POWERSAVE);
}
x += sizeof(BITMAP_POWERSAVE);
2023-09-09 08:03:56 +01:00
2023-09-14 09:56:30 +01:00
#ifdef ENABLE_NOAA
// NOASS SCAN indicator
2023-09-14 09:56:30 +01:00
if (gIsNoaaMode || test_display)
{
memmove(line + x, BITMAP_NOAA, sizeof(BITMAP_NOAA));
x1 = x + sizeof(BITMAP_NOAA);
}
x += sizeof(BITMAP_NOAA);
#else
// hmmm, what to put in it's place
2023-09-14 09:56:30 +01:00
#endif
2023-09-18 20:37:42 +01:00
if (gSetting_KILLED)
{
memset(line + x, 0xFF, 10);
x1 = x + 10;
}
2023-09-18 20:37:42 +01:00
else
2023-09-14 09:56:30 +01:00
#ifdef ENABLE_FMRADIO
// FM indicator
2023-09-14 09:56:30 +01:00
if (gFmRadioMode || test_display)
{
memmove(line + x, BITMAP_FM, sizeof(BITMAP_FM));
x1 = x + sizeof(BITMAP_FM);
}
else
2023-09-14 09:56:30 +01:00
#endif
// SCAN indicator
2023-10-05 23:58:55 +01:00
if (gScanStateDir != SCAN_OFF || gScreenToDisplay == DISPLAY_SCANNER || test_display)
{
2023-10-08 17:14:13 +01:00
if (gNextChannel <= USER_CHANNEL_LAST)
2023-10-05 23:58:55 +01:00
{ // channel mode
2023-10-08 17:14:13 +01:00
if (g_eeprom.scan_list_default == 0)
2023-10-05 23:58:55 +01:00
UI_PrintStringSmallBuffer("1", line + x);
else
2023-10-08 17:14:13 +01:00
if (g_eeprom.scan_list_default == 1)
2023-10-05 23:58:55 +01:00
UI_PrintStringSmallBuffer("2", line + x);
else
2023-10-08 17:14:13 +01:00
if (g_eeprom.scan_list_default == 2)
2023-10-05 23:58:55 +01:00
UI_PrintStringSmallBuffer("*", line + x);
}
2023-10-04 18:54:26 +01:00
else
2023-10-05 23:58:55 +01:00
{ // frequency mode
UI_PrintStringSmallBuffer("S", line + x);
}
2023-10-04 20:05:00 +01:00
x1 = x + 7;
}
2023-10-04 20:05:00 +01:00
x += 7; // font character width
2023-09-09 08:03:56 +01:00
2023-09-14 09:56:30 +01:00
#ifdef ENABLE_VOICE
// VOICE indicator
2023-10-08 17:14:13 +01:00
if (g_eeprom.voice_prompt != VOICE_PROMPT_OFF || test_display)
{
memmove(line + x, BITMAP_VoicePrompt, sizeof(BITMAP_VoicePrompt));
x1 = x + sizeof(BITMAP_VoicePrompt);
}
x += sizeof(BITMAP_VoicePrompt);
#else
// hmmm, what to put in it's place
2023-09-14 09:56:30 +01:00
#endif
// DUAL-WATCH indicator
2023-10-08 17:14:13 +01:00
if (g_eeprom.dual_watch != DUAL_WATCH_OFF || test_display)
{
if (gDualWatchActive || test_display)
memmove(line + x, BITMAP_TDR1, sizeof(BITMAP_TDR1));
else
memmove(line + x, BITMAP_TDR2, sizeof(BITMAP_TDR2));
}
x += sizeof(BITMAP_TDR1);
// CROSS-VFO indicator
2023-10-08 17:14:13 +01:00
if (g_eeprom.cross_vfo_rx_tx != CROSS_BAND_OFF || test_display)
{
memmove(line + x, BITMAP_XB, sizeof(BITMAP_XB));
x1 = x + sizeof(BITMAP_XB);
}
x += sizeof(BITMAP_XB);
#ifdef ENABLE_VOX
// VOX indicator
2023-10-08 17:14:13 +01:00
if (g_eeprom.vox_switch || test_display)
{
memmove(line + x, BITMAP_VOX, sizeof(BITMAP_VOX));
x1 = x + sizeof(BITMAP_VOX);
}
x += sizeof(BITMAP_VOX);
#endif
2023-09-09 08:03:56 +01:00
// KEY-LOCK indicator
2023-10-08 17:14:13 +01:00
if (g_eeprom.key_lock || test_display)
{
memmove(line + x, BITMAP_KeyLock, sizeof(BITMAP_KeyLock));
x += sizeof(BITMAP_KeyLock);
x1 = x;
}
2023-09-09 08:03:56 +01:00
else
2023-10-08 17:14:13 +01:00
if (g_was_f_key_pressed)
{
memmove(line + x, BITMAP_F_Key, sizeof(BITMAP_F_Key));
x += sizeof(BITMAP_F_Key);
x1 = x;
}
2023-09-19 18:03:45 +01:00
{ // battery voltage or percentage
char s[8];
unsigned int space_needed;
2023-10-06 22:16:03 +01:00
unsigned int x2 = LCD_WIDTH - sizeof(BITMAP_BATTERY_LEVEL) - 3;
2023-09-19 18:03:45 +01:00
if (gChargingWithTypeC)
x2 -= sizeof(BITMAP_USB_C); // the radio is on charge
2023-09-19 18:03:45 +01:00
switch (gSetting_battery_text)
{
default:
case 0:
break;
case 1: // voltage
{
const uint16_t voltage = (gBatteryVoltageAverage <= 999) ? gBatteryVoltageAverage : 999; // limit to 9.99V
sprintf(s, "%u.%02uV", voltage / 100, voltage % 100);
space_needed = (7 * strlen(s));
if (x2 >= (x1 + space_needed))
{
UI_PrintStringSmallBuffer(s, line + x2 - space_needed);
}
break;
}
case 2: // percentage
{
sprintf(s, "%u%%", BATTERY_VoltsToPercent(gBatteryVoltageAverage));
space_needed = (7 * strlen(s));
if (x2 >= (x1 + space_needed))
UI_PrintStringSmallBuffer(s, line + x2 - space_needed);
break;
}
}
}
2023-09-19 09:16:57 +01:00
2023-09-19 14:48:09 +01:00
// move to right side of the screen
2023-10-06 22:16:03 +01:00
x = LCD_WIDTH - sizeof(BITMAP_BATTERY_LEVEL) - sizeof(BITMAP_USB_C);
// USB-C charge indicator
2023-09-14 09:56:30 +01:00
if (gChargingWithTypeC || test_display)
memmove(line + x, BITMAP_USB_C, sizeof(BITMAP_USB_C));
x += sizeof(BITMAP_USB_C);
2023-09-09 08:03:56 +01:00
2023-10-06 22:16:03 +01:00
{ // BATTERY LEVEL indicator
uint8_t bitmap[sizeof(BITMAP_BATTERY_LEVEL)];
unsigned int i = gBatteryDisplayLevel;
2023-10-04 20:05:00 +01:00
2023-10-06 22:16:03 +01:00
memmove(bitmap, BITMAP_BATTERY_LEVEL, sizeof(BITMAP_BATTERY_LEVEL));
if (i >= 1)
2023-10-04 20:05:00 +01:00
{
2023-10-06 22:16:03 +01:00
const uint8_t bars = (i <= 5) - 1 ? i - 1 : 5 - 1;
for (i = 0; i < bars; i++)
2023-10-04 20:05:00 +01:00
{
2023-10-06 22:16:03 +01:00
#ifndef ENABLE_REVERSE_BAT_SYMBOL
bitmap[sizeof(bitmap) - 3 - (i * 3) - 0] = 0b01011101;
bitmap[sizeof(bitmap) - 3 - (i * 3) - 1] = 0b01011101;
#else
bitmap[3 + (i * 3) + 0] = 0b01011101;
bitmap[3 + (i * 3) + 1] = 0b01011101;
#endif
2023-10-04 20:05:00 +01:00
}
2023-10-06 22:16:03 +01:00
}
else
if (gLowBattery)
memset(bitmap, 0, sizeof(bitmap));
memmove(line + x, bitmap, sizeof(bitmap));
}
// **************
2023-09-09 08:03:56 +01:00
ST7565_BlitStatusLine();
}