mirror of
https://github.com/egzumer/uv-k5-firmware-custom
synced 2024-11-22 01:32:43 +00:00
Remove redudant symbol
This commit is contained in:
parent
0793b68971
commit
4fd1ab8899
@ -25,9 +25,7 @@ void ACTION_Scan(bool bRestart);
|
|||||||
#ifdef ENABLE_VOX
|
#ifdef ENABLE_VOX
|
||||||
void ACTION_Vox(void);
|
void ACTION_Vox(void);
|
||||||
#endif
|
#endif
|
||||||
#ifdef ENABLE_ALARM
|
|
||||||
//static void ACTION_AlarmOr1750(bool b1750)
|
|
||||||
#endif
|
|
||||||
#ifdef ENABLE_FMRADIO
|
#ifdef ENABLE_FMRADIO
|
||||||
void ACTION_FM(void);
|
void ACTION_FM(void);
|
||||||
#endif
|
#endif
|
||||||
|
@ -334,7 +334,7 @@ const char gSubMenu_SCRAMBLER[][7] =
|
|||||||
"3500Hz"
|
"3500Hz"
|
||||||
};
|
};
|
||||||
|
|
||||||
const t_sidefunction SIDEFUNCTIONS[] =
|
const t_sidefunction gSubMenu_SIDEFUNCTIONS[] =
|
||||||
{
|
{
|
||||||
{"NONE", ACTION_OPT_NONE},
|
{"NONE", ACTION_OPT_NONE},
|
||||||
#ifdef ENABLE_FLASHLIGHT
|
#ifdef ENABLE_FLASHLIGHT
|
||||||
@ -363,8 +363,8 @@ const t_sidefunction SIDEFUNCTIONS[] =
|
|||||||
{"BLMIN\nTMP OFF", ACTION_OPT_BLMIN_TMP_OFF}, //BackLight Minimum Temporay OFF
|
{"BLMIN\nTMP OFF", ACTION_OPT_BLMIN_TMP_OFF}, //BackLight Minimum Temporay OFF
|
||||||
#endif
|
#endif
|
||||||
};
|
};
|
||||||
const t_sidefunction* gSubMenu_SIDEFUNCTIONS = SIDEFUNCTIONS;
|
|
||||||
const uint8_t gSubMenu_SIDEFUNCTIONS_size = ARRAY_SIZE(SIDEFUNCTIONS);
|
const uint8_t gSubMenu_SIDEFUNCTIONS_size = ARRAY_SIZE(gSubMenu_SIDEFUNCTIONS);
|
||||||
|
|
||||||
bool gIsInSubMenu;
|
bool gIsInSubMenu;
|
||||||
uint8_t gMenuCursor;
|
uint8_t gMenuCursor;
|
||||||
|
@ -161,7 +161,7 @@ extern const char gSubMenu_SCRAMBLER[11][7];
|
|||||||
|
|
||||||
typedef struct {char* name; uint8_t id;} t_sidefunction;
|
typedef struct {char* name; uint8_t id;} t_sidefunction;
|
||||||
extern const uint8_t gSubMenu_SIDEFUNCTIONS_size;
|
extern const uint8_t gSubMenu_SIDEFUNCTIONS_size;
|
||||||
extern const t_sidefunction* gSubMenu_SIDEFUNCTIONS;
|
extern const t_sidefunction gSubMenu_SIDEFUNCTIONS[];
|
||||||
|
|
||||||
extern bool gIsInSubMenu;
|
extern bool gIsInSubMenu;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user