mirror of
https://github.com/kamilsss655/uv-k5-firmware-custom
synced 2024-11-22 02:08:48 +00:00
Fixed boot beep compile problem
This commit is contained in:
parent
784a4dd79f
commit
ed33d14c0f
2
Makefile
2
Makefile
@ -16,7 +16,7 @@ ENABLE_WIDE_RX := 1
|
||||
ENABLE_TX_WHEN_AM := 0
|
||||
ENABLE_CTCSS_TAIL_PHASE_SHIFT := 1
|
||||
ENABLE_MAIN_KEY_HOLD := 1
|
||||
ENABLE_BOOT_BEEPS := 1
|
||||
ENABLE_BOOT_BEEPS := 0
|
||||
ENABLE_DTMF_DECODER := 1
|
||||
ENABLE_COMPANDER := 1
|
||||
#ENABLE_SINGLE_VFO_CHAN := 1
|
||||
|
@ -1200,10 +1200,8 @@ void APP_CheckKeys(void)
|
||||
// scan the hardware keys
|
||||
Key = KEYBOARD_Poll();
|
||||
|
||||
#ifdef ENABLE_BOOT_BEEPS
|
||||
if (Key != KEY_INVALID)
|
||||
boot_counter_10ms = 0; // cancel bbot beeps if any key pressed
|
||||
#endif
|
||||
|
||||
if (gKeyReading0 != Key)
|
||||
{ // new key pressed
|
||||
|
@ -325,7 +325,8 @@ const uint8_t BITMAP_TDR2[12] =
|
||||
0b01001001,
|
||||
0b00110001
|
||||
};
|
||||
#else
|
||||
#endif
|
||||
|
||||
const uint8_t BITMAP_SC[12] =
|
||||
{ // "SC"
|
||||
0b00000000,
|
||||
@ -342,7 +343,6 @@ const uint8_t BITMAP_TDR2[12] =
|
||||
0b01000001,
|
||||
0b00100010
|
||||
};
|
||||
#endif
|
||||
|
||||
const uint8_t BITMAP_Antenna[5] =
|
||||
{
|
||||
|
@ -39,10 +39,10 @@ extern const uint8_t BITMAP_TDR2[12];
|
||||
|
||||
#ifdef ENABLE_NOAA
|
||||
extern const uint8_t BITMAP_NOAA[12];
|
||||
#else
|
||||
extern const uint8_t BITMAP_SC[12];
|
||||
#endif
|
||||
|
||||
extern const uint8_t BITMAP_SC[12];
|
||||
|
||||
extern const uint8_t BITMAP_Antenna[5];
|
||||
extern const uint8_t BITMAP_AntennaLevel1[3];
|
||||
extern const uint8_t BITMAP_AntennaLevel2[3];
|
||||
|
BIN
firmware.bin
BIN
firmware.bin
Binary file not shown.
Binary file not shown.
2
main.c
2
main.c
@ -97,9 +97,7 @@ void Main(void)
|
||||
|
||||
gMenuListCount = 0;
|
||||
|
||||
#ifdef ENABLE_BOOT_BEEPS
|
||||
boot_counter_10ms = 250; // 2.5 sec
|
||||
#endif
|
||||
|
||||
if (!gChargingWithTypeC && !gBatteryDisplayLevel)
|
||||
{
|
||||
|
2
misc.c
2
misc.c
@ -198,9 +198,7 @@ volatile bool gFlagTailNoteEliminationComplete;
|
||||
volatile bool gScheduleFM;
|
||||
#endif
|
||||
|
||||
#ifdef ENABLE_BOOT_BEEPS
|
||||
volatile uint8_t boot_counter_10ms;
|
||||
#endif
|
||||
|
||||
uint16_t gCurrentRSSI;
|
||||
|
||||
|
2
misc.h
2
misc.h
@ -255,9 +255,7 @@ extern volatile bool gFlagTailNoteEliminationComplete;
|
||||
#endif
|
||||
extern uint16_t gCurrentRSSI;
|
||||
extern uint8_t gIsLocked;
|
||||
#ifdef ENABLE_BOOT_BEEPS
|
||||
extern volatile uint8_t boot_counter_10ms;
|
||||
#endif
|
||||
|
||||
void NUMBER_Get(char *pDigits, uint32_t *pInteger);
|
||||
void NUMBER_ToDigits(uint32_t Value, char *pDigits);
|
||||
|
@ -104,7 +104,5 @@ void SystickHandler(void)
|
||||
|
||||
DECREMENT(gVoxStopCountdown_10ms);
|
||||
|
||||
#ifdef ENABLE_BOOT_BEEPS
|
||||
DECREMENT(boot_counter_10ms);
|
||||
#endif
|
||||
}
|
||||
|
@ -42,14 +42,14 @@ void UI_DisplayStatus(const bool test_display)
|
||||
#ifdef ENABLE_NOAA
|
||||
if (gIsNoaaMode || test_display)
|
||||
memmove(gStatusLine + 7, BITMAP_NOAA, sizeof(BITMAP_NOAA));
|
||||
#else
|
||||
else
|
||||
#endif
|
||||
if (gScanState != SCAN_OFF ||
|
||||
gCssScanMode != CSS_SCAN_MODE_OFF ||
|
||||
gScanCssState != SCAN_CSS_STATE_OFF ||
|
||||
gScreenToDisplay == DISPLAY_SCANNER ||
|
||||
test_display)
|
||||
memmove(gStatusLine + 7, BITMAP_SC, sizeof(BITMAP_SC));
|
||||
#endif
|
||||
|
||||
#ifdef ENABLE_FMRADIO
|
||||
if (gSetting_KILLED)
|
||||
|
Loading…
Reference in New Issue
Block a user