uv-k5-firmware/misc.h

103 lines
2.5 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.
*/
#ifndef MISC_H
#define MISC_H
#include <stdbool.h>
#include <stdint.h>
extern const uint32_t *gUpperLimitFrequencyBandTable;
extern const uint32_t *gLowerLimitFrequencyBandTable;
extern bool gSetting_350TX;
extern bool gSetting_KILLED;
extern bool gSetting_200TX;
extern bool gSetting_500TX;
extern bool gSetting_350EN;
extern bool gSetting_ScrambleEnable;
extern uint8_t gSetting_F_LOCK;
extern uint32_t gCustomPasswordKey[4];
extern bool bIsCheckExistingPassword;
extern uint8_t gEEPROM_1EC0_0[8];
extern uint8_t gEEPROM_1EC0_1[8];
extern uint8_t gEEPROM_1EC0_2[8];
extern uint8_t gEEPROM_1EC0_3[8];
extern uint8_t gEEPROM_1EC8_0[8];
extern uint8_t gEEPROM_1EC8_1[8];
extern uint8_t gEEPROM_1EC8_2[8];
extern uint16_t gEEPROM_1F8A;
extern uint16_t gEEPROM_1F8C;
extern uint8_t gEEPROM_1F8E;
extern uint8_t gMR_ChannelParameters[207];
extern uint8_t g_2000036B;
extern uint8_t g_2000036F;
extern uint8_t g_20000381;
extern uint8_t g_2000036E;
extern uint8_t gF_LOCK;
2023-08-14 05:40:33 +08:00
extern uint8_t g_200003AA;
extern uint8_t g_2000042F;
extern uint8_t g_200003AE;
extern uint8_t g_200003AB;
extern uint8_t g_200003AD;
extern uint8_t g_200003AF;
extern uint8_t g_200003B0;
extern uint8_t g_20000342;
extern uint8_t gSystickFlag10;
extern uint8_t g_20000375;
extern uint8_t g_20000376;
extern uint8_t gSystickCountdown4;
extern uint8_t gSystickCountdown3;
extern uint8_t g_20000377;
extern uint8_t gSystickCountdown2;
2023-08-14 06:08:01 +08:00
extern uint8_t g_2000037E;
extern uint8_t g_2000044C;
extern bool gMaybeVsync;
extern uint8_t gDebounceCounter;
extern bool gUpdateDisplay;
2023-08-14 05:40:33 +08:00
extern uint8_t gCopyOfCodeType;
extern uint8_t g_20000D0C[16];
extern bool gIsNoaaMode;
extern bool gNoaaChannel;
extern uint8_t gCodeType;
extern uint8_t gCode;
extern uint8_t gNumberOffset;
extern uint8_t gNumberForPrintf[8];
2023-08-14 05:40:33 +08:00
extern uint16_t g_200003B6;
// --------
void NUMBER_Append(uint8_t Digit);
void NUMBER_Get(uint8_t *pDigits, uint32_t *pInteger);
#endif