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

106 lines
2.8 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"
void UI_DisplayAircopy(void)
{
char String[16];
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 12:34:01 +01:00
strcpy(String, "AIR COPY");
2023-10-12 13:24:02 +01:00
2023-10-12 12:34:01 +01:00
switch (g_aircopy_state)
{
2023-10-12 12:58:58 +01:00
case AIRCOPY_READY: strcat(String, " READY"); break;
case AIRCOPY_RX: strcat(String, " RX"); break;
case AIRCOPY_TX: strcat(String, " TX"); break;
case AIRCOPY_RX_COMPLETE: strcat(String, " DONE"); break;
case AIRCOPY_TX_COMPLETE: strcat(String, " DONE"); break;
default: strcat(String, " ???"); break;
2023-10-12 12:34:01 +01:00
}
2023-10-12 13:24:02 +01:00
UI_PrintString(String, 0, LCD_WIDTH - 1, 0, 8);
// **********************************
2023-09-09 08:03:56 +01:00
2023-10-08 20:23:37 +01:00
if (g_input_box_index == 0)
2023-09-09 08:03:56 +01:00
{
2023-10-08 20:23:37 +01:00
NUMBER_ToDigits(g_rx_vfo->freq_config_rx.frequency, String);
2023-09-09 08:03:56 +01:00
UI_DisplayFrequency(String, 16, 2, 0, 0);
2023-10-08 20:23:37 +01:00
UI_Displaysmall_digits(2, String + 6, 97, 3, true);
2023-09-09 08:03:56 +01:00
}
else
2023-10-08 20:23:37 +01:00
UI_DisplayFrequency(g_input_box, 16, 2, 1, 0);
2023-09-09 08:03:56 +01:00
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-12 13:24:02 +01:00
UI_PrintString("EXIT rx M tx", 0, LCD_WIDTH - 1, 5, 7);
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
case AIRCOPY_RX_COMPLETE:
2023-10-12 13:24:02 +01:00
if (g_errors_during_air_copy == 0)
{
UI_PrintString("RX COMPLETE", 0, LCD_WIDTH - 1, 5, 8);
break;
}
case AIRCOPY_RX:
sprintf(String, "RX %u.%u", g_air_copy_block_number, g_air_copy_block_max);
if (g_errors_during_air_copy > 0)
sprintf(String + strlen(String), " E %u", g_errors_during_air_copy);
UI_PrintString(String, 0, LCD_WIDTH - 1, 5, 7);
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
case AIRCOPY_TX_COMPLETE:
2023-10-12 13:24:02 +01:00
UI_PrintString("TX COMPLETE", 0, LCD_WIDTH - 1, 5, 8);
break;
case AIRCOPY_TX:
sprintf(String, "TX %u.%u", g_air_copy_block_number, g_air_copy_block_max);
UI_PrintString(String, 0, LCD_WIDTH - 1, 5, 7);
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:
strcpy(String, " ???");
2023-10-12 13:24:02 +01:00
UI_PrintString(String, 0, LCD_WIDTH - 1, 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();
}