custom-uv-k5-firmware/misc.c

210 lines
4.7 KiB
C
Raw Normal View History

/* 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 "misc.h"
const uint32_t *gUpperLimitFrequencyBandTable;
const uint32_t *gLowerLimitFrequencyBandTable;
bool gSetting_350TX;
bool gSetting_KILLED;
bool gSetting_200TX;
bool gSetting_500TX;
bool gSetting_350EN;
uint8_t gSetting_F_LOCK;
bool gSetting_ScrambleEnable;
const uint32_t gDefaultAesKey[4] = {
0x4AA5CC60,
0x0312CC5F,
0xFFD2DABB,
0x6BBA7F92,
};
uint32_t gCustomAesKey[4];
2023-09-01 06:27:02 +08:00
bool bHasCustomAesKey;
uint32_t gChallenge[4];
uint8_t gTryCount;
2023-10-14 08:22:26 +08:00
uint16_t gEEPROM_RSSI_CALIB[7][4];
uint16_t gEEPROM_1F8A;
uint16_t gEEPROM_1F8C;
uint8_t gMR_ChannelAttributes[FREQ_CHANNEL_LAST + 1];
2023-08-16 05:39:26 +08:00
volatile bool gNextTimeslice500ms;
2023-09-04 19:19:19 +08:00
volatile uint16_t gBatterySaveCountdown = 1000;
2023-09-03 01:11:04 +08:00
volatile uint16_t gDualWatchCountdown;
2023-09-04 19:19:19 +08:00
volatile uint16_t gTxTimerCountdown;
2023-09-06 06:47:26 +08:00
volatile uint16_t gTailNoteEliminationCountdown;
2023-09-14 18:30:08 +08:00
#if defined(ENABLE_NOAA)
2023-08-31 23:04:49 +08:00
volatile uint16_t gNOAA_Countdown;
2023-09-14 18:30:08 +08:00
#endif
2023-09-01 07:49:14 +08:00
bool gEnableSpeaker;
2023-08-26 18:20:06 +08:00
uint8_t gKeyLockCountdown;
2023-08-27 22:01:47 +08:00
uint8_t gRTTECountdown;
2023-09-01 06:27:02 +08:00
bool bIsInLockScreen;
2023-08-30 07:19:12 +08:00
uint8_t gUpdateStatus;
2023-08-30 20:21:07 +08:00
uint8_t gFoundCTCSS;
uint8_t gFoundCDCSS;
2023-09-03 22:56:49 +08:00
bool gEndOfRxDetectedMaybe;
2023-08-15 21:24:40 +08:00
uint8_t gVFO_RSSI_Level[2];
2023-08-31 01:06:08 +08:00
uint8_t gReducedService;
2023-08-26 18:20:06 +08:00
uint8_t gBatteryVoltageIndex;
2023-09-03 22:56:49 +08:00
CssScanMode_t gCssScanMode;
2023-09-05 23:45:58 +08:00
bool gUpdateRSSI;
2023-09-14 23:32:21 +08:00
#if defined(ENABLE_ALARM) || defined(ENABLE_TX1750)
2023-09-03 05:11:03 +08:00
AlarmState_t gAlarmState;
2023-09-14 23:32:21 +08:00
#endif
2023-09-06 06:47:26 +08:00
uint8_t gVoltageMenuCountdown;
2023-09-03 18:47:36 +08:00
bool gPttWasReleased;
bool gPttWasPressed;
2023-08-24 20:55:40 +08:00
uint8_t gKeypadLocked;
2023-09-04 00:58:01 +08:00
bool gFlagReconfigureVfos;
2023-08-31 20:47:25 +08:00
uint8_t gVfoConfigureMode;
2023-09-04 00:58:01 +08:00
bool gFlagResetVfos;
2023-08-28 06:17:44 +08:00
bool gRequestSaveVFO;
2023-08-29 08:21:33 +08:00
uint8_t gRequestSaveChannel;
2023-08-28 06:30:42 +08:00
bool gRequestSaveSettings;
2023-09-14 05:55:14 +08:00
#if defined(ENABLE_FMRADIO)
2023-08-28 06:17:44 +08:00
bool gRequestSaveFM;
2023-09-14 05:55:14 +08:00
#endif
2023-09-06 04:03:31 +08:00
bool gFlagPrepareTX;
2023-08-28 02:52:32 +08:00
bool gFlagAcceptSetting;
bool gFlagRefreshSetting;
2023-08-28 02:52:32 +08:00
bool gFlagSaveVfo;
2023-08-26 21:29:19 +08:00
bool gFlagSaveSettings;
bool gFlagSaveChannel;
2023-09-14 05:55:14 +08:00
#if defined(ENABLE_FMRADIO)
2023-08-26 21:29:19 +08:00
bool gFlagSaveFM;
2023-09-14 05:55:14 +08:00
#endif
2023-08-31 21:22:08 +08:00
uint8_t gDTMF_RequestPending;
2023-08-16 06:46:09 +08:00
bool g_CDCSS_Lost;
2023-08-30 20:21:07 +08:00
uint8_t gCDCSSCodeType;
2023-08-16 06:46:09 +08:00
bool g_CTCSS_Lost;
bool g_CxCSS_TAIL_Found;
bool g_VOX_Lost;
2023-08-26 19:41:11 +08:00
bool g_SquelchLost;
2023-08-26 18:20:06 +08:00
uint8_t gFlashLightState;
2023-09-03 06:38:05 +08:00
bool gVOX_NoiseDetected;
2023-09-06 06:47:26 +08:00
uint16_t gVoxResumeCountdown;
2023-09-03 18:47:36 +08:00
uint16_t gVoxPauseCountdown;
2023-08-26 18:20:06 +08:00
volatile uint16_t gFlashLightBlinkCounter;
2023-09-03 18:47:36 +08:00
bool gFlagEndTransmission;
2023-09-04 19:19:19 +08:00
uint16_t gLowBatteryCountdown;
2023-09-03 22:56:49 +08:00
uint8_t gNextMrChannel;
ReceptionMode_t gRxReceptionMode;
2023-09-03 18:47:36 +08:00
uint8_t gRestoreMrChannel;
uint8_t gCurrentScanList;
2023-09-03 22:56:49 +08:00
uint8_t gPreviousMrChannel;
2023-09-03 18:47:36 +08:00
uint32_t gRestoreFrequency;
2023-09-05 23:45:58 +08:00
uint8_t gRxVfoIsActive;
2023-09-14 23:32:21 +08:00
#if defined(ENABLE_ALARM)
2023-09-03 06:45:11 +08:00
uint8_t gAlarmToneCounter;
uint16_t gAlarmRunningCounter;
2023-09-14 23:32:21 +08:00
#endif
2023-08-26 08:47:17 +08:00
bool gKeyBeingHeld;
bool gPttIsPressed;
2023-08-26 18:20:06 +08:00
uint8_t gPttDebounceCounter;
2023-08-22 06:47:16 +08:00
uint8_t gMenuListCount;
2023-08-29 23:02:35 +08:00
uint8_t gBackupCROSS_BAND_RX_TX;
2023-09-05 23:45:58 +08:00
uint8_t gScanDelay;
#if defined(ENABLE_AIRCOPY)
2023-08-26 18:20:06 +08:00
uint8_t gAircopySendCountdown;
#endif
2023-08-26 18:20:06 +08:00
uint8_t gFSKWriteIndex;
2023-09-05 23:45:58 +08:00
uint8_t gNeverUsed;
2023-08-14 05:40:33 +08:00
2023-09-14 18:30:08 +08:00
#if defined(ENABLE_NOAA)
bool gIsNoaaMode;
2023-09-14 18:30:08 +08:00
#endif
2023-08-15 18:14:43 +08:00
volatile bool gNextTimeslice;
2023-09-14 18:30:08 +08:00
#if defined(ENABLE_NOAA)
2023-08-16 02:02:42 +08:00
uint8_t gNoaaChannel;
2023-09-14 18:30:08 +08:00
#endif
2023-08-14 19:28:09 +08:00
bool gUpdateDisplay;
2023-08-28 02:52:32 +08:00
bool gF_LOCK;
2023-08-14 19:28:09 +08:00
uint8_t gShowChPrefix;
2023-08-15 06:38:59 +08:00
volatile uint16_t gSystickCountdown2;
2023-08-30 20:21:07 +08:00
volatile uint8_t gFoundCDCSSCountdown;
volatile uint8_t gFoundCTCSSCountdown;
2023-09-03 18:47:36 +08:00
volatile uint16_t gVoxStopCountdown;
2023-08-29 20:26:13 +08:00
volatile bool gTxTimeoutReached;
2023-08-16 05:39:26 +08:00
volatile bool gNextTimeslice40ms;
2023-08-29 20:26:13 +08:00
volatile bool gSchedulePowerSave;
2023-08-15 18:14:43 +08:00
volatile bool gBatterySaveCountdownExpired;
2023-09-04 19:19:19 +08:00
volatile bool gScheduleDualWatch = true;
2023-09-14 18:30:08 +08:00
#if defined(ENABLE_NOAA)
2023-09-04 19:19:19 +08:00
volatile bool gScheduleNOAA = true;
2023-09-14 18:30:08 +08:00
#endif
2023-09-07 20:30:52 +08:00
volatile bool gFlagTteComplete;
2023-09-14 05:55:14 +08:00
#if defined(ENABLE_FMRADIO)
2023-08-29 20:26:13 +08:00
volatile bool gScheduleFM;
2023-09-14 05:55:14 +08:00
#endif
2023-08-15 06:38:59 +08:00
2023-08-16 06:46:09 +08:00
uint16_t gCurrentRSSI;
2023-09-04 19:19:19 +08:00
uint8_t gIsLocked = 0xFF;
2023-09-01 06:27:02 +08:00
2023-08-14 19:28:09 +08:00
// --------
2023-08-14 19:28:09 +08:00
void NUMBER_Get(char *pDigits, uint32_t *pInteger)
{
uint32_t Value;
uint32_t Multiplier;
uint8_t i;
Multiplier = 10000000;
Value = 0;
for (i = 0; i < 8; i++) {
if (pDigits[i] > 9) {
break;
}
Value += pDigits[i] * Multiplier;
Multiplier /= 10U;
}
*pInteger = Value;
}
2023-08-14 19:28:09 +08:00
void NUMBER_ToDigits(uint32_t Value, char *pDigits)
{
uint8_t i;
for (i = 0; i < 8; i++) {
uint32_t Result = Value / 10U;
pDigits[7 - i] = Value - (Result * 10U);
Value = Result;
}
}
2023-08-28 01:04:19 +08:00
uint8_t NUMBER_AddWithWraparound(uint8_t Base, int8_t Add, uint8_t LowerLimit, uint8_t UpperLimit)
{
Base += Add;
if (Base == 0xFF || Base < LowerLimit) {
return UpperLimit;
}
if (Base > UpperLimit) {
return LowerLimit;
}
return Base;
}