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 "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"
|
2023-10-15 11:24:20 +01:00
|
|
|
#include "ui/ui.h"
|
2023-09-09 08:03:56 +01:00
|
|
|
|
|
|
|
void UI_DisplayAircopy(void)
|
|
|
|
{
|
2023-10-15 11:24:20 +01:00
|
|
|
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
|
|
|
|
2023-10-28 14:07:41 +01:00
|
|
|
if (g_current_display_screen != DISPLAY_AIRCOPY)
|
2023-10-15 11:24:20 +01:00
|
|
|
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
|
2023-10-26 19:00:31 +01:00
|
|
|
|
|
|
|
const unsigned int x = 16;
|
|
|
|
|
2023-10-12 14:55:10 +01:00
|
|
|
NUMBER_ToDigits(g_rx_vfo->freq_config_rx.frequency, str);
|
2023-10-26 19:00:31 +01:00
|
|
|
UI_DisplayFrequency(str, x, 2, 0, 0);
|
|
|
|
|
|
|
|
// show the remaining 2 small frequency digits
|
|
|
|
#ifdef ENABLE_TRIM_TRAILING_ZEROS
|
|
|
|
{
|
|
|
|
unsigned int small_num = 2;
|
|
|
|
if (str[7] == 0)
|
|
|
|
{
|
|
|
|
small_num--;
|
|
|
|
if (str[6] == 0)
|
|
|
|
small_num--;
|
|
|
|
}
|
|
|
|
UI_Displaysmall_digits(small_num, str + 6, x + 81, 3, true);
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
UI_Displaysmall_digits(2, str + 6, x + 81, 3, true);
|
|
|
|
#endif
|
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 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);
|
2023-10-15 11:24:20 +01:00
|
|
|
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:
|
2023-10-12 22:48:48 +01:00
|
|
|
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
|
|
|
// **********************************
|
|
|
|
|
2023-09-09 08:03:56 +01:00
|
|
|
ST7565_BlitFullScreen();
|
|
|
|
}
|