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

added compile option for showing a frequencies channel

This commit is contained in:
OneOfEleven
2023-11-06 16:20:02 +00:00
parent 3779c5a36b
commit 88141810cb
3 changed files with 25 additions and 18 deletions

View File

@ -42,6 +42,7 @@ ENABLE_MDC1200_SIDE_BEEP := 1
ENABLE_PWRON_PASSWORD := 0
ENABLE_RESET_AES_KEY := 0
ENABLE_BIG_FREQ := 0
ENABLE_SHOW_FREQS_CHAN := 1
# smaa bolf 580 B
ENABLE_SMALL_BOLD := 1
# smallest font 2 kB
@ -325,6 +326,9 @@ endif
ifeq ($(ENABLE_BIG_FREQ),1)
CFLAGS += -DENABLE_BIG_FREQ
endif
ifeq ($(ENABLE_SHOW_FREQS_CHAN),1)
CFLAGS += -DENABLE_SHOW_FREQS_CHAN
endif
ifeq ($(ENABLE_SMALL_BOLD),1)
CFLAGS += -DENABLE_SMALL_BOLD
endif