diff --git a/Makefile b/Makefile index 0cb8200..f7de2f6 100644 --- a/Makefile +++ b/Makefile @@ -9,7 +9,7 @@ ENABLE_OVERLAY := 0 ENABLE_LTO := 1 ENABLE_UART := 1 ENABLE_UART_DEBUG := 1 -ENABLE_AIRCOPY := 0 +ENABLE_AIRCOPY := 1 ENABLE_FMRADIO := 1 ENABLE_NOAA := 1 ENABLE_VOICE := 0 @@ -25,7 +25,7 @@ ENABLE_1250HZ_STEP := 1 ENABLE_TX_WHEN_AM := 0 ENABLE_F_CAL_MENU := 0 ENABLE_CTCSS_TAIL_PHASE_SHIFT := 1 -ENABLE_BOOT_BEEPS := 0 +ENABLE_BOOT_BEEPS := 1 ENABLE_SHOW_CHARGE_LEVEL := 0 ENABLE_REVERSE_BAT_SYMBOL := 1 ENABLE_CODE_SCAN_TIMEOUT := 0 diff --git a/app/app.c b/app/app.c index ca745fc..2dad6dc 100644 --- a/app/app.c +++ b/app/app.c @@ -1429,6 +1429,7 @@ void APP_CheckKeys(void) #endif g_key_prev = key; + APP_ProcessKey(g_key_prev, true, g_key_held); g_update_status = true; @@ -1487,7 +1488,7 @@ void APP_TimeSlice10ms(void) } #ifdef ENABLE_BOOT_BEEPS - if (g_boot_counter_10ms > 0 && ((g_boot_counter_10ms % 25) == 0) + if (g_boot_counter_10ms > 0 && (g_boot_counter_10ms % 25) == 0) AUDIO_PlayBeep(BEEP_880HZ_40MS_OPTIONAL); #endif diff --git a/firmware.bin b/firmware.bin index 942c736..8c9f0ce 100644 Binary files a/firmware.bin and b/firmware.bin differ diff --git a/firmware.packed.bin b/firmware.packed.bin index 66ad7ee..a7b86bd 100644 Binary files a/firmware.packed.bin and b/firmware.packed.bin differ