0
mirror of https://github.com/OneOfEleven/uv-k5-firmware-custom.git synced 2025-06-18 22:29:50 +03:00

Added DTMF timings menu compile option ENABLE_DTMF_TIMING_SETTINGS

This commit is contained in:
OneOfEleven
2023-12-06 09:08:24 +00:00
parent c5035f7c49
commit 049b2237b7
7 changed files with 74 additions and 57 deletions

View File

@ -41,7 +41,7 @@ ENABLE_PWRON_PASSWORD := 0
ENABLE_RESET_AES_KEY := 0
ENABLE_BIG_FREQ := 0
ENABLE_DTMF_LIVE_DECODER := 0
ENABLE_DTMF_TIMING_SETTINGS := 1
ENABLE_DTMF_TIMING_SETTINGS := 0
ENABLE_SHOW_FREQ_IN_CHAN := 1
# smaa bolf 580 B
ENABLE_SMALL_BOLD := 0
@ -336,6 +336,9 @@ endif
ifeq ($(ENABLE_DTMF_LIVE_DECODER),1)
CFLAGS += -DENABLE_DTMF_LIVE_DECODER
endif
ifeq ($(ENABLE_DTMF_TIMING_SETTINGS),1)
CFLAGS += -DENABLE_DTMF_TIMING_SETTINGS
endif
ifeq ($(ENABLE_SHOW_FREQ_IN_CHAN),1)
CFLAGS += -DENABLE_SHOW_FREQ_IN_CHAN
endif