mirror of
https://github.com/egzumer/uv-k5-firmware-custom
synced 2024-11-22 01:32:43 +00:00
137 lines
2.7 KiB
C
137 lines
2.7 KiB
C
/* 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 UI_MENU_H
|
|
#define UI_MENU_H
|
|
|
|
#include <stdbool.h>
|
|
#include <stdint.h>
|
|
|
|
enum
|
|
{
|
|
MENU_SQL = 0,
|
|
MENU_STEP,
|
|
MENU_TXP,
|
|
MENU_R_DCS,
|
|
MENU_R_CTCS,
|
|
MENU_T_DCS,
|
|
MENU_T_CTCS,
|
|
MENU_SFT_D,
|
|
MENU_OFFSET,
|
|
MENU_W_N,
|
|
MENU_SCR,
|
|
MENU_BCL,
|
|
MENU_MEM_CH,
|
|
MENU_SAVE,
|
|
MENU_VOX,
|
|
MENU_ABR,
|
|
MENU_TDR,
|
|
MENU_XB,
|
|
MENU_BEEP,
|
|
MENU_TOT,
|
|
#ifdef ENABLE_VOICE
|
|
MENU_VOICE,
|
|
#endif
|
|
MENU_SC_REV,
|
|
MENU_MDF,
|
|
MENU_AUTOLK,
|
|
MENU_S_ADD1,
|
|
MENU_S_ADD2,
|
|
MENU_STE,
|
|
MENU_RP_STE,
|
|
MENU_MIC,
|
|
#ifdef ENABLE_COMPANDER
|
|
MENU_COMPAND,
|
|
#endif
|
|
MENU_1_CALL,
|
|
MENU_S_LIST,
|
|
MENU_SLIST1,
|
|
MENU_SLIST2,
|
|
#ifdef ENABLE_ALARM
|
|
MENU_AL_MOD,
|
|
#endif
|
|
MENU_ANI_ID,
|
|
MENU_UPCODE,
|
|
MENU_DWCODE,
|
|
MENU_D_ST,
|
|
MENU_D_RSP,
|
|
MENU_D_HOLD,
|
|
MENU_D_PRE,
|
|
MENU_PTT_ID,
|
|
MENU_D_DCD,
|
|
MENU_D_LIST,
|
|
MENU_PONMSG,
|
|
MENU_ROGER,
|
|
MENU_VOL,
|
|
MENU_AM,
|
|
#ifdef ENABLE_NOAA
|
|
MENU_NOAA_S,
|
|
#endif
|
|
MENU_DEL_CH,
|
|
MENU_RESET,
|
|
|
|
// items after here are normally hidden
|
|
|
|
MENU_350TX,
|
|
MENU_F_LOCK,
|
|
MENU_200TX,
|
|
MENU_500TX,
|
|
MENU_350EN,
|
|
MENU_SCREN,
|
|
|
|
MENU_F_CALI // reference xtal calibration
|
|
};
|
|
|
|
extern const char MenuList[][7];
|
|
|
|
extern const char gSubMenu_TXP[3][5];
|
|
extern const char gSubMenu_SFT_D[3][4];
|
|
extern const char gSubMenu_W_N[2][7];
|
|
extern const char gSubMenu_OFF_ON[2][4];
|
|
extern const char gSubMenu_SAVE[5][4];
|
|
extern const char gSubMenu_CHAN[3][7];
|
|
#ifdef ENABLE_VOICE
|
|
extern const char gSubMenu_VOICE[3][4];
|
|
#endif
|
|
extern const char gSubMenu_SC_REV[3][3];
|
|
#ifndef ENABLE_CHAN_NAME_FREQ
|
|
extern const char gSubMenu_MDF[3][5];
|
|
#else
|
|
extern const char gSubMenu_MDF[4][8];
|
|
#endif
|
|
#ifdef ENABLE_ALARM
|
|
extern const char gSubMenu_AL_MOD[2][5];
|
|
#endif
|
|
extern const char gSubMenu_D_RSP[4][6];
|
|
extern const char gSubMenu_PTT_ID[4][5];
|
|
extern const char gSubMenu_PONMSG[4][5];
|
|
extern const char gSubMenu_ROGER[3][6];
|
|
extern const char gSubMenu_RESET[2][4];
|
|
extern const char gSubMenu_F_LOCK[6][4];
|
|
#ifdef ENABLE_COMPANDER
|
|
extern const char gSubMenu_Compand[4][6];
|
|
#endif
|
|
|
|
extern bool gIsInSubMenu;
|
|
|
|
extern uint8_t gMenuCursor;
|
|
extern int8_t gMenuScrollDirection;
|
|
extern int32_t gSubMenuSelection;
|
|
|
|
void UI_DisplayMenu(void);
|
|
|
|
#endif
|