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

123 lines
3.3 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/aircopy.h"
#include "driver/st7565.h"
#include "external/printf/printf.h"
#include "misc.h"
#include "radio.h"
#include "ui/aircopy.h"
#include "ui/helper.h"
#include "ui/inputbox.h"
#include "ui/ui.h"
2023-09-09 08:03:56 +01:00
void UI_DisplayAircopy(void)
{
const uint8_t errors = g_aircopy_rx_errors_fsk_crc + g_aircopy_rx_errors_magic + g_aircopy_rx_errors_crc;
2023-10-12 14:55:10 +01:00
char str[17];
2023-09-09 08:03:56 +01:00
if (g_screen_to_display != DISPLAY_AIRCOPY)
return;
2023-10-12 14:55:10 +01:00
// clear screen/display buffer
2023-10-08 20:23:37 +01:00
memset(g_frame_buffer, 0, sizeof(g_frame_buffer));
2023-09-09 08:03:56 +01:00
2023-10-12 13:24:02 +01:00
// **********************************
2023-10-12 14:55:10 +01:00
// upper text line
2023-10-12 13:24:02 +01:00
2023-10-12 14:55:10 +01:00
strcpy(str, "AIR COPY");
2023-10-12 12:34:01 +01:00
switch (g_aircopy_state)
{
2023-10-12 14:55:10 +01:00
case AIRCOPY_READY: strcat(str, " READY"); break;
case AIRCOPY_RX: strcat(str, " RX"); break;
case AIRCOPY_TX: strcat(str, " TX"); break;
2023-10-15 18:31:01 +01:00
case AIRCOPY_RX_COMPLETE: strcat(str, " DONE"); break;
case AIRCOPY_TX_COMPLETE: strcat(str, " DONE"); break;
2023-10-12 14:55:10 +01:00
default: strcat(str, " ERR"); break;
2023-10-12 12:34:01 +01:00
}
2023-10-15 18:31:01 +01:00
UI_PrintString(str, 0, LCD_WIDTH, 0, 8);
2023-10-12 13:24:02 +01:00
// **********************************
2023-10-12 14:55:10 +01:00
// center frequency text line
2023-09-09 08:03:56 +01:00
2023-10-08 20:23:37 +01:00
if (g_input_box_index == 0)
2023-10-12 14:55:10 +01:00
{ // show frequency
NUMBER_ToDigits(g_rx_vfo->freq_config_rx.frequency, str);
UI_DisplayFrequency(str, 16, 2, 0, 0);
UI_Displaysmall_digits(2, str + 6, 97, 3, true);
2023-09-09 08:03:56 +01:00
}
else
2023-10-12 14:55:10 +01:00
{ // user is entering a new frequency
2023-10-08 20:23:37 +01:00
UI_DisplayFrequency(g_input_box, 16, 2, 1, 0);
2023-10-12 14:55:10 +01:00
}
2023-09-09 08:03:56 +01:00
2023-10-12 13:24:02 +01:00
// **********************************
2023-10-12 14:55:10 +01:00
// lower TX/RX status text line
2023-10-12 13:24:02 +01:00
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wimplicit-fallthrough="
2023-10-12 12:34:01 +01:00
switch (g_aircopy_state)
{
2023-10-12 12:58:58 +01:00
case AIRCOPY_READY:
2023-10-15 18:31:01 +01:00
UI_PrintString("EXIT rx M tx", 0, LCD_WIDTH, 5, 7);
2023-10-12 12:58:58 +01:00
break;
2023-10-12 13:24:02 +01:00
case AIRCOPY_RX:
2023-10-12 14:55:10 +01:00
sprintf(str, "RX %u.%u", g_aircopy_block_number, g_aircopy_block_max);
if (errors > 0)
{
#if 1
sprintf(str + strlen(str), " E %u", errors);
#else
sprintf(str + strlen(str), " E %u %u %u",
g_aircopy_rx_errors_fsk_crc,
g_aircopy_rx_errors_magic,
g_aircopy_rx_errors_crc);
#endif
}
2023-10-15 18:31:01 +01:00
UI_PrintString(str, 0, LCD_WIDTH, 5, 7);
2023-10-12 12:58:58 +01:00
break;
2023-10-12 13:24:02 +01:00
case AIRCOPY_TX:
strcpy(str, (g_fsk_tx_timeout_10ms > 0) ? "*" : " ");
sprintf(str + 1, " TX %u.%u", g_aircopy_block_number, g_aircopy_block_max);
2023-10-15 18:31:01 +01:00
UI_PrintString(str, 0, LCD_WIDTH, 5, 7);
break;
case AIRCOPY_RX_COMPLETE:
UI_PrintString("RX COMPLETE", 0, LCD_WIDTH, 5, 8);
break;
case AIRCOPY_TX_COMPLETE:
UI_PrintString("TX COMPLETE", 0, LCD_WIDTH, 5, 8);
2023-10-12 12:58:58 +01:00
break;
2023-10-12 13:24:02 +01:00
2023-10-12 12:58:58 +01:00
default:
2023-10-12 14:55:10 +01:00
strcpy(str, "ERROR");
2023-10-15 18:31:01 +01:00
UI_PrintString(str, 0, LCD_WIDTH, 5, 7);
2023-10-12 12:58:58 +01:00
break;
2023-10-12 12:34:01 +01:00
}
2023-10-12 11:13:25 +01:00
2023-10-12 13:24:02 +01:00
#pragma GCC diagnostic pop
// **********************************
2023-09-09 08:03:56 +01:00
ST7565_BlitFullScreen();
}