uv-k5-firmware-custom/ui/scanner.c

82 lines
2.4 KiB
C
Raw Normal View History

2023-09-09 07:03:56 +00: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 <stdbool.h>
#include <string.h>
#include "app/scanner.h"
#include "dcs.h"
#include "driver/st7565.h"
#include "external/printf/printf.h"
#include "misc.h"
#include "ui/helper.h"
#include "ui/scanner.h"
void UI_DisplayScanner(void)
{
char String[16];
bool bCentered;
2023-09-09 07:03:56 +00:00
uint8_t Start;
memset(gFrameBuffer, 0, sizeof(gFrameBuffer));
memset(String, 0, sizeof(String));
if (gScanSingleFrequency || (gScanCssState != SCAN_CSS_STATE_OFF && gScanCssState != SCAN_CSS_STATE_FAILED))
2023-09-13 01:01:35 +00:00
sprintf(String, "FREQ:%u.%05u", gScanFrequency / 100000, gScanFrequency % 100000);
else
2023-09-13 01:01:35 +00:00
strcpy(String, "FREQ:**.*****");
2023-09-12 14:31:37 +00:00
UI_PrintString(String, 2, 0, 1, 8);
2023-09-09 07:03:56 +00:00
memset(String, 0, sizeof(String));
if (gScanCssState < SCAN_CSS_STATE_FOUND || !gScanUseCssResult)
2023-09-13 01:01:35 +00:00
strcpy(String, "CTC:******");
else
if (gScanCssResultType == CODE_TYPE_CONTINUOUS_TONE)
2023-09-13 01:01:35 +00:00
sprintf(String, "CTC:%u.%uHz", CTCSS_Options[gScanCssResultCode] / 10, CTCSS_Options[gScanCssResultCode] % 10);
else
2023-09-09 07:03:56 +00:00
sprintf(String, "DCS:D%03oN", DCS_Options[gScanCssResultCode]);
2023-09-12 14:31:37 +00:00
UI_PrintString(String, 2, 0, 3, 8);
2023-09-09 07:03:56 +00:00
memset(String, 0, sizeof(String));
if (gScannerSaveState == SCAN_SAVE_CHANNEL)
{
2023-09-09 07:03:56 +00:00
strcpy(String, "SAVE?");
Start = 0;
2023-09-09 07:03:56 +00:00
bCentered = 1;
}
else
{
if (gScannerSaveState == SCAN_SAVE_CHAN_SEL) {
2023-09-09 07:03:56 +00:00
strcpy(String, "SAVE:");
UI_GenerateChannelStringEx(String + 5, gShowChPrefix, gScanChannel);
}
else if (gScanCssState < SCAN_CSS_STATE_FOUND) {
2023-09-09 07:03:56 +00:00
strcpy(String, "SCAN");
memset(String + 4, '.', (gScanProgressIndicator & 7) + 1);
}
else if (gScanCssState == SCAN_CSS_STATE_FOUND)
strcpy(String, "SCAN CMP.");
else
strcpy(String, "SCAN FAIL.");
Start = 2;
2023-09-09 07:03:56 +00:00
bCentered = 0;
}
2023-09-12 14:31:37 +00:00
UI_PrintString(String, Start, bCentered ? 127 : 0, 5, 8);
2023-09-09 07:03:56 +00:00
ST7565_BlitFullScreen();
}