Compare commits
95 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
7607f0a4bd | ||
|
|
f2cdf1975f | ||
|
|
eeee11cf1b | ||
|
|
1da45d5a77 | ||
|
|
1098e8c386 | ||
|
|
ce2dd10d45 | ||
|
|
a22760c0b4 | ||
|
|
aa92e93c56 | ||
|
|
dc1808b1fe | ||
|
|
dff4384dbe | ||
|
|
f85ed9440d | ||
|
|
604a5b430f | ||
|
|
ed5ebc4854 | ||
|
|
c74c0d20fc | ||
|
|
46e2d1a0fd | ||
|
|
adbc466c49 | ||
|
|
f8ff71aaa3 | ||
|
|
ea3b5b23a9 | ||
|
|
8941576887 | ||
|
|
04b0bd8c93 | ||
|
|
4efabfc2b6 | ||
|
|
9472bbb58b | ||
|
|
685ecb062b | ||
|
|
3bf993d8b8 | ||
|
|
01ccaaf212 | ||
|
|
ed5ae7842b | ||
|
|
ac8c51d605 | ||
|
|
429cffc0bc | ||
|
|
fbdaf6631d | ||
|
|
f8feef1ad5 | ||
|
|
42a45a7ef2 | ||
|
|
3f012b3afe | ||
|
|
289418f1c7 | ||
|
|
ea733115de | ||
|
|
e5cff16d98 | ||
|
|
f35ce8d789 | ||
|
|
36ecde86e9 | ||
|
|
8f6e1be5e0 | ||
|
|
cceba5a474 | ||
|
|
1882ab0cc1 | ||
|
|
995045006f | ||
|
|
38ec40b0db | ||
|
|
cbf4a7c140 | ||
|
|
7a7010da55 | ||
|
|
78a45d9bbd | ||
|
|
f8ef687026 | ||
|
|
1281bbf033 | ||
|
|
edf1f983d6 | ||
|
|
b0d131d546 | ||
|
|
ab61c4e74f | ||
|
|
986c0ce368 | ||
|
|
e929a79765 | ||
|
|
d75209bad0 | ||
|
|
ee0ba9886d | ||
|
|
084fe4dd26 | ||
|
|
a715389a8b | ||
|
|
6f1cabc807 | ||
|
|
a08420a0b7 | ||
|
|
1f4f026162 | ||
|
|
34f2168856 | ||
|
|
bc9bb489e6 | ||
|
|
7d982f1f8d | ||
|
|
2cc60da9ab | ||
|
|
39eb3e835e | ||
|
|
0d66eb8577 | ||
|
|
13b6bb06b2 | ||
|
|
88f3537af0 | ||
|
|
de8c501d65 | ||
|
|
76bbaf9442 | ||
|
|
c4d9cfc895 | ||
|
|
2a75f8a9be | ||
|
|
e7a21c470f | ||
|
|
fc679c77a4 | ||
|
|
1151cf8667 | ||
|
|
af6b542da1 | ||
|
|
cc49a5007c | ||
|
|
a99d2dd1b1 | ||
|
|
9dc79ce868 | ||
|
|
80fa310646 | ||
|
|
7f5236c44e | ||
|
|
4b583bf2bd | ||
|
|
fa5d3c1594 | ||
|
|
1a53586922 | ||
|
|
687b63abb6 | ||
|
|
06f1c651bc | ||
|
|
33e4e3c4e0 | ||
|
|
93b97eff0a | ||
|
|
8638d37431 | ||
|
|
716e9e23b8 | ||
|
|
d0ae34f9b4 | ||
|
|
bd17aea72b | ||
|
|
34d688b101 | ||
|
|
8c7f736797 | ||
|
|
a19579a888 | ||
|
|
00a2bc75b8 |
2
.gitignore
vendored
@@ -7,3 +7,5 @@ firmware
|
|||||||
.cache
|
.cache
|
||||||
compile_commands.json
|
compile_commands.json
|
||||||
.vscode
|
.vscode
|
||||||
|
/docs
|
||||||
|
k5_eeprom.raw
|
||||||
|
|||||||
17
Doxyfile
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
OUTPUT_DIRECTORY = docs
|
||||||
|
GENERATE_LATEX = NO
|
||||||
|
GENERATE_RTF = NO
|
||||||
|
GENERATE_MAN = NO
|
||||||
|
OPTIMIZE_OUTPUT_FOR_C = YES
|
||||||
|
HAVE_DOT = YES
|
||||||
|
EXTRACT_ALL = YES
|
||||||
|
EXTRACT_PRIVATE = YES
|
||||||
|
EXTRACT_STATIC = YES
|
||||||
|
CALL_GRAPH = YES
|
||||||
|
CALLER_GRAPH = YES
|
||||||
|
DISABLE_INDEX = YES
|
||||||
|
GENERATE_TREEVIEW = YES
|
||||||
|
RECURSIVE = YES
|
||||||
|
COLLABORATION_GRAPH = YES
|
||||||
|
GRAPHICAL_HIERARCHY = YES
|
||||||
|
DOT_MULTI_TARGETS = YES
|
||||||
132
Makefile
@@ -3,52 +3,54 @@
|
|||||||
# 0 = disable
|
# 0 = disable
|
||||||
# 1 = enable
|
# 1 = enable
|
||||||
|
|
||||||
# ---- COMPILER/LINKER OPTIONS ----
|
|
||||||
ENABLE_CLANG := 0
|
|
||||||
ENABLE_SWD := 0
|
|
||||||
ENABLE_OVERLAY := 0
|
|
||||||
ENABLE_LTO := 1
|
|
||||||
|
|
||||||
# ---- STOCK QUANSHENG FERATURES ----
|
# ---- STOCK QUANSHENG FERATURES ----
|
||||||
ENABLE_UART := 1
|
ENABLE_UART ?= 1
|
||||||
ENABLE_AIRCOPY := 0
|
ENABLE_AIRCOPY ?= 0
|
||||||
ENABLE_FMRADIO := 1
|
ENABLE_FMRADIO ?= 1
|
||||||
ENABLE_NOAA := 0
|
ENABLE_NOAA ?= 0
|
||||||
ENABLE_VOICE := 0
|
ENABLE_VOICE ?= 0
|
||||||
ENABLE_VOX := 1
|
ENABLE_VOX ?= 1
|
||||||
ENABLE_ALARM := 0
|
ENABLE_ALARM ?= 0
|
||||||
ENABLE_TX1750 := 0
|
ENABLE_TX1750 ?= 0
|
||||||
ENABLE_PWRON_PASSWORD := 0
|
ENABLE_PWRON_PASSWORD ?= 0
|
||||||
ENABLE_DTMF_CALLING := 1
|
ENABLE_DTMF_CALLING ?= 1
|
||||||
ENABLE_FLASHLIGHT := 1
|
ENABLE_FLASHLIGHT ?= 1
|
||||||
|
|
||||||
# ---- CUSTOM MODS ----
|
# ---- CUSTOM MODS ----
|
||||||
ENABLE_BIG_FREQ := 1
|
ENABLE_BIG_FREQ ?= 1
|
||||||
ENABLE_SMALL_BOLD := 1
|
ENABLE_SMALL_BOLD ?= 1
|
||||||
ENABLE_KEEP_MEM_NAME := 1
|
ENABLE_CUSTOM_MENU_LAYOUT ?= 1
|
||||||
ENABLE_WIDE_RX := 1
|
ENABLE_KEEP_MEM_NAME ?= 1
|
||||||
ENABLE_TX_WHEN_AM := 0
|
ENABLE_WIDE_RX ?= 1
|
||||||
ENABLE_F_CAL_MENU := 0
|
ENABLE_TX_WHEN_AM ?= 0
|
||||||
ENABLE_CTCSS_TAIL_PHASE_SHIFT := 0
|
ENABLE_F_CAL_MENU ?= 0
|
||||||
ENABLE_BOOT_BEEPS := 0
|
ENABLE_CTCSS_TAIL_PHASE_SHIFT ?= 0
|
||||||
ENABLE_SHOW_CHARGE_LEVEL := 0
|
ENABLE_BOOT_BEEPS ?= 0
|
||||||
ENABLE_REVERSE_BAT_SYMBOL := 0
|
ENABLE_SHOW_CHARGE_LEVEL ?= 0
|
||||||
ENABLE_NO_CODE_SCAN_TIMEOUT := 1
|
ENABLE_REVERSE_BAT_SYMBOL ?= 0
|
||||||
ENABLE_AM_FIX := 1
|
ENABLE_NO_CODE_SCAN_TIMEOUT ?= 1
|
||||||
ENABLE_SQUELCH_MORE_SENSITIVE := 1
|
ENABLE_AM_FIX ?= 1
|
||||||
ENABLE_FASTER_CHANNEL_SCAN := 1
|
ENABLE_SQUELCH_MORE_SENSITIVE ?= 1
|
||||||
ENABLE_RSSI_BAR := 1
|
ENABLE_FASTER_CHANNEL_SCAN ?= 1
|
||||||
ENABLE_AUDIO_BAR := 1
|
ENABLE_RSSI_BAR ?= 1
|
||||||
ENABLE_COPY_CHAN_TO_VFO := 1
|
ENABLE_AUDIO_BAR ?= 1
|
||||||
ENABLE_SPECTRUM := 1
|
ENABLE_COPY_CHAN_TO_VFO ?= 1
|
||||||
ENABLE_REDUCE_LOW_MID_TX_POWER:= 0
|
ENABLE_SPECTRUM ?= 1
|
||||||
ENABLE_BYP_RAW_DEMODULATORS := 0
|
ENABLE_REDUCE_LOW_MID_TX_POWER?= 0
|
||||||
ENABLE_BLMIN_TMP_OFF := 0
|
ENABLE_BYP_RAW_DEMODULATORS ?= 0
|
||||||
ENABLE_SCAN_RANGES := 1
|
ENABLE_BLMIN_TMP_OFF ?= 0
|
||||||
|
ENABLE_SCAN_RANGES ?= 1
|
||||||
|
|
||||||
# ---- DEBUGGING ----
|
# ---- DEBUGGING ----
|
||||||
ENABLE_AM_FIX_SHOW_DATA := 0
|
ENABLE_AM_FIX_SHOW_DATA ?= 0
|
||||||
ENABLE_AGC_SHOW_DATA := 0
|
ENABLE_AGC_SHOW_DATA ?= 0
|
||||||
|
ENABLE_UART_RW_BK_REGS ?= 0
|
||||||
|
|
||||||
|
# ---- COMPILER/LINKER OPTIONS ----
|
||||||
|
ENABLE_CLANG ?= 0
|
||||||
|
ENABLE_SWD ?= 0
|
||||||
|
ENABLE_OVERLAY ?= 0
|
||||||
|
ENABLE_LTO ?= 1
|
||||||
|
|
||||||
#############################################################
|
#############################################################
|
||||||
|
|
||||||
@@ -167,24 +169,18 @@ OBJS += ui/welcome.o
|
|||||||
OBJS += version.o
|
OBJS += version.o
|
||||||
OBJS += main.o
|
OBJS += main.o
|
||||||
|
|
||||||
ifeq ($(OS), Windows_NT)
|
ifeq ($(OS), Windows_NT) # windows
|
||||||
TOP := $(dir $(realpath $(lastword $(MAKEFILE_LIST))))
|
TOP := $(dir $(realpath $(lastword $(MAKEFILE_LIST))))
|
||||||
else
|
RM = del /Q
|
||||||
TOP := $(shell pwd)
|
FixPath = $(subst /,\,$1)
|
||||||
endif
|
WHERE = where
|
||||||
|
NULL_OUTPUT = nul
|
||||||
ifdef OS # windows
|
|
||||||
RM = del /Q
|
|
||||||
FixPath = $(subst /,\,$1)
|
|
||||||
WHERE = where
|
|
||||||
NULL_OUTPUT = nul
|
|
||||||
else # unix
|
else # unix
|
||||||
ifeq ($(shell uname), Linux)
|
TOP := $(shell pwd)
|
||||||
RM = rm -f
|
RM = rm -f
|
||||||
FixPath = $1
|
FixPath = $1
|
||||||
WHERE = which
|
WHERE = which
|
||||||
NULL_OUTPUT = /dev/null
|
NULL_OUTPUT = /dev/null
|
||||||
endif
|
|
||||||
endif
|
endif
|
||||||
|
|
||||||
AS = arm-none-eabi-gcc
|
AS = arm-none-eabi-gcc
|
||||||
@@ -204,15 +200,20 @@ endif
|
|||||||
OBJCOPY = arm-none-eabi-objcopy
|
OBJCOPY = arm-none-eabi-objcopy
|
||||||
SIZE = arm-none-eabi-size
|
SIZE = arm-none-eabi-size
|
||||||
|
|
||||||
AUTHOR_STRING := EGZUMER
|
AUTHOR_STRING ?= EGZUMER
|
||||||
# the user might not have/want git installed
|
# the user might not have/want git installed
|
||||||
# can set own version string here (max 7 chars)
|
# can set own version string here (max 7 chars)
|
||||||
ifneq (, $(shell $(WHERE) git))
|
ifneq (, $(shell $(WHERE) git))
|
||||||
VERSION_STRING := $(shell git describe --tags --exact-match 2>$(NULL_OUTPUT))
|
VERSION_STRING ?= $(shell git describe --tags --exact-match 2>$(NULL_OUTPUT))
|
||||||
ifeq (, $(VERSION_STRING))
|
ifeq (, $(VERSION_STRING))
|
||||||
VERSION_STRING := $(shell git rev-parse --short HEAD)
|
VERSION_STRING := $(shell git rev-parse --short HEAD)
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
|
# If there is still no VERSION_STRING we need to make one.
|
||||||
|
# It is needed for the firmware packing script
|
||||||
|
ifeq (, $(VERSION_STRING))
|
||||||
|
VERSION_STRING := NOGIT
|
||||||
|
endif
|
||||||
#VERSION_STRING := 230930b
|
#VERSION_STRING := 230930b
|
||||||
|
|
||||||
|
|
||||||
@@ -317,7 +318,7 @@ ifeq ($(ENABLE_REVERSE_BAT_SYMBOL),1)
|
|||||||
CFLAGS += -DENABLE_REVERSE_BAT_SYMBOL
|
CFLAGS += -DENABLE_REVERSE_BAT_SYMBOL
|
||||||
endif
|
endif
|
||||||
ifeq ($(ENABLE_NO_CODE_SCAN_TIMEOUT),1)
|
ifeq ($(ENABLE_NO_CODE_SCAN_TIMEOUT),1)
|
||||||
CFLAGS += -DENABLE_CODE_SCAN_TIMEOUT
|
CFLAGS += -DENABLE_NO_CODE_SCAN_TIMEOUT
|
||||||
endif
|
endif
|
||||||
ifeq ($(ENABLE_AM_FIX),1)
|
ifeq ($(ENABLE_AM_FIX),1)
|
||||||
CFLAGS += -DENABLE_AM_FIX
|
CFLAGS += -DENABLE_AM_FIX
|
||||||
@@ -370,6 +371,12 @@ endif
|
|||||||
ifeq ($(ENABLE_FLASHLIGHT),1)
|
ifeq ($(ENABLE_FLASHLIGHT),1)
|
||||||
CFLAGS += -DENABLE_FLASHLIGHT
|
CFLAGS += -DENABLE_FLASHLIGHT
|
||||||
endif
|
endif
|
||||||
|
ifeq ($(ENABLE_UART_RW_BK_REGS),1)
|
||||||
|
CFLAGS += -DENABLE_UART_RW_BK_REGS
|
||||||
|
endif
|
||||||
|
ifeq ($(ENABLE_CUSTOM_MENU_LAYOUT),1)
|
||||||
|
CFLAGS += -DENABLE_CUSTOM_MENU_LAYOUT
|
||||||
|
endif
|
||||||
|
|
||||||
LDFLAGS =
|
LDFLAGS =
|
||||||
LDFLAGS += -z noexecstack -mcpu=cortex-m0 -nostartfiles -Wl,-T,firmware.ld -Wl,--gc-sections
|
LDFLAGS += -z noexecstack -mcpu=cortex-m0 -nostartfiles -Wl,-T,firmware.ld -Wl,--gc-sections
|
||||||
@@ -447,3 +454,6 @@ bsp/dp32g030/%.h: hardware/dp32g030/%.def
|
|||||||
|
|
||||||
clean:
|
clean:
|
||||||
$(RM) $(call FixPath, $(TARGET).bin $(TARGET).packed.bin $(TARGET) $(OBJS) $(DEPS))
|
$(RM) $(call FixPath, $(TARGET).bin $(TARGET).packed.bin $(TARGET) $(OBJS) $(DEPS))
|
||||||
|
|
||||||
|
doxygen:
|
||||||
|
doxygen
|
||||||
|
|||||||
146
README.md
@@ -1,10 +1,10 @@
|
|||||||
# Open re-implementation of the Quansheng UV-K5 v2.1.27 firmware
|
# Open re-implementation of the Quansheng UV-K5/K6/5R v2.1.27 firmware
|
||||||
|
|
||||||
This repository is a merge of [OneOfEleven custom firmware](https://github.com/OneOfEleven/uv-k5-firmware-custom) with [fagci spectrum analizer](https://github.com/fagci/uv-k5-firmware-fagci-mod/tree/refactor) plus my few changes.
|
This repository is a merge of [OneOfEleven custom firmware](https://github.com/OneOfEleven/uv-k5-firmware-custom) with [fagci spectrum analizer](https://github.com/fagci/uv-k5-firmware-fagci-mod/tree/refactor) plus my few changes.<br>
|
||||||
|
All is a cloned and customized version of DualTachyon's open firmware found [here](https://github.com/DualTachyon/uv-k5-firmware) ... a cool achievement !
|
||||||
|
|
||||||
All is a cloned and customized version of DualTachyon's open firmware found here ..
|
> [!TIP]
|
||||||
|
> There is a work done by others on forks of this repository. I encourage you to take a look at those too. [SEE HERE](https://github.com/egzumer/uv-k5-firmware-custom/discussions/485)
|
||||||
https://github.com/DualTachyon/uv-k5-firmware .. a cool achievement !
|
|
||||||
|
|
||||||
> [!WARNING]
|
> [!WARNING]
|
||||||
> Use this firmware at your own risk (entirely). There is absolutely no guarantee that it will work in any way shape or form on your radio(s), it may even brick your radio(s), in which case, you'd need to buy another radio.
|
> Use this firmware at your own risk (entirely). There is absolutely no guarantee that it will work in any way shape or form on your radio(s), it may even brick your radio(s), in which case, you'd need to buy another radio.
|
||||||
@@ -19,6 +19,7 @@ Anyway, have fun.
|
|||||||
* [Compiler](#compiler)
|
* [Compiler](#compiler)
|
||||||
* [Building](#building)
|
* [Building](#building)
|
||||||
* [Credits](#credits)
|
* [Credits](#credits)
|
||||||
|
* [Other sources of information](#other-sources-of-information)
|
||||||
* [License](#license)
|
* [License](#license)
|
||||||
* [Example changes/updates](#example-changesupdates)
|
* [Example changes/updates](#example-changesupdates)
|
||||||
|
|
||||||
@@ -47,24 +48,15 @@ Anyway, have fun.
|
|||||||
* more configurable button functions
|
* more configurable button functions
|
||||||
* long press MENU as another configurable button
|
* long press MENU as another configurable button
|
||||||
* better DCS/CTCSS scanning in the menu (`* SCAN` while in RX DCS/CTCSS menu item)
|
* better DCS/CTCSS scanning in the menu (`* SCAN` while in RX DCS/CTCSS menu item)
|
||||||
* Piotr022 s-meter style
|
* Piotr022 style s-meter
|
||||||
* restore initial freq/channel when scanning stopped with EXIT, remember last found transmission with MENU button
|
* restore initial freq/channel when scanning stopped with EXIT, remember last found transmission with MENU button
|
||||||
* reordered and renamed menu entries
|
* reordered and renamed menu entries
|
||||||
* LCD interference crash fix
|
* LCD interference crash fix
|
||||||
|
* many others...
|
||||||
|
|
||||||
## Manual
|
## Manual
|
||||||
|
|
||||||
* [Radio operation](https://github.com/egzumer/uv-k5-firmware-custom/wiki/Radio-operation)
|
Up to date manual is available in the [Wiki section](https://github.com/egzumer/uv-k5-firmware-custom/wiki)
|
||||||
|
|
||||||
* [Menu](https://github.com/egzumer/uv-k5-firmware-custom/wiki/Menu)
|
|
||||||
|
|
||||||
* [Button functions](https://github.com/egzumer/uv-k5-firmware-custom/wiki/Button-functions)
|
|
||||||
|
|
||||||
* [Spectrum analyzer](https://github.com/egzumer/uv-k5-firmware-custom/wiki/Spectrum-analyzer)
|
|
||||||
|
|
||||||
* [Flashing the firmware](https://github.com/egzumer/uv-k5-firmware-custom/wiki/Flashing-the-firmware)
|
|
||||||
|
|
||||||
<img src="images/main.jpg" width=300 /><img src="images/spectrum.jpg" width=300 /><img src="images/audiobar.jpg" width=300 /><img src="images/rssibar.jpg" width=300 />
|
|
||||||
|
|
||||||
## Radio performance
|
## Radio performance
|
||||||
|
|
||||||
@@ -88,49 +80,55 @@ You can customize the firmware by enabling/disabling various compile options, th
|
|||||||
us to remove certain firmware features in order to make room in the flash for others.
|
us to remove certain firmware features in order to make room in the flash for others.
|
||||||
You'll find the options at the top of "Makefile" ('0' = disable, '1' = enable) ..
|
You'll find the options at the top of "Makefile" ('0' = disable, '1' = enable) ..
|
||||||
|
|
||||||
```
|
|
||||||
ENABLE_CLANG := 0 **experimental, builds with clang instead of gcc (LTO will be disabled if you enable this)
|
|
||||||
ENABLE_SWD := 0 only needed if using CPU's SWD port (debugging/programming)
|
|
||||||
ENABLE_OVERLAY := 0 cpu FLASH stuff, not needed
|
|
||||||
ENABLE_LTO := 1 **experimental, reduces size of compiled firmware but might break EEPROM reads (OVERLAY will be disabled if you enable this)
|
|
||||||
|
|
||||||
ENABLE_UART := 1 without this you can't configure radio via PC !
|
|
||||||
ENABLE_AIRCOPY := 0 easier to just enter frequency with butts
|
|
||||||
ENABLE_FMRADIO := 1 WBFM VHF broadcast band receiver
|
|
||||||
ENABLE_NOAA := 0 everything NOAA (only of any use in the USA)
|
|
||||||
ENABLE_VOICE := 0 want to hear voices ?
|
|
||||||
ENABLE_VOX := 1
|
|
||||||
ENABLE_ALARM := 0 TX alarms
|
|
||||||
ENABLE_TX1750 := 0 side key 1750Hz TX tone (older style repeater access)
|
|
||||||
ENABLE_PWRON_PASSWORD := 0 power-on password stuff
|
|
||||||
ENABLE_DTMF_CALLING := 1 DTMF calling fuctionality, sending calls, receiving calls, group calls, contacts list etc.
|
|
||||||
ENABLE_FLASHLIGHT := 1 enable top flashlight LED (on, blink, SOS)
|
|
||||||
|
|
||||||
ENABLE_BIG_FREQ := 1 big font frequencies (like original QS firmware)
|
|
||||||
ENABLE_SMALL_BOLD := 1 bold channel name/no. (when name + freq channel display mode)
|
|
||||||
ENABLE_KEEP_MEM_NAME := 1 maintain channel name when (re)saving memory channel
|
|
||||||
ENABLE_WIDE_RX := 1 full 18MHz to 1300MHz RX (though front-end/PA not designed for full range)
|
|
||||||
ENABLE_TX_WHEN_AM := 0 allow TX (always FM) when RX is set to AM
|
|
||||||
ENABLE_F_CAL_MENU := 0 enable the radios hidden frequency calibration menu
|
|
||||||
ENABLE_CTCSS_TAIL_PHASE_SHIFT := 0 standard CTCSS tail phase shift rather than QS's own 55Hz tone method
|
|
||||||
ENABLE_BOOT_BEEPS := 0 gives user audio feedback on volume knob position at boot-up
|
|
||||||
ENABLE_SHOW_CHARGE_LEVEL := 1 show the charge level when the radio is on charge
|
|
||||||
ENABLE_REVERSE_BAT_SYMBOL := 0 mirror the battery symbol on the status bar (+ pole on the right)
|
|
||||||
ENABLE_NO_CODE_SCAN_TIMEOUT := 1 disable 32-sec CTCSS/DCS scan timeout (press exit butt instead of time-out to end scan)
|
|
||||||
ENABLE_AM_FIX := 1 dynamically adjust the front end gains when in AM mode to help prevent AM demodulator saturation, ignore the on-screen RSSI level (for now)
|
|
||||||
ENABLE_AM_FIX_SHOW_DATA := 0 show debug data for the AM fix
|
|
||||||
ENABLE_SQUELCH_MORE_SENSITIVE := 1 make squelch levels a little bit more sensitive - I plan to let user adjust the values themselves
|
|
||||||
ENABLE_FASTER_CHANNEL_SCAN := 1 increases the channel scan speed, but the squelch is also made more twitchy
|
|
||||||
ENABLE_RSSI_BAR := 1 enable a dBm/Sn RSSI bar graph level in place of the little antenna symbols
|
|
||||||
ENABLE_AUDIO_BAR := 1 experimental, display an audio bar level when TX'ing
|
|
||||||
ENABLE_COPY_CHAN_TO_VFO := 1 copy current channel into the other VFO. Long press `1 BAND` when in channel mode
|
|
||||||
ENABLE_SPECTRUM := 1 fagci spectrum analyzer, activated with `F` + `5 NOAA`
|
|
||||||
ENABLE_REDUCE_LOW_MID_TX_POWER:= 0 makes medium and low power settings even lower
|
|
||||||
ENABLE_BYP_RAW_DEMODULATORS := 0 additional BYP (bypass?) and RAW demodulation options, proved not to be very useful, but it is there if you want to experiment
|
|
||||||
ENABLE_BLMIN_TMP_OFF := 0 additional function for configurable buttons that toggles `BLMin` on and off wihout saving it to the EEPROM
|
|
||||||
ENABLE_SCAN_RANGES := 1 scan range mode for frequency scanning, see wiki for instructions (radio operation -> frequency scanning)
|
|
||||||
```
|
|
||||||
|
|
||||||
|
|Build option | Description |
|
||||||
|
| --- | ---- |
|
||||||
|
|🧰 **STOCK QUANSHENG FEATURES**||
|
||||||
|
| ENABLE_UART | without this you can't configure radio via PC ! |
|
||||||
|
| ENABLE_AIRCOPY | easier to just enter frequency with butts |
|
||||||
|
| ENABLE_FMRADIO | WBFM VHF broadcast band receiver |
|
||||||
|
| ENABLE_NOAA | everything NOAA (only of any use in the USA) |
|
||||||
|
| ENABLE_VOICE | want to hear voices ? |
|
||||||
|
| ENABLE_VOX | |
|
||||||
|
| ENABLE_ALARM | TX alarms |
|
||||||
|
| ENABLE_TX1750 | side key 1750Hz TX tone (older style repeater access)|
|
||||||
|
| ENABLE_PWRON_PASSWORD | power-on password stuff |
|
||||||
|
| ENABLE_DTMF_CALLING | DTMF calling fuctionality, sending calls, receiving calls, group calls, contacts list etc. |
|
||||||
|
| ENABLE_FLASHLIGHT | enable top flashlight LED (on, blink, SOS) |
|
||||||
|
|🧰 **CUSTOM MODS**||
|
||||||
|
| ENABLE_BIG_FREQ | big font frequencies (like original QS firmware) |
|
||||||
|
| ENABLE_SMALL_BOLD | bold channel name/no. (when name + freq channel display mode) |
|
||||||
|
| ENABLE_CUSTOM_MENU_LAYOUT | changes how the menu looks like |
|
||||||
|
| ENABLE_KEEP_MEM_NAME | maintain channel name when (re)saving memory channel|
|
||||||
|
| ENABLE_WIDE_RX | full 18MHz to 1300MHz RX (though front-end/PA not designed for full range)|
|
||||||
|
| ENABLE_TX_WHEN_AM | allow TX (always FM) when RX is set to AM|
|
||||||
|
| ENABLE_F_CAL_MENU | enable the radios hidden frequency calibration menu |
|
||||||
|
| ENABLE_CTCSS_TAIL_PHASE_SHIFT | standard CTCSS tail phase shift rather than QS's own 55Hz tone method|
|
||||||
|
| ENABLE_BOOT_BEEPS | gives user audio feedback on volume knob position at boot-up |
|
||||||
|
| ENABLE_SHOW_CHARGE_LEVEL | show the charge level when the radio is on charge |
|
||||||
|
| ENABLE_REVERSE_BAT_SYMBOL | mirror the battery symbol on the status bar (+ pole on the right) |
|
||||||
|
| ENABLE_NO_CODE_SCAN_TIMEOUT | disable 32-sec CTCSS/DCS scan timeout (press exit butt instead of time-out to end scan) |
|
||||||
|
| ENABLE_AM_FIX | dynamically adjust the front end gains when in AM mode to help prevent AM demodulator saturation, ignore the on-screen RSSI level (for now) |
|
||||||
|
| ENABLE_AM_FIX_SHOW_DATA | show debug data for the AM fix |
|
||||||
|
| ENABLE_SQUELCH_MORE_SENSITIVE | make squelch levels a little bit more sensitive - I plan to let user adjust the values themselves |
|
||||||
|
| ENABLE_FASTER_CHANNEL_SCAN | increases the channel scan speed, but the squelch is also made more twitchy |
|
||||||
|
| ENABLE_RSSI_BAR | enable a dBm/Sn RSSI bar graph level in place of the little antenna symbols |
|
||||||
|
| ENABLE_AUDIO_BAR | experimental, display an audio bar level when TX'ing |
|
||||||
|
| ENABLE_COPY_CHAN_TO_VFO | copy current channel settings into frequency mode. Long press `1 BAND` when in channel mode |
|
||||||
|
| ENABLE_SPECTRUM | fagci spectrum analyzer, activated with `F` + `5 NOAA`|
|
||||||
|
| ENABLE_REDUCE_LOW_MID_TX_POWER | makes medium and low power settings even lower |
|
||||||
|
| ENABLE_BYP_RAW_DEMODULATORS | additional BYP (bypass?) and RAW demodulation options, proved not to be very useful, but it is there if you want to experiment |
|
||||||
|
| ENABLE_BLMIN_TMP_OFF | additional function for configurable buttons that toggles `BLMin` on and off wihout saving it to the EEPROM |
|
||||||
|
| ENABLE_SCAN_RANGES | scan range mode for frequency scanning, see wiki for instructions (radio operation -> frequency scanning) |
|
||||||
|
|🧰 **DEBUGGING** ||
|
||||||
|
| ENABLE_AM_FIX_SHOW_DATA| displays settings used by AM-fix when AM transmission is received |
|
||||||
|
| ENABLE_AGC_SHOW_DATA | displays AGC settings |
|
||||||
|
| ENABLE_UART_RW_BK_REGS | adds 2 extra commands that allow to read and write BK4819 registers |
|
||||||
|
|🧰 **COMPILER/LINKER OPTIONS**||
|
||||||
|
| ENABLE_CLANG | **experimental, builds with clang instead of gcc (LTO will be disabled if you enable this) |
|
||||||
|
| ENABLE_SWD | only needed if using CPU's SWD port (debugging/programming) |
|
||||||
|
| ENABLE_OVERLAY | cpu FLASH stuff, not needed |
|
||||||
|
| ENABLE_LTO | reduces size of compiled firmware but might break EEPROM reads (OVERLAY will be disabled if you enable this) |
|
||||||
|
|
||||||
## Compiler
|
## Compiler
|
||||||
|
|
||||||
@@ -143,10 +141,31 @@ You can get it from: https://releases.llvm.org/download.html
|
|||||||
|
|
||||||
## Building
|
## Building
|
||||||
|
|
||||||
|
### Github Codespace build method
|
||||||
|
|
||||||
|
This is the least demanding option as you don't have to install enything on your computer. All you need is Github account.
|
||||||
|
|
||||||
|
1. Go to https://github.com/egzumer/uv-k5-firmware-custom
|
||||||
|
1. Click green `Code` button
|
||||||
|
1. Change tab from `Local` to `Codespace`
|
||||||
|
1. Click green `Create codespace on main` button
|
||||||
|
|
||||||
|
<img src="images/codespace1.png" width=700 />
|
||||||
|
|
||||||
|
5. Open `Makefile`
|
||||||
|
1. Edit build options, save `Makefile` changes
|
||||||
|
1. Run `./compile-with-docker.sh` in terminal window
|
||||||
|
1. Open folder `compiled-firmware`
|
||||||
|
1. Right click `firmware.packed.bin`
|
||||||
|
1. Click `Download`, now you should have a firmware on your computer that you can proceed to flash on your radio. You can use [online flasher](https://egzumer.github.io/uvtools)
|
||||||
|
|
||||||
|
<img src="images/codespace2.png" width=700 />
|
||||||
|
|
||||||
|
### Docker build method
|
||||||
|
|
||||||
If you have docker installed you can use [compile-with-docker.bat](./compile-with-docker.bat) (Windows) or [compile-with-docker.sh](./compile-with-docker.sh) (Linux/Mac), the output files are created in `compiled-firmware` folder. This method gives significantly smaller binaries, I've seen differences up to 1kb, so it can fit more functionalities this way. The challenge can be (or not) installing docker itself.
|
If you have docker installed you can use [compile-with-docker.bat](./compile-with-docker.bat) (Windows) or [compile-with-docker.sh](./compile-with-docker.sh) (Linux/Mac), the output files are created in `compiled-firmware` folder. This method gives significantly smaller binaries, I've seen differences up to 1kb, so it can fit more functionalities this way. The challenge can be (or not) installing docker itself.
|
||||||
|
|
||||||
|
### Windows environment build method
|
||||||
To compile directly in windows:
|
|
||||||
|
|
||||||
1. Open windows command line and run:
|
1. Open windows command line and run:
|
||||||
```
|
```
|
||||||
@@ -191,6 +210,11 @@ Many thanks to various people on Telegram for putting up with me during this eff
|
|||||||
* @d1ced95
|
* @d1ced95
|
||||||
* and others I forget
|
* and others I forget
|
||||||
|
|
||||||
|
## Other sources of information
|
||||||
|
|
||||||
|
[ludwich66 - Quansheng UV-K5 Wiki](https://github.com/ludwich66/Quansheng_UV-K5_Wiki/wiki)<br>
|
||||||
|
[amnemonic - tools and sources of information](https://github.com/amnemonic/Quansheng_UV-K5_Firmware)
|
||||||
|
|
||||||
## License
|
## License
|
||||||
|
|
||||||
Copyright 2023 Dual Tachyon
|
Copyright 2023 Dual Tachyon
|
||||||
|
|||||||
25
am_fix.c
@@ -30,6 +30,9 @@
|
|||||||
#include "functions.h"
|
#include "functions.h"
|
||||||
#include "misc.h"
|
#include "misc.h"
|
||||||
#include "settings.h"
|
#include "settings.h"
|
||||||
|
#ifdef ENABLE_AGC_SHOW_DATA
|
||||||
|
#include "ui/main.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
#ifdef ENABLE_AM_FIX
|
#ifdef ENABLE_AM_FIX
|
||||||
|
|
||||||
@@ -140,8 +143,8 @@ static const t_gain_table gain_table[] =
|
|||||||
{0x03BF,-4}, // 40 .. 3 5 3 7 .. 0dB -4dB 0dB 0dB .. -4dB
|
{0x03BF,-4}, // 40 .. 3 5 3 7 .. 0dB -4dB 0dB 0dB .. -4dB
|
||||||
{0x03DF,-2}, // 41 .. 3 6 3 7 .. 0dB - 2dB 0dB 0dB .. -2dB
|
{0x03DF,-2}, // 41 .. 3 6 3 7 .. 0dB - 2dB 0dB 0dB .. -2dB
|
||||||
{0x03FF,0} // 42 .. 3 7 3 7 .. 0dB 0dB 0dB 0dB .. 0dB
|
{0x03FF,0} // 42 .. 3 7 3 7 .. 0dB 0dB 0dB 0dB .. 0dB
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
const uint8_t gain_table_size = ARRAY_SIZE(gain_table);
|
const uint8_t gain_table_size = ARRAY_SIZE(gain_table);
|
||||||
#else
|
#else
|
||||||
|
|
||||||
@@ -260,22 +263,11 @@ void AM_fix_10ms(const unsigned vfo)
|
|||||||
if(!gSetting_AM_fix || !enabled || vfo > 1 )
|
if(!gSetting_AM_fix || !enabled || vfo > 1 )
|
||||||
return;
|
return;
|
||||||
|
|
||||||
switch (gCurrentFunction)
|
if (gCurrentFunction != FUNCTION_FOREGROUND && !FUNCTION_IsRx()) {
|
||||||
{
|
|
||||||
case FUNCTION_TRANSMIT:
|
|
||||||
case FUNCTION_BAND_SCOPE:
|
|
||||||
case FUNCTION_POWER_SAVE:
|
|
||||||
#ifdef ENABLE_AM_FIX_SHOW_DATA
|
#ifdef ENABLE_AM_FIX_SHOW_DATA
|
||||||
counter = display_update_rate; // queue up a display update as soon as we switch to RX mode
|
counter = display_update_rate; // queue up a display update as soon as we switch to RX mode
|
||||||
#endif
|
#endif
|
||||||
return;
|
return;
|
||||||
|
|
||||||
// only adjust stuff if we're in one of these modes
|
|
||||||
case FUNCTION_FOREGROUND:
|
|
||||||
case FUNCTION_RECEIVE:
|
|
||||||
case FUNCTION_MONITOR:
|
|
||||||
case FUNCTION_INCOMING:
|
|
||||||
break;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef ENABLE_AM_FIX_SHOW_DATA
|
#ifdef ENABLE_AM_FIX_SHOW_DATA
|
||||||
@@ -370,6 +362,9 @@ void AM_fix_10ms(const unsigned vfo)
|
|||||||
gain_table_index_prev[vfo] = index;
|
gain_table_index_prev[vfo] = index;
|
||||||
currentGainDiff = gain_table[0].gain_dB - gain_table[index].gain_dB;
|
currentGainDiff = gain_table[0].gain_dB - gain_table[index].gain_dB;
|
||||||
BK4819_WriteRegister(BK4819_REG_13, gain_table[index].reg_val);
|
BK4819_WriteRegister(BK4819_REG_13, gain_table[index].reg_val);
|
||||||
|
#ifdef ENABLE_AGC_SHOW_DATA
|
||||||
|
UI_MAIN_PrintAGC(true);
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef ENABLE_AM_FIX_SHOW_DATA
|
#ifdef ENABLE_AM_FIX_SHOW_DATA
|
||||||
|
|||||||
38
app/action.c
@@ -53,11 +53,14 @@ inline static void ACTION_Alarm() { ACTION_AlarmOr1750(false); }
|
|||||||
inline static void ACTION_1750() { ACTION_AlarmOr1750(true); };
|
inline static void ACTION_1750() { ACTION_AlarmOr1750(true); };
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifdef ENABLE_SPECTRUM
|
||||||
|
#include "app/spectrum.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
inline static void ACTION_ScanRestart() { ACTION_Scan(true); };
|
inline static void ACTION_ScanRestart() { ACTION_Scan(true); };
|
||||||
|
|
||||||
void (*action_opt_table[])(void) = {
|
void (*action_opt_table[])(void) = {
|
||||||
[ACTION_OPT_NONE] = &FUNCTION_NOP,
|
[ACTION_OPT_NONE] = &FUNCTION_NOP,
|
||||||
[ACTION_OPT_FLASHLIGHT] = &ACTION_FlashLight,
|
|
||||||
[ACTION_OPT_POWER] = &ACTION_Power,
|
[ACTION_OPT_POWER] = &ACTION_Power,
|
||||||
[ACTION_OPT_MONITOR] = &ACTION_Monitor,
|
[ACTION_OPT_MONITOR] = &ACTION_Monitor,
|
||||||
[ACTION_OPT_SCAN] = &ACTION_ScanRestart,
|
[ACTION_OPT_SCAN] = &ACTION_ScanRestart,
|
||||||
@@ -66,6 +69,12 @@ void (*action_opt_table[])(void) = {
|
|||||||
[ACTION_OPT_VFO_MR] = &COMMON_SwitchVFOMode,
|
[ACTION_OPT_VFO_MR] = &COMMON_SwitchVFOMode,
|
||||||
[ACTION_OPT_SWITCH_DEMODUL] = &ACTION_SwitchDemodul,
|
[ACTION_OPT_SWITCH_DEMODUL] = &ACTION_SwitchDemodul,
|
||||||
|
|
||||||
|
#ifdef ENABLE_FLASHLIGHT
|
||||||
|
[ACTION_OPT_FLASHLIGHT] = &ACTION_FlashLight,
|
||||||
|
#else
|
||||||
|
[ACTION_OPT_FLASHLIGHT] = &FUNCTION_NOP,
|
||||||
|
#endif
|
||||||
|
|
||||||
#ifdef ENABLE_VOX
|
#ifdef ENABLE_VOX
|
||||||
[ACTION_OPT_VOX] = &ACTION_Vox,
|
[ACTION_OPT_VOX] = &ACTION_Vox,
|
||||||
#else
|
#else
|
||||||
@@ -95,6 +104,12 @@ void (*action_opt_table[])(void) = {
|
|||||||
#else
|
#else
|
||||||
[ACTION_OPT_BLMIN_TMP_OFF] = &FUNCTION_NOP,
|
[ACTION_OPT_BLMIN_TMP_OFF] = &FUNCTION_NOP,
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifdef ENABLE_SPECTRUM
|
||||||
|
[ACTION_OPT_SPECTRUM] = &APP_RunSpectrum,
|
||||||
|
#else
|
||||||
|
[ACTION_OPT_SPECTRUM] = &FUNCTION_NOP,
|
||||||
|
#endif
|
||||||
};
|
};
|
||||||
|
|
||||||
static_assert(ARRAY_SIZE(action_opt_table) == ACTION_OPT_LEN);
|
static_assert(ARRAY_SIZE(action_opt_table) == ACTION_OPT_LEN);
|
||||||
@@ -119,7 +134,7 @@ void ACTION_Monitor(void)
|
|||||||
if (gCurrentFunction != FUNCTION_MONITOR) { // enable the monitor
|
if (gCurrentFunction != FUNCTION_MONITOR) { // enable the monitor
|
||||||
RADIO_SelectVfos();
|
RADIO_SelectVfos();
|
||||||
#ifdef ENABLE_NOAA
|
#ifdef ENABLE_NOAA
|
||||||
if (gRxVfo->CHANNEL_SAVE >= NOAA_CHANNEL_FIRST && gIsNoaaMode)
|
if (IS_NOAA_CHANNEL(gRxVfo->CHANNEL_SAVE) && gIsNoaaMode)
|
||||||
gNoaaChannel = gRxVfo->CHANNEL_SAVE - NOAA_CHANNEL_FIRST;
|
gNoaaChannel = gRxVfo->CHANNEL_SAVE - NOAA_CHANNEL_FIRST;
|
||||||
#endif
|
#endif
|
||||||
RADIO_SetupRegisters(true);
|
RADIO_SetupRegisters(true);
|
||||||
@@ -151,7 +166,7 @@ void ACTION_Monitor(void)
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
#endif
|
#endif
|
||||||
gRequestDisplayScreen = gScreenToDisplay;
|
gRequestDisplayScreen = gScreenToDisplay;
|
||||||
}
|
}
|
||||||
|
|
||||||
void ACTION_Scan(bool bRestart)
|
void ACTION_Scan(bool bRestart)
|
||||||
@@ -341,9 +356,8 @@ void ACTION_FM(void)
|
|||||||
|
|
||||||
static void ACTION_Scan_FM(bool bRestart)
|
static void ACTION_Scan_FM(bool bRestart)
|
||||||
{
|
{
|
||||||
if (FUNCTION_IsRx()) {
|
if (FUNCTION_IsRx())
|
||||||
return;
|
return;
|
||||||
}
|
|
||||||
|
|
||||||
GUI_SelectNextDisplay(DISPLAY_FM);
|
GUI_SelectNextDisplay(DISPLAY_FM);
|
||||||
|
|
||||||
@@ -358,21 +372,21 @@ static void ACTION_Scan_FM(bool bRestart)
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
uint16_t Frequency;
|
uint16_t freq;
|
||||||
|
|
||||||
if (bRestart) {
|
if (bRestart) {
|
||||||
gFM_AutoScan = true;
|
gFM_AutoScan = true;
|
||||||
gFM_ChannelPosition = 0;
|
gFM_ChannelPosition = 0;
|
||||||
FM_EraseChannels();
|
FM_EraseChannels();
|
||||||
Frequency = gEeprom.FM_LowerLimit;
|
freq = BK1080_GetFreqLoLimit(gEeprom.FM_Band);
|
||||||
} else {
|
} else {
|
||||||
gFM_AutoScan = false;
|
gFM_AutoScan = false;
|
||||||
gFM_ChannelPosition = 0;
|
gFM_ChannelPosition = 0;
|
||||||
Frequency = gEeprom.FM_FrequencyPlaying;
|
freq = gEeprom.FM_FrequencyPlaying;
|
||||||
}
|
}
|
||||||
|
|
||||||
BK1080_GetFrequencyDeviation(Frequency);
|
BK1080_GetFrequencyDeviation(freq);
|
||||||
FM_Tune(Frequency, 1, bRestart);
|
FM_Tune(freq, 1, bRestart);
|
||||||
|
|
||||||
#ifdef ENABLE_VOICE
|
#ifdef ENABLE_VOICE
|
||||||
gAnotherVoiceID = VOICE_ID_SCANNING_BEGIN;
|
gAnotherVoiceID = VOICE_ID_SCANNING_BEGIN;
|
||||||
|
|||||||
@@ -11,6 +11,7 @@ bool gScanPauseMode;
|
|||||||
|
|
||||||
#ifdef ENABLE_SCAN_RANGES
|
#ifdef ENABLE_SCAN_RANGES
|
||||||
uint32_t gScanRangeStart;
|
uint32_t gScanRangeStart;
|
||||||
|
uint32_t gScanRangeStop;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
typedef enum {
|
typedef enum {
|
||||||
@@ -157,9 +158,7 @@ static void NextFreqChannel(void)
|
|||||||
{
|
{
|
||||||
#ifdef ENABLE_SCAN_RANGES
|
#ifdef ENABLE_SCAN_RANGES
|
||||||
if(gScanRangeStart) {
|
if(gScanRangeStart) {
|
||||||
uint32_t start = gScanRangeStart;
|
gRxVfo->freq_config_RX.Frequency = APP_SetFreqByStepAndLimits(gRxVfo, gScanStateDir, gScanRangeStart, gScanRangeStop);
|
||||||
uint32_t end = gEeprom.VfoInfo[(gEeprom.TX_VFO+1)%2].freq_config_RX.Frequency;
|
|
||||||
gRxVfo->freq_config_RX.Frequency = APP_SetFreqByStepAndLimits(gRxVfo, gScanStateDir, MIN(start, end), MAX(start, end));
|
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
@@ -12,6 +12,7 @@ extern bool gScanPauseMode;
|
|||||||
|
|
||||||
#ifdef ENABLE_SCAN_RANGES
|
#ifdef ENABLE_SCAN_RANGES
|
||||||
extern uint32_t gScanRangeStart;
|
extern uint32_t gScanRangeStart;
|
||||||
|
extern uint32_t gScanRangeStop;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
void CHFRSCANNER_Found(void);
|
void CHFRSCANNER_Found(void);
|
||||||
|
|||||||
89
app/dtmf.c
@@ -78,6 +78,38 @@ void DTMF_clear_RX(void)
|
|||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
void DTMF_SendEndOfTransmission(void)
|
||||||
|
{
|
||||||
|
if (gCurrentVfo->DTMF_PTT_ID_TX_MODE == PTT_ID_APOLLO)
|
||||||
|
BK4819_PlaySingleTone(2475, 250, 28, gEeprom.DTMF_SIDE_TONE);
|
||||||
|
else if ((gCurrentVfo->DTMF_PTT_ID_TX_MODE == PTT_ID_TX_DOWN || gCurrentVfo->DTMF_PTT_ID_TX_MODE == PTT_ID_BOTH)
|
||||||
|
#ifdef ENABLE_DTMF_CALLING
|
||||||
|
&& gDTMF_CallState == DTMF_CALL_STATE_NONE
|
||||||
|
#endif
|
||||||
|
) { // end-of-tx
|
||||||
|
if (gEeprom.DTMF_SIDE_TONE) {
|
||||||
|
AUDIO_AudioPathOn();
|
||||||
|
gEnableSpeaker = true;
|
||||||
|
SYSTEM_DelayMs(60);
|
||||||
|
}
|
||||||
|
|
||||||
|
BK4819_EnterDTMF_TX(gEeprom.DTMF_SIDE_TONE);
|
||||||
|
|
||||||
|
BK4819_PlayDTMFString(
|
||||||
|
gEeprom.DTMF_DOWN_CODE,
|
||||||
|
0,
|
||||||
|
gEeprom.DTMF_FIRST_CODE_PERSIST_TIME,
|
||||||
|
gEeprom.DTMF_HASH_CODE_PERSIST_TIME,
|
||||||
|
gEeprom.DTMF_CODE_PERSIST_TIME,
|
||||||
|
gEeprom.DTMF_CODE_INTERVAL_TIME);
|
||||||
|
|
||||||
|
AUDIO_AudioPathOff();
|
||||||
|
gEnableSpeaker = false;
|
||||||
|
}
|
||||||
|
|
||||||
|
BK4819_ExitDTMF_TX(true);
|
||||||
|
}
|
||||||
|
|
||||||
bool DTMF_ValidateCodes(char *pCode, const unsigned int size)
|
bool DTMF_ValidateCodes(char *pCode, const unsigned int size)
|
||||||
{
|
{
|
||||||
unsigned int i;
|
unsigned int i;
|
||||||
@@ -103,34 +135,28 @@ bool DTMF_ValidateCodes(char *pCode, const unsigned int size)
|
|||||||
#ifdef ENABLE_DTMF_CALLING
|
#ifdef ENABLE_DTMF_CALLING
|
||||||
bool DTMF_GetContact(const int Index, char *pContact)
|
bool DTMF_GetContact(const int Index, char *pContact)
|
||||||
{
|
{
|
||||||
int i = -1;
|
if (Index < 0 || Index >= MAX_DTMF_CONTACTS || pContact == NULL) {
|
||||||
if (Index >= 0 && Index < MAX_DTMF_CONTACTS && pContact != NULL)
|
return false;
|
||||||
{
|
|
||||||
EEPROM_ReadBuffer(0x1C00 + (Index * 16), pContact, 16);
|
|
||||||
i = (int)pContact[0] - ' ';
|
|
||||||
}
|
}
|
||||||
return (i < 0 || i >= 95) ? false : true;
|
|
||||||
|
EEPROM_ReadBuffer(0x1C00 + (Index * 16), pContact, 16);
|
||||||
|
|
||||||
|
// check whether the first character is printable or not
|
||||||
|
return (pContact[0] >= ' ' && pContact[0] < 127);
|
||||||
}
|
}
|
||||||
|
|
||||||
bool DTMF_FindContact(const char *pContact, char *pResult)
|
bool DTMF_FindContact(const char *pContact, char *pResult)
|
||||||
{
|
{
|
||||||
char Contact[16];
|
pResult[0] = 0;
|
||||||
unsigned int i;
|
|
||||||
|
|
||||||
for (i = 0; i < MAX_DTMF_CONTACTS; i++)
|
for (unsigned int i = 0; i < MAX_DTMF_CONTACTS; i++) {
|
||||||
{
|
char Contact[16];
|
||||||
unsigned int j;
|
if (!DTMF_GetContact(i, Contact)) {
|
||||||
|
|
||||||
if (!DTMF_GetContact(i, Contact))
|
|
||||||
return false;
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
for (j = 0; j < 3; j++)
|
if (memcmp(pContact, Contact + 8, 3) == 0) {
|
||||||
if (pContact[j] != Contact[j + 8])
|
memcpy(pResult, Contact, 8);
|
||||||
break;
|
|
||||||
|
|
||||||
if (j == 3)
|
|
||||||
{
|
|
||||||
memmove(pResult, Contact, 8);
|
|
||||||
pResult[8] = 0;
|
pResult[8] = 0;
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
@@ -183,12 +209,12 @@ static bool CompareMessage(const char *pMsg, const char *pTemplate, const unsign
|
|||||||
|
|
||||||
DTMF_CallMode_t DTMF_CheckGroupCall(const char *pMsg, const unsigned int size)
|
DTMF_CallMode_t DTMF_CheckGroupCall(const char *pMsg, const unsigned int size)
|
||||||
{
|
{
|
||||||
unsigned int i;
|
for (unsigned int i = 0; i < size; i++)
|
||||||
for (i = 0; i < size; i++)
|
if (pMsg[i] == gEeprom.DTMF_GROUP_CALL_CODE) {
|
||||||
if (pMsg[i] == gEeprom.DTMF_GROUP_CALL_CODE)
|
return DTMF_CALL_MODE_GROUP;
|
||||||
break;
|
}
|
||||||
|
|
||||||
return (i < size) ? DTMF_CALL_MODE_GROUP : DTMF_CALL_MODE_NOT_GROUP;
|
return DTMF_CALL_MODE_NOT_GROUP;
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
@@ -303,13 +329,12 @@ void DTMF_HandleRequest(void)
|
|||||||
|
|
||||||
if (gDTMF_RX_index >= 2)
|
if (gDTMF_RX_index >= 2)
|
||||||
{ // look for ACK reply
|
{ // look for ACK reply
|
||||||
|
char *pPrintStr = "AB";
|
||||||
|
|
||||||
strcpy(String, "AB");
|
Offset = gDTMF_RX_index - strlen(pPrintStr);
|
||||||
|
|
||||||
Offset = gDTMF_RX_index - strlen(String);
|
if (CompareMessage(gDTMF_RX + Offset, pPrintStr, strlen(pPrintStr), true)) {
|
||||||
|
// ends with "AB"
|
||||||
if (CompareMessage(gDTMF_RX + Offset, String, strlen(String), true))
|
|
||||||
{ // ends with "AB"
|
|
||||||
|
|
||||||
if (gDTMF_ReplyState != DTMF_REPLY_NONE) // 1of11
|
if (gDTMF_ReplyState != DTMF_REPLY_NONE) // 1of11
|
||||||
// if (gDTMF_CallState != DTMF_CALL_STATE_NONE) // 1of11
|
// if (gDTMF_CallState != DTMF_CALL_STATE_NONE) // 1of11
|
||||||
@@ -361,8 +386,8 @@ void DTMF_HandleRequest(void)
|
|||||||
|
|
||||||
memset(gDTMF_Callee, 0, sizeof(gDTMF_Callee));
|
memset(gDTMF_Callee, 0, sizeof(gDTMF_Callee));
|
||||||
memset(gDTMF_Caller, 0, sizeof(gDTMF_Caller));
|
memset(gDTMF_Caller, 0, sizeof(gDTMF_Caller));
|
||||||
memmove(gDTMF_Callee, gDTMF_RX + Offset + 0, 3);
|
memcpy(gDTMF_Callee, gDTMF_RX + Offset + 0, 3);
|
||||||
memmove(gDTMF_Caller, gDTMF_RX + Offset + 4, 3);
|
memcpy(gDTMF_Caller, gDTMF_RX + Offset + 4, 3);
|
||||||
|
|
||||||
DTMF_clear_RX();
|
DTMF_clear_RX();
|
||||||
|
|
||||||
|
|||||||
20
app/dtmf.h
@@ -78,7 +78,17 @@ extern uint8_t gDTMF_PreviousIndex;
|
|||||||
extern char gDTMF_RX_live[20];
|
extern char gDTMF_RX_live[20];
|
||||||
extern uint8_t gDTMF_RX_live_timeout;
|
extern uint8_t gDTMF_RX_live_timeout;
|
||||||
|
|
||||||
|
extern DTMF_ReplyState_t gDTMF_ReplyState;
|
||||||
|
|
||||||
|
bool DTMF_ValidateCodes(char *pCode, const unsigned int size);
|
||||||
|
char DTMF_GetCharacter(const unsigned int code);
|
||||||
|
void DTMF_clear_input_box(void);
|
||||||
|
void DTMF_Append(const char code);
|
||||||
|
void DTMF_Reply(void);
|
||||||
|
void DTMF_SendEndOfTransmission(void);
|
||||||
|
|
||||||
#ifdef ENABLE_DTMF_CALLING
|
#ifdef ENABLE_DTMF_CALLING
|
||||||
|
|
||||||
extern char gDTMF_RX[17];
|
extern char gDTMF_RX[17];
|
||||||
extern uint8_t gDTMF_RX_index;
|
extern uint8_t gDTMF_RX_index;
|
||||||
extern uint8_t gDTMF_RX_timeout;
|
extern uint8_t gDTMF_RX_timeout;
|
||||||
@@ -97,21 +107,13 @@ extern DTMF_CallState_t gDTMF_CallState;
|
|||||||
extern DTMF_CallMode_t gDTMF_CallMode;
|
extern DTMF_CallMode_t gDTMF_CallMode;
|
||||||
extern bool gDTMF_IsTx;
|
extern bool gDTMF_IsTx;
|
||||||
extern uint8_t gDTMF_TxStopCountdown_500ms;
|
extern uint8_t gDTMF_TxStopCountdown_500ms;
|
||||||
#endif
|
|
||||||
extern DTMF_ReplyState_t gDTMF_ReplyState;
|
|
||||||
|
|
||||||
bool DTMF_ValidateCodes(char *pCode, const unsigned int size);
|
|
||||||
char DTMF_GetCharacter(const unsigned int code);
|
|
||||||
void DTMF_clear_input_box(void);
|
|
||||||
void DTMF_Append(const char vode);
|
|
||||||
void DTMF_Reply(void);
|
|
||||||
|
|
||||||
#ifdef ENABLE_DTMF_CALLING
|
|
||||||
void DTMF_clear_RX(void);
|
void DTMF_clear_RX(void);
|
||||||
DTMF_CallMode_t DTMF_CheckGroupCall(const char *pDTMF, const unsigned int size);
|
DTMF_CallMode_t DTMF_CheckGroupCall(const char *pDTMF, const unsigned int size);
|
||||||
bool DTMF_GetContact(const int Index, char *pContact);
|
bool DTMF_GetContact(const int Index, char *pContact);
|
||||||
bool DTMF_FindContact(const char *pContact, char *pResult);
|
bool DTMF_FindContact(const char *pContact, char *pResult);
|
||||||
void DTMF_HandleRequest(void);
|
void DTMF_HandleRequest(void);
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
294
app/fm.c
@@ -62,19 +62,17 @@ static void Key_FUNC(KEY_Code_t Key, uint8_t state);
|
|||||||
|
|
||||||
bool FM_CheckValidChannel(uint8_t Channel)
|
bool FM_CheckValidChannel(uint8_t Channel)
|
||||||
{
|
{
|
||||||
return (Channel < ARRAY_SIZE(gFM_Channels) && (gFM_Channels[Channel] >= 760 && gFM_Channels[Channel] < 1080));
|
return Channel < ARRAY_SIZE(gFM_Channels) &&
|
||||||
|
gFM_Channels[Channel] >= BK1080_GetFreqLoLimit(gEeprom.FM_Band) &&
|
||||||
|
gFM_Channels[Channel] < BK1080_GetFreqHiLimit(gEeprom.FM_Band);
|
||||||
}
|
}
|
||||||
|
|
||||||
uint8_t FM_FindNextChannel(uint8_t Channel, uint8_t Direction)
|
uint8_t FM_FindNextChannel(uint8_t Channel, uint8_t Direction)
|
||||||
{
|
{
|
||||||
unsigned int i;
|
for (unsigned i = 0; i < ARRAY_SIZE(gFM_Channels); i++) {
|
||||||
|
|
||||||
for (i = 0; i < ARRAY_SIZE(gFM_Channels); i++)
|
|
||||||
{
|
|
||||||
if (Channel == 0xFF)
|
if (Channel == 0xFF)
|
||||||
Channel = ARRAY_SIZE(gFM_Channels) - 1;
|
Channel = ARRAY_SIZE(gFM_Channels) - 1;
|
||||||
else
|
else if (Channel >= ARRAY_SIZE(gFM_Channels))
|
||||||
if (Channel >= ARRAY_SIZE(gFM_Channels))
|
|
||||||
Channel = 0;
|
Channel = 0;
|
||||||
if (FM_CheckValidChannel(Channel))
|
if (FM_CheckValidChannel(Channel))
|
||||||
return Channel;
|
return Channel;
|
||||||
@@ -88,11 +86,9 @@ int FM_ConfigureChannelState(void)
|
|||||||
{
|
{
|
||||||
gEeprom.FM_FrequencyPlaying = gEeprom.FM_SelectedFrequency;
|
gEeprom.FM_FrequencyPlaying = gEeprom.FM_SelectedFrequency;
|
||||||
|
|
||||||
if (gEeprom.FM_IsMrMode)
|
if (gEeprom.FM_IsMrMode) {
|
||||||
{
|
|
||||||
const uint8_t Channel = FM_FindNextChannel(gEeprom.FM_SelectedChannel, FM_CHANNEL_UP);
|
const uint8_t Channel = FM_FindNextChannel(gEeprom.FM_SelectedChannel, FM_CHANNEL_UP);
|
||||||
if (Channel == 0xFF)
|
if (Channel == 0xFF) {
|
||||||
{
|
|
||||||
gEeprom.FM_IsMrMode = false;
|
gEeprom.FM_IsMrMode = false;
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
@@ -110,21 +106,19 @@ void FM_TurnOff(void)
|
|||||||
gFM_RestoreCountdown_10ms = 0;
|
gFM_RestoreCountdown_10ms = 0;
|
||||||
|
|
||||||
AUDIO_AudioPathOff();
|
AUDIO_AudioPathOff();
|
||||||
|
|
||||||
gEnableSpeaker = false;
|
gEnableSpeaker = false;
|
||||||
|
|
||||||
BK1080_Init(0, false);
|
BK1080_Init0();
|
||||||
|
|
||||||
gUpdateStatus = true;
|
gUpdateStatus = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
void FM_EraseChannels(void)
|
void FM_EraseChannels(void)
|
||||||
{
|
{
|
||||||
unsigned int i;
|
|
||||||
uint8_t Template[8];
|
uint8_t Template[8];
|
||||||
|
|
||||||
memset(Template, 0xFF, sizeof(Template));
|
memset(Template, 0xFF, sizeof(Template));
|
||||||
for (i = 0; i < 5; i++)
|
|
||||||
|
for (unsigned i = 0; i < 5; i++)
|
||||||
EEPROM_WriteBuffer(0x0E40 + (i * 8), Template);
|
EEPROM_WriteBuffer(0x0E40 + (i * 8), Template);
|
||||||
|
|
||||||
memset(gFM_Channels, 0xFF, sizeof(gFM_Channels));
|
memset(gFM_Channels, 0xFF, sizeof(gFM_Channels));
|
||||||
@@ -144,35 +138,32 @@ void FM_Tune(uint16_t Frequency, int8_t Step, bool bFlag)
|
|||||||
gAskToDelete = false;
|
gAskToDelete = false;
|
||||||
gEeprom.FM_FrequencyPlaying = Frequency;
|
gEeprom.FM_FrequencyPlaying = Frequency;
|
||||||
|
|
||||||
if (!bFlag)
|
if (!bFlag) {
|
||||||
{
|
|
||||||
Frequency += Step;
|
Frequency += Step;
|
||||||
if (Frequency < gEeprom.FM_LowerLimit)
|
if (Frequency < BK1080_GetFreqLoLimit(gEeprom.FM_Band))
|
||||||
Frequency = gEeprom.FM_UpperLimit;
|
Frequency = BK1080_GetFreqHiLimit(gEeprom.FM_Band);
|
||||||
else
|
else if (Frequency > BK1080_GetFreqHiLimit(gEeprom.FM_Band))
|
||||||
if (Frequency > gEeprom.FM_UpperLimit)
|
Frequency = BK1080_GetFreqLoLimit(gEeprom.FM_Band);
|
||||||
Frequency = gEeprom.FM_LowerLimit;
|
|
||||||
|
|
||||||
gEeprom.FM_FrequencyPlaying = Frequency;
|
gEeprom.FM_FrequencyPlaying = Frequency;
|
||||||
}
|
}
|
||||||
|
|
||||||
gFM_ScanState = Step;
|
gFM_ScanState = Step;
|
||||||
|
|
||||||
BK1080_SetFrequency(gEeprom.FM_FrequencyPlaying);
|
BK1080_SetFrequency(gEeprom.FM_FrequencyPlaying, gEeprom.FM_Band/*, gEeprom.FM_Space*/);
|
||||||
}
|
}
|
||||||
|
|
||||||
void FM_PlayAndUpdate(void)
|
void FM_PlayAndUpdate(void)
|
||||||
{
|
{
|
||||||
gFM_ScanState = FM_SCAN_OFF;
|
gFM_ScanState = FM_SCAN_OFF;
|
||||||
|
|
||||||
if (gFM_AutoScan)
|
if (gFM_AutoScan) {
|
||||||
{
|
|
||||||
gEeprom.FM_IsMrMode = true;
|
gEeprom.FM_IsMrMode = true;
|
||||||
gEeprom.FM_SelectedChannel = 0;
|
gEeprom.FM_SelectedChannel = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
FM_ConfigureChannelState();
|
FM_ConfigureChannelState();
|
||||||
BK1080_SetFrequency(gEeprom.FM_FrequencyPlaying);
|
BK1080_SetFrequency(gEeprom.FM_FrequencyPlaying, gEeprom.FM_Band/*, gEeprom.FM_Space*/);
|
||||||
SETTINGS_SaveFM();
|
SETTINGS_SaveFM();
|
||||||
|
|
||||||
gFmPlayCountdown_10ms = 0;
|
gFmPlayCountdown_10ms = 0;
|
||||||
@@ -193,7 +184,7 @@ int FM_CheckFrequencyLock(uint16_t Frequency, uint16_t LowerLimit)
|
|||||||
// This is supposed to be a signed value, but above function is unsigned
|
// This is supposed to be a signed value, but above function is unsigned
|
||||||
const uint16_t Deviation = BK1080_REG_07_GET_FREQD(Test2);
|
const uint16_t Deviation = BK1080_REG_07_GET_FREQD(Test2);
|
||||||
|
|
||||||
if (BK1080_REG_07_GET_SNR(Test2) <= 2){
|
if (BK1080_REG_07_GET_SNR(Test2) <= 2) {
|
||||||
goto Bail;
|
goto Bail;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -219,7 +210,6 @@ int FM_CheckFrequencyLock(uint16_t Frequency, uint16_t LowerLimit)
|
|||||||
if (Frequency >= LowerLimit && (BK1080_BaseFrequency - Frequency) == 1) {
|
if (Frequency >= LowerLimit && (BK1080_BaseFrequency - Frequency) == 1) {
|
||||||
if ((BK1080_FrequencyDeviation & 0x800) == 0 || (BK1080_FrequencyDeviation > 4075))
|
if ((BK1080_FrequencyDeviation & 0x800) == 0 || (BK1080_FrequencyDeviation > 4075))
|
||||||
goto Bail;
|
goto Bail;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
ret = 0;
|
ret = 0;
|
||||||
@@ -236,93 +226,93 @@ static void Key_DIGITS(KEY_Code_t Key, uint8_t state)
|
|||||||
enum { STATE_FREQ_MODE, STATE_MR_MODE, STATE_SAVE };
|
enum { STATE_FREQ_MODE, STATE_MR_MODE, STATE_SAVE };
|
||||||
|
|
||||||
if (state == BUTTON_EVENT_SHORT && !gWasFKeyPressed) {
|
if (state == BUTTON_EVENT_SHORT && !gWasFKeyPressed) {
|
||||||
uint8_t State;
|
uint8_t State;
|
||||||
|
|
||||||
if (gAskToDelete) {
|
if (gAskToDelete) {
|
||||||
|
gBeepToPlay = BEEP_500HZ_60MS_DOUBLE_BEEP_OPTIONAL;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (gAskToSave) {
|
||||||
|
State = STATE_SAVE;
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
if (gFM_ScanState != FM_SCAN_OFF) {
|
||||||
gBeepToPlay = BEEP_500HZ_60MS_DOUBLE_BEEP_OPTIONAL;
|
gBeepToPlay = BEEP_500HZ_60MS_DOUBLE_BEEP_OPTIONAL;
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (gAskToSave) {
|
State = gEeprom.FM_IsMrMode ? STATE_MR_MODE : STATE_FREQ_MODE;
|
||||||
State = STATE_SAVE;
|
}
|
||||||
|
|
||||||
|
INPUTBOX_Append(Key);
|
||||||
|
|
||||||
|
gRequestDisplayScreen = DISPLAY_FM;
|
||||||
|
|
||||||
|
if (State == STATE_FREQ_MODE) {
|
||||||
|
if (gInputBoxIndex == 1) {
|
||||||
|
if (gInputBox[0] > 1) {
|
||||||
|
gInputBox[1] = gInputBox[0];
|
||||||
|
gInputBox[0] = 0;
|
||||||
|
gInputBoxIndex = 2;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
else {
|
else if (gInputBoxIndex > 3) {
|
||||||
if (gFM_ScanState != FM_SCAN_OFF) {
|
uint32_t Frequency;
|
||||||
gBeepToPlay = BEEP_500HZ_60MS_DOUBLE_BEEP_OPTIONAL;
|
|
||||||
|
gInputBoxIndex = 0;
|
||||||
|
Frequency = StrToUL(INPUTBOX_GetAscii());
|
||||||
|
|
||||||
|
if (Frequency < BK1080_GetFreqLoLimit(gEeprom.FM_Band) || BK1080_GetFreqHiLimit(gEeprom.FM_Band) < Frequency) {
|
||||||
|
gBeepToPlay = BEEP_500HZ_60MS_DOUBLE_BEEP_OPTIONAL;
|
||||||
|
gRequestDisplayScreen = DISPLAY_FM;
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
State = gEeprom.FM_IsMrMode ? STATE_MR_MODE : STATE_FREQ_MODE;
|
gEeprom.FM_SelectedFrequency = (uint16_t)Frequency;
|
||||||
|
#ifdef ENABLE_VOICE
|
||||||
|
gAnotherVoiceID = (VOICE_ID_t)Key;
|
||||||
|
#endif
|
||||||
|
gEeprom.FM_FrequencyPlaying = gEeprom.FM_SelectedFrequency;
|
||||||
|
BK1080_SetFrequency(gEeprom.FM_FrequencyPlaying, gEeprom.FM_Band/*, gEeprom.FM_Space*/);
|
||||||
|
gRequestSaveFM = true;
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
else if (gInputBoxIndex == 2) {
|
||||||
|
uint8_t Channel;
|
||||||
|
|
||||||
INPUTBOX_Append(Key);
|
gInputBoxIndex = 0;
|
||||||
|
Channel = ((gInputBox[0] * 10) + gInputBox[1]) - 1;
|
||||||
|
|
||||||
gRequestDisplayScreen = DISPLAY_FM;
|
if (State == STATE_MR_MODE) {
|
||||||
|
if (FM_CheckValidChannel(Channel)) {
|
||||||
if (State == STATE_FREQ_MODE) {
|
|
||||||
if (gInputBoxIndex == 1) {
|
|
||||||
if (gInputBox[0] > 1) {
|
|
||||||
gInputBox[1] = gInputBox[0];
|
|
||||||
gInputBox[0] = 0;
|
|
||||||
gInputBoxIndex = 2;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
else if (gInputBoxIndex > 3) {
|
|
||||||
uint32_t Frequency;
|
|
||||||
|
|
||||||
gInputBoxIndex = 0;
|
|
||||||
Frequency = StrToUL(INPUTBOX_GetAscii());
|
|
||||||
|
|
||||||
if (Frequency < gEeprom.FM_LowerLimit || gEeprom.FM_UpperLimit < Frequency) {
|
|
||||||
gBeepToPlay = BEEP_500HZ_60MS_DOUBLE_BEEP_OPTIONAL;
|
|
||||||
gRequestDisplayScreen = DISPLAY_FM;
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
gEeprom.FM_SelectedFrequency = (uint16_t)Frequency;
|
|
||||||
#ifdef ENABLE_VOICE
|
#ifdef ENABLE_VOICE
|
||||||
gAnotherVoiceID = (VOICE_ID_t)Key;
|
gAnotherVoiceID = (VOICE_ID_t)Key;
|
||||||
#endif
|
#endif
|
||||||
gEeprom.FM_FrequencyPlaying = gEeprom.FM_SelectedFrequency;
|
gEeprom.FM_SelectedChannel = Channel;
|
||||||
BK1080_SetFrequency(gEeprom.FM_FrequencyPlaying);
|
gEeprom.FM_FrequencyPlaying = gFM_Channels[Channel];
|
||||||
|
BK1080_SetFrequency(gEeprom.FM_FrequencyPlaying, gEeprom.FM_Band/*, gEeprom.FM_Space*/);
|
||||||
gRequestSaveFM = true;
|
gRequestSaveFM = true;
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else if (gInputBoxIndex == 2) {
|
else if (Channel < 20) {
|
||||||
uint8_t Channel;
|
#ifdef ENABLE_VOICE
|
||||||
|
gAnotherVoiceID = (VOICE_ID_t)Key;
|
||||||
|
#endif
|
||||||
|
gRequestDisplayScreen = DISPLAY_FM;
|
||||||
gInputBoxIndex = 0;
|
gInputBoxIndex = 0;
|
||||||
Channel = ((gInputBox[0] * 10) + gInputBox[1]) - 1;
|
gFM_ChannelPosition = Channel;
|
||||||
|
|
||||||
if (State == STATE_MR_MODE) {
|
|
||||||
if (FM_CheckValidChannel(Channel)) {
|
|
||||||
#ifdef ENABLE_VOICE
|
|
||||||
gAnotherVoiceID = (VOICE_ID_t)Key;
|
|
||||||
#endif
|
|
||||||
gEeprom.FM_SelectedChannel = Channel;
|
|
||||||
gEeprom.FM_FrequencyPlaying = gFM_Channels[Channel];
|
|
||||||
BK1080_SetFrequency(gEeprom.FM_FrequencyPlaying);
|
|
||||||
gRequestSaveFM = true;
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
else if (Channel < 20) {
|
|
||||||
#ifdef ENABLE_VOICE
|
|
||||||
gAnotherVoiceID = (VOICE_ID_t)Key;
|
|
||||||
#endif
|
|
||||||
gRequestDisplayScreen = DISPLAY_FM;
|
|
||||||
gInputBoxIndex = 0;
|
|
||||||
gFM_ChannelPosition = Channel;
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
gBeepToPlay = BEEP_500HZ_60MS_DOUBLE_BEEP_OPTIONAL;
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
gBeepToPlay = BEEP_500HZ_60MS_DOUBLE_BEEP_OPTIONAL;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
#ifdef ENABLE_VOICE
|
#ifdef ENABLE_VOICE
|
||||||
gAnotherVoiceID = (VOICE_ID_t)Key;
|
gAnotherVoiceID = (VOICE_ID_t)Key;
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
@@ -331,8 +321,7 @@ static void Key_DIGITS(KEY_Code_t Key, uint8_t state)
|
|||||||
|
|
||||||
static void Key_FUNC(KEY_Code_t Key, uint8_t state)
|
static void Key_FUNC(KEY_Code_t Key, uint8_t state)
|
||||||
{
|
{
|
||||||
if (state == BUTTON_EVENT_SHORT || state == BUTTON_EVENT_HELD)
|
if (state == BUTTON_EVENT_SHORT || state == BUTTON_EVENT_HELD) {
|
||||||
{
|
|
||||||
bool autoScan = gWasFKeyPressed || (state == BUTTON_EVENT_HELD);
|
bool autoScan = gWasFKeyPressed || (state == BUTTON_EVENT_HELD);
|
||||||
|
|
||||||
gBeepToPlay = BEEP_1KHZ_60MS_OPTIONAL;
|
gBeepToPlay = BEEP_1KHZ_60MS_OPTIONAL;
|
||||||
@@ -345,12 +334,21 @@ static void Key_FUNC(KEY_Code_t Key, uint8_t state)
|
|||||||
ACTION_FM();
|
ACTION_FM();
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
case KEY_1:
|
||||||
|
gEeprom.FM_Band++;
|
||||||
|
gRequestSaveFM = true;
|
||||||
|
break;
|
||||||
|
|
||||||
|
// case KEY_2:
|
||||||
|
// gEeprom.FM_Space = (gEeprom.FM_Space + 1) % 3;
|
||||||
|
// gRequestSaveFM = true;
|
||||||
|
// break;
|
||||||
|
|
||||||
case KEY_3:
|
case KEY_3:
|
||||||
gEeprom.FM_IsMrMode = !gEeprom.FM_IsMrMode;
|
gEeprom.FM_IsMrMode = !gEeprom.FM_IsMrMode;
|
||||||
|
|
||||||
if (!FM_ConfigureChannelState())
|
if (!FM_ConfigureChannelState()) {
|
||||||
{
|
BK1080_SetFrequency(gEeprom.FM_FrequencyPlaying, gEeprom.FM_Band/*, gEeprom.FM_Space*/);
|
||||||
BK1080_SetFrequency(gEeprom.FM_FrequencyPlaying);
|
|
||||||
gRequestSaveFM = true;
|
gRequestSaveFM = true;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
@@ -375,12 +373,9 @@ static void Key_EXIT(uint8_t state)
|
|||||||
|
|
||||||
gBeepToPlay = BEEP_1KHZ_60MS_OPTIONAL;
|
gBeepToPlay = BEEP_1KHZ_60MS_OPTIONAL;
|
||||||
|
|
||||||
if (gFM_ScanState == FM_SCAN_OFF)
|
if (gFM_ScanState == FM_SCAN_OFF) {
|
||||||
{
|
if (gInputBoxIndex == 0) {
|
||||||
if (gInputBoxIndex == 0)
|
if (!gAskToSave && !gAskToDelete) {
|
||||||
{
|
|
||||||
if (!gAskToSave && !gAskToDelete)
|
|
||||||
{
|
|
||||||
ACTION_FM();
|
ACTION_FM();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@@ -388,38 +383,32 @@ static void Key_EXIT(uint8_t state)
|
|||||||
gAskToSave = false;
|
gAskToSave = false;
|
||||||
gAskToDelete = false;
|
gAskToDelete = false;
|
||||||
}
|
}
|
||||||
else
|
else {
|
||||||
{
|
|
||||||
gInputBox[--gInputBoxIndex] = 10;
|
gInputBox[--gInputBoxIndex] = 10;
|
||||||
|
|
||||||
if (gInputBoxIndex)
|
if (gInputBoxIndex) {
|
||||||
{
|
if (gInputBoxIndex != 1) {
|
||||||
if (gInputBoxIndex != 1)
|
|
||||||
{
|
|
||||||
gRequestDisplayScreen = DISPLAY_FM;
|
gRequestDisplayScreen = DISPLAY_FM;
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (gInputBox[0] != 0)
|
if (gInputBox[0] != 0) {
|
||||||
{
|
|
||||||
gRequestDisplayScreen = DISPLAY_FM;
|
gRequestDisplayScreen = DISPLAY_FM;
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
gInputBoxIndex = 0;
|
gInputBoxIndex = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef ENABLE_VOICE
|
#ifdef ENABLE_VOICE
|
||||||
gAnotherVoiceID = VOICE_ID_CANCEL;
|
gAnotherVoiceID = VOICE_ID_CANCEL;
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
else
|
else {
|
||||||
{
|
|
||||||
FM_PlayAndUpdate();
|
FM_PlayAndUpdate();
|
||||||
#ifdef ENABLE_VOICE
|
#ifdef ENABLE_VOICE
|
||||||
gAnotherVoiceID = VOICE_ID_SCANNING_STOP;
|
gAnotherVoiceID = VOICE_ID_SCANNING_STOP;
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
gRequestDisplayScreen = DISPLAY_FM;
|
gRequestDisplayScreen = DISPLAY_FM;
|
||||||
@@ -434,43 +423,34 @@ static void Key_MENU(uint8_t state)
|
|||||||
gRequestDisplayScreen = DISPLAY_FM;
|
gRequestDisplayScreen = DISPLAY_FM;
|
||||||
gBeepToPlay = BEEP_1KHZ_60MS_OPTIONAL;
|
gBeepToPlay = BEEP_1KHZ_60MS_OPTIONAL;
|
||||||
|
|
||||||
if (gFM_ScanState == FM_SCAN_OFF)
|
if (gFM_ScanState == FM_SCAN_OFF) {
|
||||||
{
|
if (!gEeprom.FM_IsMrMode) {
|
||||||
if (!gEeprom.FM_IsMrMode)
|
if (gAskToSave) {
|
||||||
{
|
|
||||||
if (gAskToSave)
|
|
||||||
{
|
|
||||||
gFM_Channels[gFM_ChannelPosition] = gEeprom.FM_FrequencyPlaying;
|
gFM_Channels[gFM_ChannelPosition] = gEeprom.FM_FrequencyPlaying;
|
||||||
gRequestSaveFM = true;
|
gRequestSaveFM = true;
|
||||||
}
|
}
|
||||||
gAskToSave = !gAskToSave;
|
gAskToSave = !gAskToSave;
|
||||||
}
|
}
|
||||||
else
|
else {
|
||||||
{
|
if (gAskToDelete) {
|
||||||
if (gAskToDelete)
|
|
||||||
{
|
|
||||||
gFM_Channels[gEeprom.FM_SelectedChannel] = 0xFFFF;
|
gFM_Channels[gEeprom.FM_SelectedChannel] = 0xFFFF;
|
||||||
|
|
||||||
FM_ConfigureChannelState();
|
FM_ConfigureChannelState();
|
||||||
BK1080_SetFrequency(gEeprom.FM_FrequencyPlaying);
|
BK1080_SetFrequency(gEeprom.FM_FrequencyPlaying, gEeprom.FM_Band/*, gEeprom.FM_Space*/);
|
||||||
|
|
||||||
gRequestSaveFM = true;
|
gRequestSaveFM = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
gAskToDelete = !gAskToDelete;
|
gAskToDelete = !gAskToDelete;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else
|
else {
|
||||||
{
|
if (gFM_AutoScan || !gFM_FoundFrequency) {
|
||||||
if (gFM_AutoScan || !gFM_FoundFrequency)
|
|
||||||
{
|
|
||||||
gBeepToPlay = BEEP_500HZ_60MS_DOUBLE_BEEP_OPTIONAL;
|
gBeepToPlay = BEEP_500HZ_60MS_DOUBLE_BEEP_OPTIONAL;
|
||||||
gInputBoxIndex = 0;
|
gInputBoxIndex = 0;
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (gAskToSave)
|
if (gAskToSave) {
|
||||||
{
|
|
||||||
gFM_Channels[gFM_ChannelPosition] = gEeprom.FM_FrequencyPlaying;
|
gFM_Channels[gFM_ChannelPosition] = gEeprom.FM_FrequencyPlaying;
|
||||||
gRequestSaveFM = true;
|
gRequestSaveFM = true;
|
||||||
}
|
}
|
||||||
@@ -519,11 +499,10 @@ static void Key_UP_DOWN(uint8_t state, int8_t Step)
|
|||||||
else {
|
else {
|
||||||
uint16_t Frequency = gEeprom.FM_SelectedFrequency + Step;
|
uint16_t Frequency = gEeprom.FM_SelectedFrequency + Step;
|
||||||
|
|
||||||
if (Frequency < gEeprom.FM_LowerLimit)
|
if (Frequency < BK1080_GetFreqLoLimit(gEeprom.FM_Band))
|
||||||
Frequency = gEeprom.FM_UpperLimit;
|
Frequency = BK1080_GetFreqHiLimit(gEeprom.FM_Band);
|
||||||
else
|
else if (Frequency > BK1080_GetFreqHiLimit(gEeprom.FM_Band))
|
||||||
if (Frequency > gEeprom.FM_UpperLimit)
|
Frequency = BK1080_GetFreqLoLimit(gEeprom.FM_Band);
|
||||||
Frequency = gEeprom.FM_LowerLimit;
|
|
||||||
|
|
||||||
gEeprom.FM_FrequencyPlaying = Frequency;
|
gEeprom.FM_FrequencyPlaying = Frequency;
|
||||||
gEeprom.FM_SelectedFrequency = gEeprom.FM_FrequencyPlaying;
|
gEeprom.FM_SelectedFrequency = gEeprom.FM_FrequencyPlaying;
|
||||||
@@ -532,7 +511,7 @@ static void Key_UP_DOWN(uint8_t state, int8_t Step)
|
|||||||
gRequestSaveFM = true;
|
gRequestSaveFM = true;
|
||||||
|
|
||||||
Bail:
|
Bail:
|
||||||
BK1080_SetFrequency(gEeprom.FM_FrequencyPlaying);
|
BK1080_SetFrequency(gEeprom.FM_FrequencyPlaying, gEeprom.FM_Band/*, gEeprom.FM_Space*/);
|
||||||
|
|
||||||
gRequestDisplayScreen = DISPLAY_FM;
|
gRequestDisplayScreen = DISPLAY_FM;
|
||||||
}
|
}
|
||||||
@@ -541,18 +520,8 @@ void FM_ProcessKeys(KEY_Code_t Key, bool bKeyPressed, bool bKeyHeld)
|
|||||||
{
|
{
|
||||||
uint8_t state = bKeyPressed + 2 * bKeyHeld;
|
uint8_t state = bKeyPressed + 2 * bKeyHeld;
|
||||||
|
|
||||||
switch (Key)
|
switch (Key) {
|
||||||
{
|
case KEY_0...KEY_9:
|
||||||
case KEY_0:
|
|
||||||
case KEY_1:
|
|
||||||
case KEY_2:
|
|
||||||
case KEY_3:
|
|
||||||
case KEY_4:
|
|
||||||
case KEY_5:
|
|
||||||
case KEY_6:
|
|
||||||
case KEY_7:
|
|
||||||
case KEY_8:
|
|
||||||
case KEY_9:
|
|
||||||
Key_DIGITS(Key, state);
|
Key_DIGITS(Key, state);
|
||||||
break;
|
break;
|
||||||
case KEY_STAR:
|
case KEY_STAR:
|
||||||
@@ -585,10 +554,8 @@ void FM_ProcessKeys(KEY_Code_t Key, bool bKeyPressed, bool bKeyHeld)
|
|||||||
|
|
||||||
void FM_Play(void)
|
void FM_Play(void)
|
||||||
{
|
{
|
||||||
if (!FM_CheckFrequencyLock(gEeprom.FM_FrequencyPlaying, gEeprom.FM_LowerLimit))
|
if (!FM_CheckFrequencyLock(gEeprom.FM_FrequencyPlaying, BK1080_GetFreqLoLimit(gEeprom.FM_Band))) {
|
||||||
{
|
if (!gFM_AutoScan) {
|
||||||
if (!gFM_AutoScan)
|
|
||||||
{
|
|
||||||
gFmPlayCountdown_10ms = 0;
|
gFmPlayCountdown_10ms = 0;
|
||||||
gFM_FoundFrequency = true;
|
gFM_FoundFrequency = true;
|
||||||
|
|
||||||
@@ -605,15 +572,14 @@ void FM_Play(void)
|
|||||||
if (gFM_ChannelPosition < 20)
|
if (gFM_ChannelPosition < 20)
|
||||||
gFM_Channels[gFM_ChannelPosition++] = gEeprom.FM_FrequencyPlaying;
|
gFM_Channels[gFM_ChannelPosition++] = gEeprom.FM_FrequencyPlaying;
|
||||||
|
|
||||||
if (gFM_ChannelPosition >= 20)
|
if (gFM_ChannelPosition >= 20) {
|
||||||
{
|
|
||||||
FM_PlayAndUpdate();
|
FM_PlayAndUpdate();
|
||||||
GUI_SelectNextDisplay(DISPLAY_FM);
|
GUI_SelectNextDisplay(DISPLAY_FM);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (gFM_AutoScan && gEeprom.FM_FrequencyPlaying >= gEeprom.FM_UpperLimit)
|
if (gFM_AutoScan && gEeprom.FM_FrequencyPlaying >= BK1080_GetFreqHiLimit(1))
|
||||||
FM_PlayAndUpdate();
|
FM_PlayAndUpdate();
|
||||||
else
|
else
|
||||||
FM_Tune(gEeprom.FM_FrequencyPlaying, gFM_ScanState, false);
|
FM_Tune(gEeprom.FM_FrequencyPlaying, gFM_ScanState, false);
|
||||||
@@ -628,7 +594,7 @@ void FM_Start(void)
|
|||||||
gFM_ScanState = FM_SCAN_OFF;
|
gFM_ScanState = FM_SCAN_OFF;
|
||||||
gFM_RestoreCountdown_10ms = 0;
|
gFM_RestoreCountdown_10ms = 0;
|
||||||
|
|
||||||
BK1080_Init(gEeprom.FM_FrequencyPlaying, true);
|
BK1080_Init(gEeprom.FM_FrequencyPlaying, gEeprom.FM_Band/*, gEeprom.FM_Space*/);
|
||||||
|
|
||||||
AUDIO_AudioPathOn();
|
AUDIO_AudioPathOn();
|
||||||
|
|
||||||
|
|||||||
1
app/fm.h
@@ -41,6 +41,7 @@ extern bool gFM_FoundFrequency;
|
|||||||
extern uint16_t gFM_RestoreCountdown_10ms;
|
extern uint16_t gFM_RestoreCountdown_10ms;
|
||||||
|
|
||||||
bool FM_CheckValidChannel(uint8_t Channel);
|
bool FM_CheckValidChannel(uint8_t Channel);
|
||||||
|
// returns first valid channel starting at Channel
|
||||||
uint8_t FM_FindNextChannel(uint8_t Channel, uint8_t Direction);
|
uint8_t FM_FindNextChannel(uint8_t Channel, uint8_t Direction);
|
||||||
int FM_ConfigureChannelState(void);
|
int FM_ConfigureChannelState(void);
|
||||||
void FM_TurnOff(void);
|
void FM_TurnOff(void);
|
||||||
|
|||||||
114
app/generic.c
@@ -39,17 +39,14 @@
|
|||||||
|
|
||||||
void GENERIC_Key_F(bool bKeyPressed, bool bKeyHeld)
|
void GENERIC_Key_F(bool bKeyPressed, bool bKeyHeld)
|
||||||
{
|
{
|
||||||
if (gInputBoxIndex > 0)
|
if (gInputBoxIndex > 0) {
|
||||||
{
|
|
||||||
if (!bKeyHeld && bKeyPressed) // short pressed
|
if (!bKeyHeld && bKeyPressed) // short pressed
|
||||||
gBeepToPlay = BEEP_500HZ_60MS_DOUBLE_BEEP_OPTIONAL;
|
gBeepToPlay = BEEP_500HZ_60MS_DOUBLE_BEEP_OPTIONAL;
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (bKeyHeld || !bKeyPressed) // held or released
|
if (bKeyHeld || !bKeyPressed) { // held or released
|
||||||
{
|
if (bKeyHeld || bKeyPressed) { // held or pressed (cannot be held and not pressed I guess, so it checks only if HELD?)
|
||||||
if (bKeyHeld || bKeyPressed) // held or pressed (cannot be held and not pressed I guess, so it checks only if HELD?)
|
|
||||||
{
|
|
||||||
if (!bKeyHeld) // won't ever pass
|
if (!bKeyHeld) // won't ever pass
|
||||||
return;
|
return;
|
||||||
|
|
||||||
@@ -58,47 +55,43 @@ void GENERIC_Key_F(bool bKeyPressed, bool bKeyHeld)
|
|||||||
|
|
||||||
COMMON_KeypadLockToggle();
|
COMMON_KeypadLockToggle();
|
||||||
}
|
}
|
||||||
else // released
|
else { // released
|
||||||
{
|
#ifdef ENABLE_FMRADIO
|
||||||
#ifdef ENABLE_FMRADIO
|
if ((gFmRadioMode || gScreenToDisplay != DISPLAY_MAIN) && gScreenToDisplay != DISPLAY_FM)
|
||||||
if ((gFmRadioMode || gScreenToDisplay != DISPLAY_MAIN) && gScreenToDisplay != DISPLAY_FM)
|
return;
|
||||||
return;
|
#else
|
||||||
#else
|
if (gScreenToDisplay != DISPLAY_MAIN)
|
||||||
if (gScreenToDisplay != DISPLAY_MAIN)
|
return;
|
||||||
return;
|
#endif
|
||||||
#endif
|
|
||||||
|
|
||||||
gWasFKeyPressed = !gWasFKeyPressed; // toggle F function
|
gWasFKeyPressed = !gWasFKeyPressed; // toggle F function
|
||||||
|
|
||||||
if (gWasFKeyPressed)
|
if (gWasFKeyPressed)
|
||||||
gKeyInputCountdown = key_input_timeout_500ms;
|
gKeyInputCountdown = key_input_timeout_500ms;
|
||||||
|
|
||||||
#ifdef ENABLE_VOICE
|
#ifdef ENABLE_VOICE
|
||||||
if (!gWasFKeyPressed)
|
if (!gWasFKeyPressed)
|
||||||
gAnotherVoiceID = VOICE_ID_CANCEL;
|
gAnotherVoiceID = VOICE_ID_CANCEL;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
gUpdateStatus = true;
|
gUpdateStatus = true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else // short pressed
|
else { // short pressed
|
||||||
{
|
#ifdef ENABLE_FMRADIO
|
||||||
if (gScreenToDisplay != DISPLAY_FM)
|
if (gScreenToDisplay != DISPLAY_FM)
|
||||||
|
#endif
|
||||||
{
|
{
|
||||||
gBeepToPlay = BEEP_1KHZ_60MS_OPTIONAL;
|
gBeepToPlay = BEEP_1KHZ_60MS_OPTIONAL;
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef ENABLE_FMRADIO
|
#ifdef ENABLE_FMRADIO
|
||||||
if (gFM_ScanState == FM_SCAN_OFF) // not scanning
|
if (gFM_ScanState == FM_SCAN_OFF) { // not scanning
|
||||||
{
|
gBeepToPlay = BEEP_1KHZ_60MS_OPTIONAL;
|
||||||
gBeepToPlay = BEEP_1KHZ_60MS_OPTIONAL;
|
return;
|
||||||
return;
|
}
|
||||||
}
|
#endif
|
||||||
#endif
|
|
||||||
|
|
||||||
gBeepToPlay = BEEP_440HZ_500MS;
|
gBeepToPlay = BEEP_440HZ_500MS;
|
||||||
|
|
||||||
gPttWasReleased = true;
|
gPttWasReleased = true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -109,29 +102,24 @@ void GENERIC_Key_PTT(bool bKeyPressed)
|
|||||||
|
|
||||||
if (!bKeyPressed || SerialConfigInProgress())
|
if (!bKeyPressed || SerialConfigInProgress())
|
||||||
{ // PTT released
|
{ // PTT released
|
||||||
if (gCurrentFunction == FUNCTION_TRANSMIT)
|
if (gCurrentFunction == FUNCTION_TRANSMIT) {
|
||||||
{ // we are transmitting .. stop
|
// we are transmitting .. stop
|
||||||
|
if (gFlagEndTransmission) {
|
||||||
if (gFlagEndTransmission)
|
|
||||||
{
|
|
||||||
FUNCTION_Select(FUNCTION_FOREGROUND);
|
FUNCTION_Select(FUNCTION_FOREGROUND);
|
||||||
}
|
}
|
||||||
else
|
else {
|
||||||
{
|
|
||||||
APP_EndTransmission();
|
APP_EndTransmission();
|
||||||
|
|
||||||
if (gEeprom.REPEATER_TAIL_TONE_ELIMINATION == 0)
|
if (gEeprom.REPEATER_TAIL_TONE_ELIMINATION == 0)
|
||||||
FUNCTION_Select(FUNCTION_FOREGROUND);
|
FUNCTION_Select(FUNCTION_FOREGROUND);
|
||||||
else
|
else
|
||||||
gRTTECountdown = gEeprom.REPEATER_TAIL_TONE_ELIMINATION * 10;
|
gRTTECountdown_10ms = gEeprom.REPEATER_TAIL_TONE_ELIMINATION * 10;
|
||||||
}
|
}
|
||||||
|
|
||||||
gFlagEndTransmission = false;
|
gFlagEndTransmission = false;
|
||||||
|
#ifdef ENABLE_VOX
|
||||||
#ifdef ENABLE_VOX
|
gVOX_NoiseDetected = false;
|
||||||
gVOX_NoiseDetected = false;
|
#endif
|
||||||
#endif
|
|
||||||
|
|
||||||
RADIO_SetVfoState(VFO_STATE_NORMAL);
|
RADIO_SetVfoState(VFO_STATE_NORMAL);
|
||||||
|
|
||||||
if (gScreenToDisplay != DISPLAY_MENU) // 1of11 .. don't close the menu
|
if (gScreenToDisplay != DISPLAY_MENU) // 1of11 .. don't close the menu
|
||||||
@@ -144,27 +132,24 @@ void GENERIC_Key_PTT(bool bKeyPressed)
|
|||||||
// PTT pressed
|
// PTT pressed
|
||||||
|
|
||||||
|
|
||||||
if (SCANNER_IsScanning())
|
if (SCANNER_IsScanning()) {
|
||||||
{ // CTCSS/CDCSS scanning .. stop
|
SCANNER_Stop(); // CTCSS/CDCSS scanning .. stop
|
||||||
SCANNER_Stop();
|
|
||||||
goto cancel_tx;
|
goto cancel_tx;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (gScanStateDir != SCAN_OFF)
|
if (gScanStateDir != SCAN_OFF) {
|
||||||
{ // frequency/channel scanning . .stop
|
CHFRSCANNER_Stop(); // frequency/channel scanning . .stop
|
||||||
CHFRSCANNER_Stop();
|
|
||||||
goto cancel_tx;
|
goto cancel_tx;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#ifdef ENABLE_FMRADIO
|
#ifdef ENABLE_FMRADIO
|
||||||
if (gFM_ScanState != FM_SCAN_OFF)
|
if (gFM_ScanState != FM_SCAN_OFF) { // FM radio is scanning .. stop
|
||||||
{ // FM radio is scanning .. stop
|
|
||||||
FM_PlayAndUpdate();
|
FM_PlayAndUpdate();
|
||||||
#ifdef ENABLE_VOICE
|
#ifdef ENABLE_VOICE
|
||||||
gAnotherVoiceID = VOICE_ID_SCANNING_STOP;
|
gAnotherVoiceID = VOICE_ID_SCANNING_STOP;
|
||||||
#endif
|
#endif
|
||||||
gRequestDisplayScreen = DISPLAY_FM;
|
gRequestDisplayScreen = DISPLAY_FM;
|
||||||
goto cancel_tx;
|
goto cancel_tx;
|
||||||
}
|
}
|
||||||
@@ -175,8 +160,7 @@ void GENERIC_Key_PTT(bool bKeyPressed)
|
|||||||
goto start_tx; // listening to the FM radio .. start TX'ing
|
goto start_tx; // listening to the FM radio .. start TX'ing
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
if (gCurrentFunction == FUNCTION_TRANSMIT && gRTTECountdown == 0)
|
if (gCurrentFunction == FUNCTION_TRANSMIT && gRTTECountdown_10ms == 0) {// already transmitting
|
||||||
{ // already transmitting
|
|
||||||
gInputBoxIndex = 0;
|
gInputBoxIndex = 0;
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@@ -190,9 +174,7 @@ void GENERIC_Key_PTT(bool bKeyPressed)
|
|||||||
|
|
||||||
// was entering a DTMF string
|
// was entering a DTMF string
|
||||||
|
|
||||||
if (gDTMF_InputBox_Index > 0 || gDTMF_PreviousIndex > 0)
|
if (gDTMF_InputBox_Index > 0 || gDTMF_PreviousIndex > 0) { // going to transmit a DTMF string
|
||||||
{ // going to transmit a DTMF string
|
|
||||||
|
|
||||||
if (gDTMF_InputBox_Index == 0 && gDTMF_PreviousIndex > 0)
|
if (gDTMF_InputBox_Index == 0 && gDTMF_PreviousIndex > 0)
|
||||||
gDTMF_InputBox_Index = gDTMF_PreviousIndex; // use the previous DTMF string
|
gDTMF_InputBox_Index = gDTMF_PreviousIndex; // use the previous DTMF string
|
||||||
|
|
||||||
@@ -223,15 +205,21 @@ start_tx:
|
|||||||
goto done;
|
goto done;
|
||||||
|
|
||||||
cancel_tx:
|
cancel_tx:
|
||||||
if (gPttIsPressed)
|
if (gPttIsPressed) {
|
||||||
{
|
|
||||||
gPttWasPressed = true;
|
gPttWasPressed = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
done:
|
done:
|
||||||
gPttDebounceCounter = 0;
|
gPttDebounceCounter = 0;
|
||||||
if (gScreenToDisplay != DISPLAY_MENU && gRequestDisplayScreen != DISPLAY_FM) // 1of11 .. don't close the menu
|
if (gScreenToDisplay != DISPLAY_MENU
|
||||||
|
#ifdef ENABLE_FMRADIO
|
||||||
|
&& gRequestDisplayScreen != DISPLAY_FM
|
||||||
|
#endif
|
||||||
|
) {
|
||||||
|
// 1of11 .. don't close the menu
|
||||||
gRequestDisplayScreen = DISPLAY_MAIN;
|
gRequestDisplayScreen = DISPLAY_MAIN;
|
||||||
|
}
|
||||||
|
|
||||||
gUpdateStatus = true;
|
gUpdateStatus = true;
|
||||||
gUpdateDisplay = true;
|
gUpdateDisplay = true;
|
||||||
}
|
}
|
||||||
|
|||||||
284
app/main.c
@@ -52,6 +52,9 @@ void toggle_chan_scanlist(void)
|
|||||||
if(!IS_MR_CHANNEL(gTxVfo->CHANNEL_SAVE)) {
|
if(!IS_MR_CHANNEL(gTxVfo->CHANNEL_SAVE)) {
|
||||||
#ifdef ENABLE_SCAN_RANGES
|
#ifdef ENABLE_SCAN_RANGES
|
||||||
gScanRangeStart = gScanRangeStart ? 0 : gTxVfo->pRX->Frequency;
|
gScanRangeStart = gScanRangeStart ? 0 : gTxVfo->pRX->Frequency;
|
||||||
|
gScanRangeStop = gEeprom.VfoInfo[!gEeprom.TX_VFO].freq_config_RX.Frequency;
|
||||||
|
if(gScanRangeStart > gScanRangeStop)
|
||||||
|
SWAP(gScanRangeStart, gScanRangeStop);
|
||||||
#endif
|
#endif
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@@ -72,27 +75,17 @@ static void processFKeyFunction(const KEY_Code_t Key, const bool beep)
|
|||||||
{
|
{
|
||||||
uint8_t Vfo = gEeprom.TX_VFO;
|
uint8_t Vfo = gEeprom.TX_VFO;
|
||||||
|
|
||||||
if (gScreenToDisplay == DISPLAY_MENU)
|
if (gScreenToDisplay == DISPLAY_MENU) {
|
||||||
{
|
gBeepToPlay = BEEP_500HZ_60MS_DOUBLE_BEEP_OPTIONAL;
|
||||||
// if (beep)
|
|
||||||
gBeepToPlay = BEEP_500HZ_60MS_DOUBLE_BEEP_OPTIONAL;
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
// if (beep)
|
gBeepToPlay = BEEP_1KHZ_60MS_OPTIONAL;
|
||||||
gBeepToPlay = BEEP_1KHZ_60MS_OPTIONAL;
|
|
||||||
|
|
||||||
switch (Key)
|
switch (Key) {
|
||||||
{
|
|
||||||
case KEY_0:
|
case KEY_0:
|
||||||
#ifdef ENABLE_FMRADIO
|
#ifdef ENABLE_FMRADIO
|
||||||
ACTION_FM();
|
ACTION_FM();
|
||||||
#else
|
|
||||||
|
|
||||||
|
|
||||||
// TODO: make use of this function key
|
|
||||||
|
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
break;
|
break;
|
||||||
|
|
||||||
@@ -103,14 +96,12 @@ static void processFKeyFunction(const KEY_Code_t Key, const bool beep)
|
|||||||
gBeepToPlay = BEEP_1KHZ_60MS_OPTIONAL;
|
gBeepToPlay = BEEP_1KHZ_60MS_OPTIONAL;
|
||||||
|
|
||||||
#ifdef ENABLE_COPY_CHAN_TO_VFO
|
#ifdef ENABLE_COPY_CHAN_TO_VFO
|
||||||
if (!gEeprom.VFO_OPEN || gCssBackgroundScan)
|
if (!gEeprom.VFO_OPEN || gCssBackgroundScan) {
|
||||||
{
|
|
||||||
gBeepToPlay = BEEP_500HZ_60MS_DOUBLE_BEEP_OPTIONAL;
|
gBeepToPlay = BEEP_500HZ_60MS_DOUBLE_BEEP_OPTIONAL;
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (gScanStateDir != SCAN_OFF)
|
if (gScanStateDir != SCAN_OFF) {
|
||||||
{
|
|
||||||
if (gCurrentFunction != FUNCTION_INCOMING ||
|
if (gCurrentFunction != FUNCTION_INCOMING ||
|
||||||
gRxReceptionMode == RX_MODE_NONE ||
|
gRxReceptionMode == RX_MODE_NONE ||
|
||||||
gScanPauseDelayIn_10ms == 0)
|
gScanPauseDelayIn_10ms == 0)
|
||||||
@@ -146,7 +137,6 @@ static void processFKeyFunction(const KEY_Code_t Key, const bool beep)
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
gTxVfo->Band += 1;
|
gTxVfo->Band += 1;
|
||||||
|
|
||||||
if (gTxVfo->Band == BAND5_350MHz && !gSetting_350EN) {
|
if (gTxVfo->Band == BAND5_350MHz && !gSetting_350EN) {
|
||||||
@@ -201,13 +191,10 @@ static void processFKeyFunction(const KEY_Code_t Key, const bool beep)
|
|||||||
case KEY_5:
|
case KEY_5:
|
||||||
if(beep) {
|
if(beep) {
|
||||||
#ifdef ENABLE_NOAA
|
#ifdef ENABLE_NOAA
|
||||||
|
if (!IS_NOAA_CHANNEL(gTxVfo->CHANNEL_SAVE)) {
|
||||||
if (!IS_NOAA_CHANNEL(gTxVfo->CHANNEL_SAVE))
|
|
||||||
{
|
|
||||||
gEeprom.ScreenChannel[Vfo] = gEeprom.NoaaChannel[gEeprom.TX_VFO];
|
gEeprom.ScreenChannel[Vfo] = gEeprom.NoaaChannel[gEeprom.TX_VFO];
|
||||||
}
|
}
|
||||||
else
|
else {
|
||||||
{
|
|
||||||
gEeprom.ScreenChannel[Vfo] = gEeprom.FreqChannel[gEeprom.TX_VFO];
|
gEeprom.ScreenChannel[Vfo] = gEeprom.FreqChannel[gEeprom.TX_VFO];
|
||||||
#ifdef ENABLE_VOICE
|
#ifdef ENABLE_VOICE
|
||||||
gAnotherVoiceID = VOICE_ID_FREQUENCY_MODE;
|
gAnotherVoiceID = VOICE_ID_FREQUENCY_MODE;
|
||||||
@@ -246,8 +233,7 @@ static void processFKeyFunction(const KEY_Code_t Key, const bool beep)
|
|||||||
break;
|
break;
|
||||||
|
|
||||||
case KEY_9:
|
case KEY_9:
|
||||||
if (RADIO_CheckValidChannel(gEeprom.CHAN_1_CALL, false, 0))
|
if (RADIO_CheckValidChannel(gEeprom.CHAN_1_CALL, false, 0)) {
|
||||||
{
|
|
||||||
gEeprom.MrChannel[Vfo] = gEeprom.CHAN_1_CALL;
|
gEeprom.MrChannel[Vfo] = gEeprom.CHAN_1_CALL;
|
||||||
gEeprom.ScreenChannel[Vfo] = gEeprom.CHAN_1_CALL;
|
gEeprom.ScreenChannel[Vfo] = gEeprom.CHAN_1_CALL;
|
||||||
#ifdef ENABLE_VOICE
|
#ifdef ENABLE_VOICE
|
||||||
@@ -276,15 +262,10 @@ static void processFKeyFunction(const KEY_Code_t Key, const bool beep)
|
|||||||
|
|
||||||
static void MAIN_Key_DIGITS(KEY_Code_t Key, bool bKeyPressed, bool bKeyHeld)
|
static void MAIN_Key_DIGITS(KEY_Code_t Key, bool bKeyPressed, bool bKeyHeld)
|
||||||
{
|
{
|
||||||
if (bKeyHeld)
|
if (bKeyHeld) { // key held down
|
||||||
{ // key held down
|
if (bKeyPressed) {
|
||||||
|
if (gScreenToDisplay == DISPLAY_MAIN) {
|
||||||
if (bKeyPressed)
|
if (gInputBoxIndex > 0) { // delete any inputted chars
|
||||||
{
|
|
||||||
if (gScreenToDisplay == DISPLAY_MAIN)
|
|
||||||
{
|
|
||||||
if (gInputBoxIndex > 0)
|
|
||||||
{ // delete any inputted chars
|
|
||||||
gInputBoxIndex = 0;
|
gInputBoxIndex = 0;
|
||||||
gRequestDisplayScreen = DISPLAY_MAIN;
|
gRequestDisplayScreen = DISPLAY_MAIN;
|
||||||
}
|
}
|
||||||
@@ -295,7 +276,6 @@ static void MAIN_Key_DIGITS(KEY_Code_t Key, bool bKeyPressed, bool bKeyHeld)
|
|||||||
processFKeyFunction(Key, false);
|
processFKeyFunction(Key, false);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -305,22 +285,15 @@ static void MAIN_Key_DIGITS(KEY_Code_t Key, bool bKeyPressed, bool bKeyHeld)
|
|||||||
return; // don't use the key till it's released
|
return; // don't use the key till it's released
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!gWasFKeyPressed)
|
if (!gWasFKeyPressed) { // F-key wasn't pressed
|
||||||
{ // F-key wasn't pressed
|
|
||||||
|
|
||||||
const uint8_t Vfo = gEeprom.TX_VFO;
|
const uint8_t Vfo = gEeprom.TX_VFO;
|
||||||
|
|
||||||
gKeyInputCountdown = key_input_timeout_500ms;
|
gKeyInputCountdown = key_input_timeout_500ms;
|
||||||
|
|
||||||
INPUTBOX_Append(Key);
|
INPUTBOX_Append(Key);
|
||||||
|
|
||||||
gRequestDisplayScreen = DISPLAY_MAIN;
|
gRequestDisplayScreen = DISPLAY_MAIN;
|
||||||
|
|
||||||
if (IS_MR_CHANNEL(gTxVfo->CHANNEL_SAVE))
|
if (IS_MR_CHANNEL(gTxVfo->CHANNEL_SAVE)) { // user is entering channel number
|
||||||
{ // user is entering channel number
|
|
||||||
|
|
||||||
if (gInputBoxIndex != 3)
|
if (gInputBoxIndex != 3) {
|
||||||
{
|
|
||||||
#ifdef ENABLE_VOICE
|
#ifdef ENABLE_VOICE
|
||||||
gAnotherVoiceID = (VOICE_ID_t)Key;
|
gAnotherVoiceID = (VOICE_ID_t)Key;
|
||||||
#endif
|
#endif
|
||||||
@@ -332,8 +305,7 @@ static void MAIN_Key_DIGITS(KEY_Code_t Key, bool bKeyPressed, bool bKeyHeld)
|
|||||||
|
|
||||||
const uint16_t Channel = ((gInputBox[0] * 100) + (gInputBox[1] * 10) + gInputBox[2]) - 1;
|
const uint16_t Channel = ((gInputBox[0] * 100) + (gInputBox[1] * 10) + gInputBox[2]) - 1;
|
||||||
|
|
||||||
if (!RADIO_CheckValidChannel(Channel, false, 0))
|
if (!RADIO_CheckValidChannel(Channel, false, 0)) {
|
||||||
{
|
|
||||||
gBeepToPlay = BEEP_500HZ_60MS_DOUBLE_BEEP_OPTIONAL;
|
gBeepToPlay = BEEP_500HZ_60MS_DOUBLE_BEEP_OPTIONAL;
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@@ -360,8 +332,7 @@ static void MAIN_Key_DIGITS(KEY_Code_t Key, bool bKeyPressed, bool bKeyHeld)
|
|||||||
gAnotherVoiceID = (VOICE_ID_t)Key;
|
gAnotherVoiceID = (VOICE_ID_t)Key;
|
||||||
#endif
|
#endif
|
||||||
bool isGigaF = gTxVfo->pRX->Frequency >= _1GHz_in_KHz;
|
bool isGigaF = gTxVfo->pRX->Frequency >= _1GHz_in_KHz;
|
||||||
if (gInputBoxIndex < 6 + isGigaF)
|
if (gInputBoxIndex < 6 + isGigaF) {
|
||||||
{
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -369,26 +340,20 @@ static void MAIN_Key_DIGITS(KEY_Code_t Key, bool bKeyPressed, bool bKeyHeld)
|
|||||||
uint32_t Frequency = StrToUL(INPUTBOX_GetAscii()) * 100;
|
uint32_t Frequency = StrToUL(INPUTBOX_GetAscii()) * 100;
|
||||||
|
|
||||||
// clamp the frequency entered to some valid value
|
// clamp the frequency entered to some valid value
|
||||||
if (Frequency < frequencyBandTable[0].lower)
|
if (Frequency < frequencyBandTable[0].lower) {
|
||||||
{
|
|
||||||
Frequency = frequencyBandTable[0].lower;
|
Frequency = frequencyBandTable[0].lower;
|
||||||
}
|
}
|
||||||
else
|
else if (Frequency >= BX4819_band1.upper && Frequency < BX4819_band2.lower) {
|
||||||
if (Frequency >= BX4819_band1.upper && Frequency < BX4819_band2.lower)
|
|
||||||
{
|
|
||||||
const uint32_t center = (BX4819_band1.upper + BX4819_band2.lower) / 2;
|
const uint32_t center = (BX4819_band1.upper + BX4819_band2.lower) / 2;
|
||||||
Frequency = (Frequency < center) ? BX4819_band1.upper : BX4819_band2.lower;
|
Frequency = (Frequency < center) ? BX4819_band1.upper : BX4819_band2.lower;
|
||||||
}
|
}
|
||||||
else
|
else if (Frequency > frequencyBandTable[BAND_N_ELEM - 1].upper) {
|
||||||
if (Frequency > frequencyBandTable[BAND_N_ELEM - 1].upper)
|
|
||||||
{
|
|
||||||
Frequency = frequencyBandTable[BAND_N_ELEM - 1].upper;
|
Frequency = frequencyBandTable[BAND_N_ELEM - 1].upper;
|
||||||
}
|
}
|
||||||
|
|
||||||
const FREQUENCY_Band_t band = FREQUENCY_GetBand(Frequency);
|
const FREQUENCY_Band_t band = FREQUENCY_GetBand(Frequency);
|
||||||
|
|
||||||
if (gTxVfo->Band != band)
|
if (gTxVfo->Band != band) {
|
||||||
{
|
|
||||||
gTxVfo->Band = band;
|
gTxVfo->Band = band;
|
||||||
gEeprom.ScreenChannel[Vfo] = band + FREQ_CHANNEL_FIRST;
|
gEeprom.ScreenChannel[Vfo] = band + FREQ_CHANNEL_FIRST;
|
||||||
gEeprom.FreqChannel[Vfo] = band + FREQ_CHANNEL_FIRST;
|
gEeprom.FreqChannel[Vfo] = band + FREQ_CHANNEL_FIRST;
|
||||||
@@ -416,8 +381,7 @@ static void MAIN_Key_DIGITS(KEY_Code_t Key, bool bKeyPressed, bool bKeyHeld)
|
|||||||
else
|
else
|
||||||
if (IS_NOAA_CHANNEL(gTxVfo->CHANNEL_SAVE))
|
if (IS_NOAA_CHANNEL(gTxVfo->CHANNEL_SAVE))
|
||||||
{ // user is entering NOAA channel
|
{ // user is entering NOAA channel
|
||||||
if (gInputBoxIndex != 2)
|
if (gInputBoxIndex != 2) {
|
||||||
{
|
|
||||||
#ifdef ENABLE_VOICE
|
#ifdef ENABLE_VOICE
|
||||||
gAnotherVoiceID = (VOICE_ID_t)Key;
|
gAnotherVoiceID = (VOICE_ID_t)Key;
|
||||||
#endif
|
#endif
|
||||||
@@ -428,8 +392,7 @@ static void MAIN_Key_DIGITS(KEY_Code_t Key, bool bKeyPressed, bool bKeyHeld)
|
|||||||
gInputBoxIndex = 0;
|
gInputBoxIndex = 0;
|
||||||
|
|
||||||
uint8_t Channel = (gInputBox[0] * 10) + gInputBox[1];
|
uint8_t Channel = (gInputBox[0] * 10) + gInputBox[1];
|
||||||
if (Channel >= 1 && Channel <= ARRAY_SIZE(NoaaFrequencyTable))
|
if (Channel >= 1 && Channel <= ARRAY_SIZE(NoaaFrequencyTable)) {
|
||||||
{
|
|
||||||
Channel += NOAA_CHANNEL_FIRST;
|
Channel += NOAA_CHANNEL_FIRST;
|
||||||
#ifdef ENABLE_VOICE
|
#ifdef ENABLE_VOICE
|
||||||
gAnotherVoiceID = (VOICE_ID_t)Key;
|
gAnotherVoiceID = (VOICE_ID_t)Key;
|
||||||
@@ -456,9 +419,7 @@ static void MAIN_Key_DIGITS(KEY_Code_t Key, bool bKeyPressed, bool bKeyHeld)
|
|||||||
|
|
||||||
static void MAIN_Key_EXIT(bool bKeyPressed, bool bKeyHeld)
|
static void MAIN_Key_EXIT(bool bKeyPressed, bool bKeyHeld)
|
||||||
{
|
{
|
||||||
if (!bKeyHeld && bKeyPressed)
|
if (!bKeyHeld && bKeyPressed) { // exit key pressed
|
||||||
{ // exit key pressed
|
|
||||||
|
|
||||||
gBeepToPlay = BEEP_1KHZ_60MS_OPTIONAL;
|
gBeepToPlay = BEEP_1KHZ_60MS_OPTIONAL;
|
||||||
|
|
||||||
#ifdef ENABLE_DTMF_CALLING
|
#ifdef ENABLE_DTMF_CALLING
|
||||||
@@ -470,47 +431,42 @@ static void MAIN_Key_EXIT(bool bKeyPressed, bool bKeyHeld)
|
|||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef ENABLE_FMRADIO
|
#ifdef ENABLE_FMRADIO
|
||||||
if (!gFmRadioMode)
|
if (!gFmRadioMode)
|
||||||
#endif
|
#endif
|
||||||
{
|
{
|
||||||
if (gScanStateDir == SCAN_OFF)
|
if (gScanStateDir == SCAN_OFF) {
|
||||||
{
|
|
||||||
if (gInputBoxIndex == 0)
|
if (gInputBoxIndex == 0)
|
||||||
return;
|
return;
|
||||||
gInputBox[--gInputBoxIndex] = 10;
|
gInputBox[--gInputBoxIndex] = 10;
|
||||||
|
|
||||||
gKeyInputCountdown = key_input_timeout_500ms;
|
gKeyInputCountdown = key_input_timeout_500ms;
|
||||||
|
|
||||||
#ifdef ENABLE_VOICE
|
#ifdef ENABLE_VOICE
|
||||||
if (gInputBoxIndex == 0)
|
if (gInputBoxIndex == 0)
|
||||||
gAnotherVoiceID = VOICE_ID_CANCEL;
|
gAnotherVoiceID = VOICE_ID_CANCEL;
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
else
|
else {
|
||||||
{
|
|
||||||
gScanKeepResult = false;
|
gScanKeepResult = false;
|
||||||
CHFRSCANNER_Stop();
|
CHFRSCANNER_Stop();
|
||||||
|
|
||||||
#ifdef ENABLE_VOICE
|
#ifdef ENABLE_VOICE
|
||||||
gAnotherVoiceID = VOICE_ID_SCANNING_STOP;
|
gAnotherVoiceID = VOICE_ID_SCANNING_STOP;
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
gRequestDisplayScreen = DISPLAY_MAIN;
|
gRequestDisplayScreen = DISPLAY_MAIN;
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef ENABLE_FMRADIO
|
#ifdef ENABLE_FMRADIO
|
||||||
ACTION_FM();
|
ACTION_FM();
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (bKeyHeld && bKeyPressed)
|
if (bKeyHeld && bKeyPressed) { // exit key held down
|
||||||
{ // exit key held down
|
|
||||||
|
|
||||||
if (gInputBoxIndex > 0 || gDTMF_InputBox_Index > 0 || gDTMF_InputMode)
|
if (gInputBoxIndex > 0 || gDTMF_InputBox_Index > 0 || gDTMF_InputMode)
|
||||||
{ // cancel key input mode (channel/frequency entry)
|
{ // cancel key input mode (channel/frequency entry)
|
||||||
gDTMF_InputMode = false;
|
gDTMF_InputMode = false;
|
||||||
@@ -525,22 +481,16 @@ static void MAIN_Key_EXIT(bool bKeyPressed, bool bKeyHeld)
|
|||||||
|
|
||||||
static void MAIN_Key_MENU(const bool bKeyPressed, const bool bKeyHeld)
|
static void MAIN_Key_MENU(const bool bKeyPressed, const bool bKeyHeld)
|
||||||
{
|
{
|
||||||
if (bKeyPressed && !bKeyHeld)
|
if (bKeyPressed && !bKeyHeld) // menu key pressed
|
||||||
// menu key pressed
|
|
||||||
gBeepToPlay = BEEP_1KHZ_60MS_OPTIONAL;
|
gBeepToPlay = BEEP_1KHZ_60MS_OPTIONAL;
|
||||||
|
|
||||||
if (bKeyHeld)
|
if (bKeyHeld) { // menu key held down (long press)
|
||||||
{ // menu key held down (long press)
|
if (bKeyPressed) { // long press MENU key
|
||||||
|
|
||||||
if (bKeyPressed)
|
|
||||||
{ // long press MENU key
|
|
||||||
|
|
||||||
gWasFKeyPressed = false;
|
gWasFKeyPressed = false;
|
||||||
|
|
||||||
if (gScreenToDisplay == DISPLAY_MAIN)
|
if (gScreenToDisplay == DISPLAY_MAIN) {
|
||||||
{
|
if (gInputBoxIndex > 0) { // delete any inputted chars
|
||||||
if (gInputBoxIndex > 0)
|
|
||||||
{ // delete any inputted chars
|
|
||||||
gInputBoxIndex = 0;
|
gInputBoxIndex = 0;
|
||||||
gRequestDisplayScreen = DISPLAY_MAIN;
|
gRequestDisplayScreen = DISPLAY_MAIN;
|
||||||
}
|
}
|
||||||
@@ -555,13 +505,11 @@ static void MAIN_Key_MENU(const bool bKeyPressed, const bool bKeyHeld)
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!bKeyPressed && !gDTMF_InputMode)
|
if (!bKeyPressed && !gDTMF_InputMode) { // menu key released
|
||||||
{ // menu key released
|
|
||||||
const bool bFlag = !gInputBoxIndex;
|
const bool bFlag = !gInputBoxIndex;
|
||||||
gInputBoxIndex = 0;
|
gInputBoxIndex = 0;
|
||||||
|
|
||||||
if (bFlag)
|
if (bFlag) {
|
||||||
{
|
|
||||||
if (gScanStateDir != SCAN_OFF) {
|
if (gScanStateDir != SCAN_OFF) {
|
||||||
CHFRSCANNER_Stop();
|
CHFRSCANNER_Stop();
|
||||||
return;
|
return;
|
||||||
@@ -573,8 +521,7 @@ static void MAIN_Key_MENU(const bool bKeyPressed, const bool bKeyHeld)
|
|||||||
gAnotherVoiceID = VOICE_ID_MENU;
|
gAnotherVoiceID = VOICE_ID_MENU;
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
else
|
else {
|
||||||
{
|
|
||||||
gRequestDisplayScreen = DISPLAY_MAIN;
|
gRequestDisplayScreen = DISPLAY_MAIN;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -585,15 +532,13 @@ static void MAIN_Key_STAR(bool bKeyPressed, bool bKeyHeld)
|
|||||||
if (gCurrentFunction == FUNCTION_TRANSMIT)
|
if (gCurrentFunction == FUNCTION_TRANSMIT)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
if (gInputBoxIndex)
|
if (gInputBoxIndex) {
|
||||||
{
|
|
||||||
if (!bKeyHeld && bKeyPressed)
|
if (!bKeyHeld && bKeyPressed)
|
||||||
gBeepToPlay = BEEP_500HZ_60MS_DOUBLE_BEEP_OPTIONAL;
|
gBeepToPlay = BEEP_500HZ_60MS_DOUBLE_BEEP_OPTIONAL;
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (bKeyHeld && !gWasFKeyPressed) // long press
|
if (bKeyHeld && !gWasFKeyPressed){ // long press
|
||||||
{
|
|
||||||
if (!bKeyPressed) // released
|
if (!bKeyPressed) // released
|
||||||
return;
|
return;
|
||||||
|
|
||||||
@@ -603,8 +548,7 @@ static void MAIN_Key_STAR(bool bKeyPressed, bool bKeyHeld)
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (bKeyPressed) // just pressed
|
if (bKeyPressed) { // just pressed
|
||||||
{
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -622,7 +566,7 @@ static void MAIN_Key_STAR(bool bKeyPressed, bool bKeyHeld)
|
|||||||
)
|
)
|
||||||
{ // start entering a DTMF string
|
{ // start entering a DTMF string
|
||||||
gBeepToPlay = BEEP_1KHZ_60MS_OPTIONAL;
|
gBeepToPlay = BEEP_1KHZ_60MS_OPTIONAL;
|
||||||
memmove(gDTMF_InputBox, gDTMF_String, MIN(sizeof(gDTMF_InputBox), sizeof(gDTMF_String) - 1));
|
memcpy(gDTMF_InputBox, gDTMF_String, MIN(sizeof(gDTMF_InputBox), sizeof(gDTMF_String) - 1));
|
||||||
gDTMF_InputBox_Index = 0;
|
gDTMF_InputBox_Index = 0;
|
||||||
gDTMF_InputMode = true;
|
gDTMF_InputMode = true;
|
||||||
|
|
||||||
@@ -643,7 +587,6 @@ static void MAIN_Key_STAR(bool bKeyPressed, bool bKeyHeld)
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// scan the CTCSS/DCS code
|
// scan the CTCSS/DCS code
|
||||||
gBackup_CROSS_BAND_RX_TX = gEeprom.CROSS_BAND_RX_TX;
|
gBackup_CROSS_BAND_RX_TX = gEeprom.CROSS_BAND_RX_TX;
|
||||||
gEeprom.CROSS_BAND_RX_TX = CROSS_BAND_OFF;
|
gEeprom.CROSS_BAND_RX_TX = CROSS_BAND_OFF;
|
||||||
@@ -659,58 +602,45 @@ static void MAIN_Key_UP_DOWN(bool bKeyPressed, bool bKeyHeld, int8_t Direction)
|
|||||||
{
|
{
|
||||||
uint8_t Channel = gEeprom.ScreenChannel[gEeprom.TX_VFO];
|
uint8_t Channel = gEeprom.ScreenChannel[gEeprom.TX_VFO];
|
||||||
|
|
||||||
if (bKeyHeld || !bKeyPressed)
|
if (bKeyHeld || !bKeyPressed) { // key held or released
|
||||||
{
|
|
||||||
if (gInputBoxIndex > 0)
|
if (gInputBoxIndex > 0)
|
||||||
return;
|
return; // leave if input box active
|
||||||
|
|
||||||
if (!bKeyPressed)
|
if (!bKeyPressed) {
|
||||||
{
|
if (!bKeyHeld || IS_FREQ_CHANNEL(Channel))
|
||||||
if (!bKeyHeld)
|
|
||||||
return;
|
return;
|
||||||
|
// if released long button press and not in freq mode
|
||||||
if (IS_FREQ_CHANNEL(Channel))
|
#ifdef ENABLE_VOICE
|
||||||
return;
|
AUDIO_SetDigitVoice(0, gTxVfo->CHANNEL_SAVE + 1); // say channel number
|
||||||
|
gAnotherVoiceID = (VOICE_ID_t)0xFE;
|
||||||
#ifdef ENABLE_VOICE
|
#endif
|
||||||
AUDIO_SetDigitVoice(0, gTxVfo->CHANNEL_SAVE + 1);
|
|
||||||
gAnotherVoiceID = (VOICE_ID_t)0xFE;
|
|
||||||
#endif
|
|
||||||
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else
|
else { // short pressed
|
||||||
{
|
if (gInputBoxIndex > 0) {
|
||||||
if (gInputBoxIndex > 0)
|
|
||||||
{
|
|
||||||
gBeepToPlay = BEEP_500HZ_60MS_DOUBLE_BEEP_OPTIONAL;
|
gBeepToPlay = BEEP_500HZ_60MS_DOUBLE_BEEP_OPTIONAL;
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
gBeepToPlay = BEEP_1KHZ_60MS_OPTIONAL;
|
gBeepToPlay = BEEP_1KHZ_60MS_OPTIONAL;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (gScanStateDir == SCAN_OFF)
|
if (gScanStateDir == SCAN_OFF) {
|
||||||
{
|
#ifdef ENABLE_NOAA
|
||||||
#ifdef ENABLE_NOAA
|
if (!IS_NOAA_CHANNEL(Channel))
|
||||||
if (!IS_NOAA_CHANNEL(Channel))
|
#endif
|
||||||
#endif
|
|
||||||
{
|
{
|
||||||
uint8_t Next;
|
uint8_t Next;
|
||||||
|
if (IS_FREQ_CHANNEL(Channel)) { // step/down in frequency
|
||||||
if (IS_FREQ_CHANNEL(Channel))
|
|
||||||
{ // step/down in frequency
|
|
||||||
const uint32_t frequency = APP_SetFrequencyByStep(gTxVfo, Direction);
|
const uint32_t frequency = APP_SetFrequencyByStep(gTxVfo, Direction);
|
||||||
|
|
||||||
if (RX_freq_check(frequency) < 0)
|
if (RX_freq_check(frequency) < 0) { // frequency not allowed
|
||||||
{ // frequency not allowed
|
|
||||||
gBeepToPlay = BEEP_500HZ_60MS_DOUBLE_BEEP_OPTIONAL;
|
gBeepToPlay = BEEP_500HZ_60MS_DOUBLE_BEEP_OPTIONAL;
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
gTxVfo->freq_config_RX.Frequency = frequency;
|
gTxVfo->freq_config_RX.Frequency = frequency;
|
||||||
|
BK4819_SetFrequency(frequency);
|
||||||
|
BK4819_RX_TurnOn();
|
||||||
gRequestSaveChannel = 1;
|
gRequestSaveChannel = 1;
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@@ -718,29 +648,25 @@ static void MAIN_Key_UP_DOWN(bool bKeyPressed, bool bKeyHeld, int8_t Direction)
|
|||||||
Next = RADIO_FindNextChannel(Channel + Direction, Direction, false, 0);
|
Next = RADIO_FindNextChannel(Channel + Direction, Direction, false, 0);
|
||||||
if (Next == 0xFF)
|
if (Next == 0xFF)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
if (Channel == Next)
|
if (Channel == Next)
|
||||||
return;
|
return;
|
||||||
|
gEeprom.MrChannel[gEeprom.TX_VFO] = Next;
|
||||||
gEeprom.MrChannel[gEeprom.TX_VFO] = Next;
|
|
||||||
gEeprom.ScreenChannel[gEeprom.TX_VFO] = Next;
|
gEeprom.ScreenChannel[gEeprom.TX_VFO] = Next;
|
||||||
|
|
||||||
if (!bKeyHeld)
|
if (!bKeyHeld) {
|
||||||
{
|
#ifdef ENABLE_VOICE
|
||||||
#ifdef ENABLE_VOICE
|
AUDIO_SetDigitVoice(0, Next + 1);
|
||||||
AUDIO_SetDigitVoice(0, Next + 1);
|
gAnotherVoiceID = (VOICE_ID_t)0xFE;
|
||||||
gAnotherVoiceID = (VOICE_ID_t)0xFE;
|
#endif
|
||||||
#endif
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
#ifdef ENABLE_NOAA
|
#ifdef ENABLE_NOAA
|
||||||
else
|
else {
|
||||||
{
|
Channel = NOAA_CHANNEL_FIRST + NUMBER_AddWithWraparound(gEeprom.ScreenChannel[gEeprom.TX_VFO] - NOAA_CHANNEL_FIRST, Direction, 0, 9);
|
||||||
Channel = NOAA_CHANNEL_FIRST + NUMBER_AddWithWraparound(gEeprom.ScreenChannel[gEeprom.TX_VFO] - NOAA_CHANNEL_FIRST, Direction, 0, 9);
|
gEeprom.NoaaChannel[gEeprom.TX_VFO] = Channel;
|
||||||
gEeprom.NoaaChannel[gEeprom.TX_VFO] = Channel;
|
gEeprom.ScreenChannel[gEeprom.TX_VFO] = Channel;
|
||||||
gEeprom.ScreenChannel[gEeprom.TX_VFO] = Channel;
|
}
|
||||||
}
|
#endif
|
||||||
#endif
|
|
||||||
|
|
||||||
gRequestSaveVFO = true;
|
gRequestSaveVFO = true;
|
||||||
gVfoConfigureMode = VFO_CONFIGURE_RELOAD;
|
gVfoConfigureMode = VFO_CONFIGURE_RELOAD;
|
||||||
@@ -750,24 +676,22 @@ static void MAIN_Key_UP_DOWN(bool bKeyPressed, bool bKeyHeld, int8_t Direction)
|
|||||||
// jump to the next channel
|
// jump to the next channel
|
||||||
CHFRSCANNER_Start(false, Direction);
|
CHFRSCANNER_Start(false, Direction);
|
||||||
gScanPauseDelayIn_10ms = 1;
|
gScanPauseDelayIn_10ms = 1;
|
||||||
gScheduleScanListen = false;
|
gScheduleScanListen = false;
|
||||||
|
|
||||||
gPttWasReleased = true;
|
gPttWasReleased = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
void MAIN_ProcessKeys(KEY_Code_t Key, bool bKeyPressed, bool bKeyHeld)
|
void MAIN_ProcessKeys(KEY_Code_t Key, bool bKeyPressed, bool bKeyHeld)
|
||||||
{
|
{
|
||||||
#ifdef ENABLE_FMRADIO
|
#ifdef ENABLE_FMRADIO
|
||||||
if (gFmRadioMode && Key != KEY_PTT && Key != KEY_EXIT)
|
if (gFmRadioMode && Key != KEY_PTT && Key != KEY_EXIT) {
|
||||||
{
|
if (!bKeyHeld && bKeyPressed)
|
||||||
if (!bKeyHeld && bKeyPressed)
|
gBeepToPlay = BEEP_500HZ_60MS_DOUBLE_BEEP_OPTIONAL;
|
||||||
gBeepToPlay = BEEP_500HZ_60MS_DOUBLE_BEEP_OPTIONAL;
|
return;
|
||||||
return;
|
}
|
||||||
}
|
#endif
|
||||||
#endif
|
|
||||||
|
|
||||||
if (gDTMF_InputMode && bKeyPressed && !bKeyHeld)
|
if (gDTMF_InputMode && bKeyPressed && !bKeyHeld) {
|
||||||
{
|
|
||||||
const char Character = DTMF_GetCharacter(Key);
|
const char Character = DTMF_GetCharacter(Key);
|
||||||
if (Character != 0xFF)
|
if (Character != 0xFF)
|
||||||
{ // add key to DTMF string
|
{ // add key to DTMF string
|
||||||
@@ -786,18 +710,8 @@ void MAIN_ProcessKeys(KEY_Code_t Key, bool bKeyPressed, bool bKeyHeld)
|
|||||||
// Key = KEY_SIDE2; // what's this doing ???
|
// Key = KEY_SIDE2; // what's this doing ???
|
||||||
// }
|
// }
|
||||||
|
|
||||||
switch (Key)
|
switch (Key) {
|
||||||
{
|
case KEY_0...KEY_9:
|
||||||
case KEY_0:
|
|
||||||
case KEY_1:
|
|
||||||
case KEY_2:
|
|
||||||
case KEY_3:
|
|
||||||
case KEY_4:
|
|
||||||
case KEY_5:
|
|
||||||
case KEY_6:
|
|
||||||
case KEY_7:
|
|
||||||
case KEY_8:
|
|
||||||
case KEY_9:
|
|
||||||
MAIN_Key_DIGITS(Key, bKeyPressed, bKeyHeld);
|
MAIN_Key_DIGITS(Key, bKeyPressed, bKeyHeld);
|
||||||
break;
|
break;
|
||||||
case KEY_MENU:
|
case KEY_MENU:
|
||||||
|
|||||||
125
app/menu.c
@@ -681,7 +681,7 @@ void MENU_AcceptSetting(void)
|
|||||||
GUI_SelectNextDisplay(DISPLAY_MAIN);
|
GUI_SelectNextDisplay(DISPLAY_MAIN);
|
||||||
gDTMF_InputMode = true;
|
gDTMF_InputMode = true;
|
||||||
gDTMF_InputBox_Index = 3;
|
gDTMF_InputBox_Index = 3;
|
||||||
memmove(gDTMF_InputBox, gDTMF_ID, 4);
|
memcpy(gDTMF_InputBox, gDTMF_ID, 4);
|
||||||
gRequestDisplayScreen = DISPLAY_INVALID;
|
gRequestDisplayScreen = DISPLAY_INVALID;
|
||||||
}
|
}
|
||||||
return;
|
return;
|
||||||
@@ -1139,8 +1139,7 @@ void MENU_ShowCurrentSetting(void)
|
|||||||
case MENU_F1LONG:
|
case MENU_F1LONG:
|
||||||
case MENU_F2SHRT:
|
case MENU_F2SHRT:
|
||||||
case MENU_F2LONG:
|
case MENU_F2LONG:
|
||||||
case MENU_MLONG:
|
case MENU_MLONG: {
|
||||||
{
|
|
||||||
uint8_t * fun[]= {
|
uint8_t * fun[]= {
|
||||||
&gEeprom.KEY_1_SHORT_PRESS_ACTION,
|
&gEeprom.KEY_1_SHORT_PRESS_ACTION,
|
||||||
&gEeprom.KEY_1_LONG_PRESS_ACTION,
|
&gEeprom.KEY_1_LONG_PRESS_ACTION,
|
||||||
@@ -1202,17 +1201,14 @@ static void MENU_Key_0_to_9(KEY_Code_t Key, bool bKeyPressed, bool bKeyHeld)
|
|||||||
|
|
||||||
gRequestDisplayScreen = DISPLAY_MENU;
|
gRequestDisplayScreen = DISPLAY_MENU;
|
||||||
|
|
||||||
if (!gIsInSubMenu)
|
if (!gIsInSubMenu) {
|
||||||
{
|
switch (gInputBoxIndex) {
|
||||||
switch (gInputBoxIndex)
|
|
||||||
{
|
|
||||||
case 2:
|
case 2:
|
||||||
gInputBoxIndex = 0;
|
gInputBoxIndex = 0;
|
||||||
|
|
||||||
Value = (gInputBox[0] * 10) + gInputBox[1];
|
Value = (gInputBox[0] * 10) + gInputBox[1];
|
||||||
|
|
||||||
if (Value > 0 && Value <= gMenuListCount)
|
if (Value > 0 && Value <= gMenuListCount) {
|
||||||
{
|
|
||||||
gMenuCursor = Value - 1;
|
gMenuCursor = Value - 1;
|
||||||
gFlagRefreshSetting = true;
|
gFlagRefreshSetting = true;
|
||||||
return;
|
return;
|
||||||
@@ -1226,8 +1222,7 @@ static void MENU_Key_0_to_9(KEY_Code_t Key, bool bKeyPressed, bool bKeyHeld)
|
|||||||
[[fallthrough]];
|
[[fallthrough]];
|
||||||
case 1:
|
case 1:
|
||||||
Value = gInputBox[0];
|
Value = gInputBox[0];
|
||||||
if (Value > 0 && Value <= gMenuListCount)
|
if (Value > 0 && Value <= gMenuListCount) {
|
||||||
{
|
|
||||||
gMenuCursor = Value - 1;
|
gMenuCursor = Value - 1;
|
||||||
gFlagRefreshSetting = true;
|
gFlagRefreshSetting = true;
|
||||||
return;
|
return;
|
||||||
@@ -1241,21 +1236,19 @@ static void MENU_Key_0_to_9(KEY_Code_t Key, bool bKeyPressed, bool bKeyHeld)
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (UI_MENU_GetCurrentMenuId() == MENU_OFFSET)
|
if (UI_MENU_GetCurrentMenuId() == MENU_OFFSET) {
|
||||||
{
|
|
||||||
uint32_t Frequency;
|
uint32_t Frequency;
|
||||||
|
|
||||||
if (gInputBoxIndex < 6)
|
if (gInputBoxIndex < 6) { // invalid frequency
|
||||||
{ // invalid frequency
|
#ifdef ENABLE_VOICE
|
||||||
#ifdef ENABLE_VOICE
|
gAnotherVoiceID = (VOICE_ID_t)Key;
|
||||||
gAnotherVoiceID = (VOICE_ID_t)Key;
|
#endif
|
||||||
#endif
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef ENABLE_VOICE
|
#ifdef ENABLE_VOICE
|
||||||
gAnotherVoiceID = (VOICE_ID_t)Key;
|
gAnotherVoiceID = (VOICE_ID_t)Key;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
Frequency = StrToUL(INPUTBOX_GetAscii())*100;
|
Frequency = StrToUL(INPUTBOX_GetAscii())*100;
|
||||||
gSubMenuSelection = FREQUENCY_RoundToStep(Frequency, gTxVfo->StepFrequency);
|
gSubMenuSelection = FREQUENCY_RoundToStep(Frequency, gTxVfo->StepFrequency);
|
||||||
@@ -1270,11 +1263,10 @@ static void MENU_Key_0_to_9(KEY_Code_t Key, bool bKeyPressed, bool bKeyHeld)
|
|||||||
UI_MENU_GetCurrentMenuId() == MENU_MEM_NAME)
|
UI_MENU_GetCurrentMenuId() == MENU_MEM_NAME)
|
||||||
{ // enter 3-digit channel number
|
{ // enter 3-digit channel number
|
||||||
|
|
||||||
if (gInputBoxIndex < 3)
|
if (gInputBoxIndex < 3) {
|
||||||
{
|
#ifdef ENABLE_VOICE
|
||||||
#ifdef ENABLE_VOICE
|
gAnotherVoiceID = (VOICE_ID_t)Key;
|
||||||
gAnotherVoiceID = (VOICE_ID_t)Key;
|
#endif
|
||||||
#endif
|
|
||||||
gRequestDisplayScreen = DISPLAY_MENU;
|
gRequestDisplayScreen = DISPLAY_MENU;
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@@ -1283,11 +1275,10 @@ static void MENU_Key_0_to_9(KEY_Code_t Key, bool bKeyPressed, bool bKeyHeld)
|
|||||||
|
|
||||||
Value = ((gInputBox[0] * 100) + (gInputBox[1] * 10) + gInputBox[2]) - 1;
|
Value = ((gInputBox[0] * 100) + (gInputBox[1] * 10) + gInputBox[2]) - 1;
|
||||||
|
|
||||||
if (IS_MR_CHANNEL(Value))
|
if (IS_MR_CHANNEL(Value)) {
|
||||||
{
|
#ifdef ENABLE_VOICE
|
||||||
#ifdef ENABLE_VOICE
|
gAnotherVoiceID = (VOICE_ID_t)Key;
|
||||||
gAnotherVoiceID = (VOICE_ID_t)Key;
|
#endif
|
||||||
#endif
|
|
||||||
gSubMenuSelection = Value;
|
gSubMenuSelection = Value;
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@@ -1296,8 +1287,7 @@ static void MENU_Key_0_to_9(KEY_Code_t Key, bool bKeyPressed, bool bKeyHeld)
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (MENU_GetLimits(UI_MENU_GetCurrentMenuId(), &Min, &Max))
|
if (MENU_GetLimits(UI_MENU_GetCurrentMenuId(), &Min, &Max)) {
|
||||||
{
|
|
||||||
gInputBoxIndex = 0;
|
gInputBoxIndex = 0;
|
||||||
gBeepToPlay = BEEP_500HZ_60MS_DOUBLE_BEEP_OPTIONAL;
|
gBeepToPlay = BEEP_500HZ_60MS_DOUBLE_BEEP_OPTIONAL;
|
||||||
return;
|
return;
|
||||||
@@ -1305,8 +1295,7 @@ static void MENU_Key_0_to_9(KEY_Code_t Key, bool bKeyPressed, bool bKeyHeld)
|
|||||||
|
|
||||||
Offset = (Max >= 100) ? 3 : (Max >= 10) ? 2 : 1;
|
Offset = (Max >= 100) ? 3 : (Max >= 10) ? 2 : 1;
|
||||||
|
|
||||||
switch (gInputBoxIndex)
|
switch (gInputBoxIndex) {
|
||||||
{
|
|
||||||
case 1:
|
case 1:
|
||||||
Value = gInputBox[0];
|
Value = gInputBox[0];
|
||||||
break;
|
break;
|
||||||
@@ -1321,8 +1310,7 @@ static void MENU_Key_0_to_9(KEY_Code_t Key, bool bKeyPressed, bool bKeyHeld)
|
|||||||
if (Offset == gInputBoxIndex)
|
if (Offset == gInputBoxIndex)
|
||||||
gInputBoxIndex = 0;
|
gInputBoxIndex = 0;
|
||||||
|
|
||||||
if (Value <= Max)
|
if (Value <= Max) {
|
||||||
{
|
|
||||||
gSubMenuSelection = Value;
|
gSubMenuSelection = Value;
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@@ -1339,6 +1327,10 @@ static void MENU_Key_EXIT(bool bKeyPressed, bool bKeyHeld)
|
|||||||
|
|
||||||
if (!gCssBackgroundScan)
|
if (!gCssBackgroundScan)
|
||||||
{
|
{
|
||||||
|
/* Backlight related menus set full brightness. Set it back to the configured value,
|
||||||
|
just in case we are exiting from one of them. */
|
||||||
|
BACKLIGHT_TurnOn();
|
||||||
|
|
||||||
if (gIsInSubMenu)
|
if (gIsInSubMenu)
|
||||||
{
|
{
|
||||||
if (gInputBoxIndex == 0 || UI_MENU_GetCurrentMenuId() != MENU_OFFSET)
|
if (gInputBoxIndex == 0 || UI_MENU_GetCurrentMenuId() != MENU_OFFSET)
|
||||||
@@ -1400,7 +1392,13 @@ static void MENU_Key_MENU(const bool bKeyPressed, const bool bKeyHeld)
|
|||||||
if (UI_MENU_GetCurrentMenuId() != MENU_SCR)
|
if (UI_MENU_GetCurrentMenuId() != MENU_SCR)
|
||||||
gAnotherVoiceID = MenuList[gMenuCursor].voice_id;
|
gAnotherVoiceID = MenuList[gMenuCursor].voice_id;
|
||||||
#endif
|
#endif
|
||||||
|
if (UI_MENU_GetCurrentMenuId() == MENU_UPCODE
|
||||||
|
|| UI_MENU_GetCurrentMenuId() == MENU_DWCODE
|
||||||
|
#ifdef ENABLE_DTMF_CALLING
|
||||||
|
|| UI_MENU_GetCurrentMenuId() == MENU_ANI_ID
|
||||||
|
#endif
|
||||||
|
)
|
||||||
|
return;
|
||||||
#if 1
|
#if 1
|
||||||
if (UI_MENU_GetCurrentMenuId() == MENU_DEL_CH || UI_MENU_GetCurrentMenuId() == MENU_MEM_NAME)
|
if (UI_MENU_GetCurrentMenuId() == MENU_DEL_CH || UI_MENU_GetCurrentMenuId() == MENU_MEM_NAME)
|
||||||
if (!RADIO_CheckValidChannel(gSubMenuSelection, false, 0))
|
if (!RADIO_CheckValidChannel(gSubMenuSelection, false, 0))
|
||||||
@@ -1436,7 +1434,7 @@ static void MENU_Key_MENU(const bool bKeyPressed, const bool bKeyHeld)
|
|||||||
edit_index = 0; // 'edit_index' is going to be used as the cursor position
|
edit_index = 0; // 'edit_index' is going to be used as the cursor position
|
||||||
|
|
||||||
// make a copy so we can test for change when exiting the menu item
|
// make a copy so we can test for change when exiting the menu item
|
||||||
memmove(edit_original, edit, sizeof(edit_original));
|
memcpy(edit_original, edit, sizeof(edit_original));
|
||||||
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@@ -1448,16 +1446,11 @@ static void MENU_Key_MENU(const bool bKeyPressed, const bool bKeyHeld)
|
|||||||
return; // next char
|
return; // next char
|
||||||
|
|
||||||
// exit
|
// exit
|
||||||
if (memcmp(edit_original, edit, sizeof(edit_original)) == 0)
|
gFlagAcceptSetting = false;
|
||||||
{ // no change - drop it
|
gAskForConfirmation = 0;
|
||||||
gFlagAcceptSetting = false;
|
if (memcmp(edit_original, edit, sizeof(edit_original)) == 0) {
|
||||||
gIsInSubMenu = false;
|
// no change - drop it
|
||||||
gAskForConfirmation = 0;
|
gIsInSubMenu = false;
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
gFlagAcceptSetting = false;
|
|
||||||
gAskForConfirmation = 0;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -1608,23 +1601,23 @@ static void MENU_Key_UP_DOWN(bool bKeyPressed, bool bKeyHeld, int8_t Direction)
|
|||||||
|
|
||||||
gInputBoxIndex = 0;
|
gInputBoxIndex = 0;
|
||||||
}
|
}
|
||||||
else
|
else if (!bKeyPressed)
|
||||||
if (!bKeyPressed)
|
|
||||||
return;
|
return;
|
||||||
|
|
||||||
if (SCANNER_IsScanning()) {
|
if (SCANNER_IsScanning())
|
||||||
return;
|
return;
|
||||||
}
|
|
||||||
|
|
||||||
if (!gIsInSubMenu)
|
if (!gIsInSubMenu) {
|
||||||
{
|
|
||||||
gMenuCursor = NUMBER_AddWithWraparound(gMenuCursor, -Direction, 0, gMenuListCount - 1);
|
gMenuCursor = NUMBER_AddWithWraparound(gMenuCursor, -Direction, 0, gMenuListCount - 1);
|
||||||
|
|
||||||
gFlagRefreshSetting = true;
|
gFlagRefreshSetting = true;
|
||||||
|
|
||||||
gRequestDisplayScreen = DISPLAY_MENU;
|
gRequestDisplayScreen = DISPLAY_MENU;
|
||||||
|
|
||||||
if (UI_MENU_GetCurrentMenuId() != MENU_ABR && gEeprom.BACKLIGHT_TIME == 0) // backlight always off and not in the backlight menu
|
if (UI_MENU_GetCurrentMenuId() != MENU_ABR
|
||||||
|
&& UI_MENU_GetCurrentMenuId() != MENU_ABR_MIN
|
||||||
|
&& UI_MENU_GetCurrentMenuId() != MENU_ABR_MAX
|
||||||
|
&& gEeprom.BACKLIGHT_TIME == 0) // backlight always off and not in the backlight menu
|
||||||
{
|
{
|
||||||
BACKLIGHT_TurnOff();
|
BACKLIGHT_TurnOff();
|
||||||
}
|
}
|
||||||
@@ -1632,11 +1625,9 @@ static void MENU_Key_UP_DOWN(bool bKeyPressed, bool bKeyHeld, int8_t Direction)
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (UI_MENU_GetCurrentMenuId() == MENU_OFFSET)
|
if (UI_MENU_GetCurrentMenuId() == MENU_OFFSET) {
|
||||||
{
|
|
||||||
int32_t Offset = (Direction * gTxVfo->StepFrequency) + gSubMenuSelection;
|
int32_t Offset = (Direction * gTxVfo->StepFrequency) + gSubMenuSelection;
|
||||||
if (Offset < 99999990)
|
if (Offset < 99999990) {
|
||||||
{
|
|
||||||
if (Offset < 0)
|
if (Offset < 0)
|
||||||
Offset = 99999990;
|
Offset = 99999990;
|
||||||
}
|
}
|
||||||
@@ -1680,18 +1671,8 @@ static void MENU_Key_UP_DOWN(bool bKeyPressed, bool bKeyHeld, int8_t Direction)
|
|||||||
|
|
||||||
void MENU_ProcessKeys(KEY_Code_t Key, bool bKeyPressed, bool bKeyHeld)
|
void MENU_ProcessKeys(KEY_Code_t Key, bool bKeyPressed, bool bKeyHeld)
|
||||||
{
|
{
|
||||||
switch (Key)
|
switch (Key) {
|
||||||
{
|
case KEY_0...KEY_9:
|
||||||
case KEY_0:
|
|
||||||
case KEY_1:
|
|
||||||
case KEY_2:
|
|
||||||
case KEY_3:
|
|
||||||
case KEY_4:
|
|
||||||
case KEY_5:
|
|
||||||
case KEY_6:
|
|
||||||
case KEY_7:
|
|
||||||
case KEY_8:
|
|
||||||
case KEY_9:
|
|
||||||
MENU_Key_0_to_9(Key, bKeyPressed, bKeyHeld);
|
MENU_Key_0_to_9(Key, bKeyPressed, bKeyHeld);
|
||||||
break;
|
break;
|
||||||
case KEY_MENU:
|
case KEY_MENU:
|
||||||
|
|||||||
@@ -505,7 +505,7 @@ void SCANNER_TimeSlice500ms(void)
|
|||||||
{
|
{
|
||||||
if (SCANNER_IsScanning() && gScannerSaveState == SCAN_SAVE_NO_PROMPT && gScanCssState < SCAN_CSS_STATE_FOUND) {
|
if (SCANNER_IsScanning() && gScannerSaveState == SCAN_SAVE_NO_PROMPT && gScanCssState < SCAN_CSS_STATE_FOUND) {
|
||||||
gScanProgressIndicator++;
|
gScanProgressIndicator++;
|
||||||
#ifdef ENABLE_NO_CODE_SCAN_TIMEOUT
|
#ifndef ENABLE_NO_CODE_SCAN_TIMEOUT
|
||||||
if (gScanProgressIndicator > 32) {
|
if (gScanProgressIndicator > 32) {
|
||||||
if (gScanCssState == SCAN_CSS_STATE_SCANNING && !gScanSingleFrequency)
|
if (gScanCssState == SCAN_CSS_STATE_SCANNING && !gScanSingleFrequency)
|
||||||
gScanCssState = SCAN_CSS_STATE_FOUND;
|
gScanCssState = SCAN_CSS_STATE_FOUND;
|
||||||
|
|||||||
201
app/spectrum.c
@@ -13,10 +13,15 @@
|
|||||||
* See the License for the specific language governing permissions and
|
* See the License for the specific language governing permissions and
|
||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "app/spectrum.h"
|
#include "app/spectrum.h"
|
||||||
#include "am_fix.h"
|
#include "am_fix.h"
|
||||||
#include "audio.h"
|
#include "audio.h"
|
||||||
|
#include "misc.h"
|
||||||
|
|
||||||
|
#ifdef ENABLE_SCAN_RANGES
|
||||||
|
#include "chFrScanner.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
#include "driver/backlight.h"
|
#include "driver/backlight.h"
|
||||||
#include "frequencies.h"
|
#include "frequencies.h"
|
||||||
#include "ui/helper.h"
|
#include "ui/helper.h"
|
||||||
@@ -33,7 +38,6 @@ struct FrequencyBandInfo {
|
|||||||
|
|
||||||
const uint16_t RSSI_MAX_VALUE = 65535;
|
const uint16_t RSSI_MAX_VALUE = 65535;
|
||||||
|
|
||||||
static uint16_t R30, R37, R3D, R43, R47, R48, R7E;
|
|
||||||
static uint32_t initialFreq;
|
static uint32_t initialFreq;
|
||||||
static char String[32];
|
static char String[32];
|
||||||
|
|
||||||
@@ -53,6 +57,11 @@ PeakInfo peak;
|
|||||||
ScanInfo scanInfo;
|
ScanInfo scanInfo;
|
||||||
KeyboardState kbd = {KEY_INVALID, KEY_INVALID, 0};
|
KeyboardState kbd = {KEY_INVALID, KEY_INVALID, 0};
|
||||||
|
|
||||||
|
#ifdef ENABLE_SCAN_RANGES
|
||||||
|
static uint16_t blacklistFreqs[15];
|
||||||
|
static uint8_t blacklistFreqsIdx;
|
||||||
|
#endif
|
||||||
|
|
||||||
const char *bwOptions[] = {" 25k", "12.5k", "6.25k"};
|
const char *bwOptions[] = {" 25k", "12.5k", "6.25k"};
|
||||||
const uint8_t modulationTypeTuneSteps[] = {100, 50, 10};
|
const uint8_t modulationTypeTuneSteps[] = {100, 50, 10};
|
||||||
const uint8_t modTypeReg47Values[] = {1, 7, 5};
|
const uint8_t modTypeReg47Values[] = {1, 7, 5};
|
||||||
@@ -212,24 +221,29 @@ static void ToggleAFBit(bool on) {
|
|||||||
BK4819_WriteRegister(BK4819_REG_47, reg);
|
BK4819_WriteRegister(BK4819_REG_47, reg);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static const BK4819_REGISTER_t registers_to_save[] ={
|
||||||
|
BK4819_REG_30,
|
||||||
|
BK4819_REG_37,
|
||||||
|
BK4819_REG_3D,
|
||||||
|
BK4819_REG_43,
|
||||||
|
BK4819_REG_47,
|
||||||
|
BK4819_REG_48,
|
||||||
|
BK4819_REG_7E,
|
||||||
|
};
|
||||||
|
|
||||||
|
static uint16_t registers_stack [sizeof(registers_to_save)];
|
||||||
|
|
||||||
static void BackupRegisters() {
|
static void BackupRegisters() {
|
||||||
R30 = BK4819_ReadRegister(BK4819_REG_30);
|
for (uint32_t i = 0; i < ARRAY_SIZE(registers_to_save); i++){
|
||||||
R37 = BK4819_ReadRegister(BK4819_REG_37);
|
registers_stack[i] = BK4819_ReadRegister(registers_to_save[i]);
|
||||||
R3D = BK4819_ReadRegister(BK4819_REG_3D);
|
}
|
||||||
R43 = BK4819_ReadRegister(BK4819_REG_43);
|
|
||||||
R47 = BK4819_ReadRegister(BK4819_REG_47);
|
|
||||||
R48 = BK4819_ReadRegister(BK4819_REG_48);
|
|
||||||
R7E = BK4819_ReadRegister(BK4819_REG_7E);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static void RestoreRegisters() {
|
static void RestoreRegisters() {
|
||||||
BK4819_WriteRegister(BK4819_REG_30, R30);
|
|
||||||
BK4819_WriteRegister(BK4819_REG_37, R37);
|
for (uint32_t i = 0; i < ARRAY_SIZE(registers_to_save); i++){
|
||||||
BK4819_WriteRegister(BK4819_REG_3D, R3D);
|
BK4819_WriteRegister(registers_to_save[i], registers_stack[i]);
|
||||||
BK4819_WriteRegister(BK4819_REG_43, R43);
|
}
|
||||||
BK4819_WriteRegister(BK4819_REG_47, R47);
|
|
||||||
BK4819_WriteRegister(BK4819_REG_48, R48);
|
|
||||||
BK4819_WriteRegister(BK4819_REG_7E, R7E);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static void ToggleAFDAC(bool on) {
|
static void ToggleAFDAC(bool on) {
|
||||||
@@ -260,12 +274,24 @@ static void ResetPeak() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
bool IsCenterMode() { return settings.scanStepIndex < S_STEP_2_5kHz; }
|
bool IsCenterMode() { return settings.scanStepIndex < S_STEP_2_5kHz; }
|
||||||
uint8_t GetStepsCount() { return 128 >> settings.stepsCount; }
|
// scan step in 0.01khz
|
||||||
uint16_t GetScanStep() { return scanStepValues[settings.scanStepIndex]; }
|
uint16_t GetScanStep() { return scanStepValues[settings.scanStepIndex]; }
|
||||||
|
|
||||||
|
uint16_t GetStepsCount()
|
||||||
|
{
|
||||||
|
#ifdef ENABLE_SCAN_RANGES
|
||||||
|
if(gScanRangeStart) {
|
||||||
|
return (gScanRangeStop - gScanRangeStart) / GetScanStep();
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
return 128 >> settings.stepsCount;
|
||||||
|
}
|
||||||
|
|
||||||
uint32_t GetBW() { return GetStepsCount() * GetScanStep(); }
|
uint32_t GetBW() { return GetStepsCount() * GetScanStep(); }
|
||||||
uint32_t GetFStart() {
|
uint32_t GetFStart() {
|
||||||
return IsCenterMode() ? currentFreq - (GetBW() >> 1) : currentFreq;
|
return IsCenterMode() ? currentFreq - (GetBW() >> 1) : currentFreq;
|
||||||
}
|
}
|
||||||
|
|
||||||
uint32_t GetFEnd() { return currentFreq + GetBW(); }
|
uint32_t GetFEnd() { return currentFreq + GetBW(); }
|
||||||
|
|
||||||
static void TuneToPeak() {
|
static void TuneToPeak() {
|
||||||
@@ -352,6 +378,10 @@ static void ResetBlacklist() {
|
|||||||
if (rssiHistory[i] == RSSI_MAX_VALUE)
|
if (rssiHistory[i] == RSSI_MAX_VALUE)
|
||||||
rssiHistory[i] = 0;
|
rssiHistory[i] = 0;
|
||||||
}
|
}
|
||||||
|
#ifdef ENABLE_SCAN_RANGES
|
||||||
|
memset(blacklistFreqs, 0, sizeof(blacklistFreqs));
|
||||||
|
blacklistFreqsIdx = 0;
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
static void RelaunchScan() {
|
static void RelaunchScan() {
|
||||||
@@ -398,7 +428,25 @@ static void UpdatePeakInfo() {
|
|||||||
UpdatePeakInfoForce();
|
UpdatePeakInfoForce();
|
||||||
}
|
}
|
||||||
|
|
||||||
static void Measure() { rssiHistory[scanInfo.i] = scanInfo.rssi = GetRssi(); }
|
static void SetRssiHistory(uint16_t idx, uint16_t rssi)
|
||||||
|
{
|
||||||
|
#ifdef ENABLE_SCAN_RANGES
|
||||||
|
if(scanInfo.measurementsCount > 128) {
|
||||||
|
uint8_t i = (uint32_t)ARRAY_SIZE(rssiHistory) * 1000 / scanInfo.measurementsCount * idx / 1000;
|
||||||
|
if(rssiHistory[i] < rssi || isListening)
|
||||||
|
rssiHistory[i] = rssi;
|
||||||
|
rssiHistory[(i+1)%128] = 0;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
rssiHistory[idx] = rssi;
|
||||||
|
}
|
||||||
|
|
||||||
|
static void Measure()
|
||||||
|
{
|
||||||
|
uint16_t rssi = scanInfo.rssi = GetRssi();
|
||||||
|
SetRssiHistory(scanInfo.i, rssi);
|
||||||
|
}
|
||||||
|
|
||||||
// Update things by keypress
|
// Update things by keypress
|
||||||
|
|
||||||
@@ -427,7 +475,7 @@ static void UpdateRssiTriggerLevel(bool inc) {
|
|||||||
static void UpdateDBMax(bool inc) {
|
static void UpdateDBMax(bool inc) {
|
||||||
if (inc && settings.dbMax < 10) {
|
if (inc && settings.dbMax < 10) {
|
||||||
settings.dbMax += 1;
|
settings.dbMax += 1;
|
||||||
} else if (!inc && settings.dbMax > settings.dbMin) {
|
} else if (!inc && settings.dbMax > 12+settings.dbMin) {
|
||||||
settings.dbMax -= 1;
|
settings.dbMax -= 1;
|
||||||
} else {
|
} else {
|
||||||
return;
|
return;
|
||||||
@@ -440,13 +488,12 @@ static void UpdateDBMax(bool inc) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
static void UpdateScanStep(bool inc) {
|
static void UpdateScanStep(bool inc) {
|
||||||
if (inc && settings.scanStepIndex < S_STEP_100_0kHz) {
|
if (inc) {
|
||||||
settings.scanStepIndex++;
|
settings.scanStepIndex = settings.scanStepIndex != S_STEP_100_0kHz ? settings.scanStepIndex + 1 : 0;
|
||||||
} else if (!inc && settings.scanStepIndex > 0) {
|
|
||||||
settings.scanStepIndex--;
|
|
||||||
} else {
|
} else {
|
||||||
return;
|
settings.scanStepIndex = settings.scanStepIndex != 0 ? settings.scanStepIndex - 1 : S_STEP_100_0kHz;
|
||||||
}
|
}
|
||||||
|
|
||||||
settings.frequencyChangeStep = GetBW() >> 1;
|
settings.frequencyChangeStep = GetBW() >> 1;
|
||||||
RelaunchScan();
|
RelaunchScan();
|
||||||
ResetBlacklist();
|
ResetBlacklist();
|
||||||
@@ -595,12 +642,26 @@ static void UpdateFreqInput(KEY_Code_t key) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
static void Blacklist() {
|
static void Blacklist() {
|
||||||
rssiHistory[peak.i] = RSSI_MAX_VALUE;
|
#ifdef ENABLE_SCAN_RANGES
|
||||||
|
blacklistFreqs[blacklistFreqsIdx++ % ARRAY_SIZE(blacklistFreqs)] = peak.i;
|
||||||
|
#endif
|
||||||
|
|
||||||
|
SetRssiHistory(peak.i, RSSI_MAX_VALUE);
|
||||||
ResetPeak();
|
ResetPeak();
|
||||||
ToggleRX(false);
|
ToggleRX(false);
|
||||||
newScanStart = true;
|
ResetScanStats();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifdef ENABLE_SCAN_RANGES
|
||||||
|
static bool IsBlacklisted(uint16_t idx)
|
||||||
|
{
|
||||||
|
for(uint8_t i = 0; i < ARRAY_SIZE(blacklistFreqs); i++)
|
||||||
|
if(blacklistFreqs[i] == idx)
|
||||||
|
return true;
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
// Draw things
|
// Draw things
|
||||||
|
|
||||||
// applied x2 to prevent initial rounding
|
// applied x2 to prevent initial rounding
|
||||||
@@ -665,7 +726,7 @@ static void DrawStatus() {
|
|||||||
|
|
||||||
static void DrawF(uint32_t f) {
|
static void DrawF(uint32_t f) {
|
||||||
sprintf(String, "%u.%05u", f / 100000, f % 100000);
|
sprintf(String, "%u.%05u", f / 100000, f % 100000);
|
||||||
UI_PrintStringSmall(String, 8, 127, 0);
|
UI_PrintStringSmallNormal(String, 8, 127, 0);
|
||||||
|
|
||||||
sprintf(String, "%3s", gModulationStr[settings.modulationType]);
|
sprintf(String, "%3s", gModulationStr[settings.modulationType]);
|
||||||
GUI_DisplaySmallest(String, 116, 1, false, true);
|
GUI_DisplaySmallest(String, 116, 1, false, true);
|
||||||
@@ -710,9 +771,11 @@ static void DrawRssiTriggerLevel() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
static void DrawTicks() {
|
static void DrawTicks() {
|
||||||
uint32_t f = GetFStart() % 100000;
|
uint32_t f = GetFStart();
|
||||||
uint32_t step = GetScanStep();
|
uint32_t span = GetFEnd() - GetFStart();
|
||||||
for (uint8_t i = 0; i < 128; i += (1 << settings.stepsCount), f += step) {
|
uint32_t step = span / 128;
|
||||||
|
for (uint8_t i = 0; i < 128; i += (1 << settings.stepsCount)) {
|
||||||
|
f = GetFStart() + span * i / 128;
|
||||||
uint8_t barValue = 0b00000001;
|
uint8_t barValue = 0b00000001;
|
||||||
(f % 10000) < step && (barValue |= 0b00000010);
|
(f % 10000) < step && (barValue |= 0b00000010);
|
||||||
(f % 50000) < step && (barValue |= 0b00000100);
|
(f % 50000) < step && (barValue |= 0b00000100);
|
||||||
@@ -764,10 +827,16 @@ static void OnKeyDown(uint8_t key) {
|
|||||||
UpdateFreqChangeStep(false);
|
UpdateFreqChangeStep(false);
|
||||||
break;
|
break;
|
||||||
case KEY_UP:
|
case KEY_UP:
|
||||||
UpdateCurrentFreq(true);
|
#ifdef ENABLE_SCAN_RANGES
|
||||||
|
if(!gScanRangeStart)
|
||||||
|
#endif
|
||||||
|
UpdateCurrentFreq(true);
|
||||||
break;
|
break;
|
||||||
case KEY_DOWN:
|
case KEY_DOWN:
|
||||||
UpdateCurrentFreq(false);
|
#ifdef ENABLE_SCAN_RANGES
|
||||||
|
if(!gScanRangeStart)
|
||||||
|
#endif
|
||||||
|
UpdateCurrentFreq(false);
|
||||||
break;
|
break;
|
||||||
case KEY_SIDE1:
|
case KEY_SIDE1:
|
||||||
Blacklist();
|
Blacklist();
|
||||||
@@ -779,7 +848,10 @@ static void OnKeyDown(uint8_t key) {
|
|||||||
UpdateRssiTriggerLevel(false);
|
UpdateRssiTriggerLevel(false);
|
||||||
break;
|
break;
|
||||||
case KEY_5:
|
case KEY_5:
|
||||||
FreqInput();
|
#ifdef ENABLE_SCAN_RANGES
|
||||||
|
if(!gScanRangeStart)
|
||||||
|
#endif
|
||||||
|
FreqInput();
|
||||||
break;
|
break;
|
||||||
case KEY_0:
|
case KEY_0:
|
||||||
ToggleModulation();
|
ToggleModulation();
|
||||||
@@ -788,7 +860,10 @@ static void OnKeyDown(uint8_t key) {
|
|||||||
ToggleListeningBW();
|
ToggleListeningBW();
|
||||||
break;
|
break;
|
||||||
case KEY_4:
|
case KEY_4:
|
||||||
ToggleStepsCount();
|
#ifdef ENABLE_SCAN_RANGES
|
||||||
|
if(!gScanRangeStart)
|
||||||
|
#endif
|
||||||
|
ToggleStepsCount();
|
||||||
break;
|
break;
|
||||||
case KEY_SIDE2:
|
case KEY_SIDE2:
|
||||||
ToggleBacklight();
|
ToggleBacklight();
|
||||||
@@ -932,7 +1007,7 @@ static void RenderStatus() {
|
|||||||
|
|
||||||
static void RenderSpectrum() {
|
static void RenderSpectrum() {
|
||||||
DrawTicks();
|
DrawTicks();
|
||||||
DrawArrow(peak.i << settings.stepsCount);
|
DrawArrow(128u * peak.i / GetStepsCount());
|
||||||
DrawSpectrum();
|
DrawSpectrum();
|
||||||
DrawRssiTriggerLevel();
|
DrawRssiTriggerLevel();
|
||||||
DrawF(peak.f);
|
DrawF(peak.f);
|
||||||
@@ -1000,7 +1075,7 @@ static void RenderStill() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
static void Render() {
|
static void Render() {
|
||||||
memset(gFrameBuffer, 0, sizeof(gFrameBuffer));
|
UI_DisplayClear();
|
||||||
|
|
||||||
switch (currentState) {
|
switch (currentState) {
|
||||||
case SPECTRUM:
|
case SPECTRUM:
|
||||||
@@ -1049,7 +1124,11 @@ bool HandleUserInput() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
static void Scan() {
|
static void Scan() {
|
||||||
if (rssiHistory[scanInfo.i] != RSSI_MAX_VALUE) {
|
if (rssiHistory[scanInfo.i] != RSSI_MAX_VALUE
|
||||||
|
#ifdef ENABLE_SCAN_RANGES
|
||||||
|
&& !IsBlacklisted(scanInfo.i)
|
||||||
|
#endif
|
||||||
|
) {
|
||||||
SetF(scanInfo.f);
|
SetF(scanInfo.f);
|
||||||
Measure();
|
Measure();
|
||||||
UpdateScanInfo();
|
UpdateScanInfo();
|
||||||
@@ -1070,6 +1149,10 @@ static void UpdateScan() {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if(scanInfo.measurementsCount < 128)
|
||||||
|
memset(&rssiHistory[scanInfo.measurementsCount], 0,
|
||||||
|
sizeof(rssiHistory) - scanInfo.measurementsCount*sizeof(rssiHistory[0]));
|
||||||
|
|
||||||
redrawScreen = true;
|
redrawScreen = true;
|
||||||
preventKeypress = false;
|
preventKeypress = false;
|
||||||
|
|
||||||
@@ -1122,7 +1205,7 @@ static void UpdateListening() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
ToggleRX(false);
|
ToggleRX(false);
|
||||||
newScanStart = true;
|
ResetScanStats();
|
||||||
}
|
}
|
||||||
|
|
||||||
static void Tick() {
|
static void Tick() {
|
||||||
@@ -1135,6 +1218,26 @@ static void Tick() {
|
|||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifdef ENABLE_SCAN_RANGES
|
||||||
|
if (gNextTimeslice_500ms) {
|
||||||
|
gNextTimeslice_500ms = false;
|
||||||
|
|
||||||
|
// if a lot of steps then it takes long time
|
||||||
|
// we don't want to wait for whole scan
|
||||||
|
// listening has it's own timer
|
||||||
|
if(GetStepsCount()>128 && !isListening) {
|
||||||
|
UpdatePeakInfo();
|
||||||
|
if (IsPeakOverLevel()) {
|
||||||
|
ToggleRX(true);
|
||||||
|
TuneToPeak();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
redrawScreen = true;
|
||||||
|
preventKeypress = false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
if (!preventKeypress) {
|
if (!preventKeypress) {
|
||||||
HandleUserInput();
|
HandleUserInput();
|
||||||
}
|
}
|
||||||
@@ -1166,18 +1269,32 @@ void APP_RunSpectrum() {
|
|||||||
// TX here coz it always? set to active VFO
|
// TX here coz it always? set to active VFO
|
||||||
vfo = gEeprom.TX_VFO;
|
vfo = gEeprom.TX_VFO;
|
||||||
// set the current frequency in the middle of the display
|
// set the current frequency in the middle of the display
|
||||||
currentFreq = initialFreq = gEeprom.VfoInfo[vfo].pRX->Frequency -
|
#ifdef ENABLE_SCAN_RANGES
|
||||||
((GetStepsCount() / 2) * GetScanStep());
|
if(gScanRangeStart) {
|
||||||
|
currentFreq = initialFreq = gScanRangeStart;
|
||||||
|
for(uint8_t i = 0; i < ARRAY_SIZE(scanStepValues); i++) {
|
||||||
|
if(scanStepValues[i] >= gTxVfo->StepFrequency) {
|
||||||
|
settings.scanStepIndex = i;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
settings.stepsCount = STEPS_128;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
#endif
|
||||||
|
currentFreq = initialFreq = gTxVfo->pRX->Frequency -
|
||||||
|
((GetStepsCount() / 2) * GetScanStep());
|
||||||
|
|
||||||
BackupRegisters();
|
BackupRegisters();
|
||||||
|
|
||||||
isListening = true; // to turn off RX later
|
isListening = true; // to turn off RX later
|
||||||
redrawStatus = true;
|
redrawStatus = true;
|
||||||
redrawScreen = false; // we will wait until scan done
|
redrawScreen = true;
|
||||||
newScanStart = true;
|
newScanStart = true;
|
||||||
|
|
||||||
|
|
||||||
ToggleRX(true), ToggleRX(false); // hack to prevent noise when squelch off
|
ToggleRX(true), ToggleRX(false); // hack to prevent noise when squelch off
|
||||||
RADIO_SetModulation(settings.modulationType = gRxVfo->Modulation);
|
RADIO_SetModulation(settings.modulationType = gTxVfo->Modulation);
|
||||||
|
|
||||||
BK4819_SetFilterBandwidth(settings.listenBw = BK4819_FILTER_BW_WIDE, false);
|
BK4819_SetFilterBandwidth(settings.listenBw = BK4819_FILTER_BW_WIDE, false);
|
||||||
|
|
||||||
|
|||||||
@@ -45,9 +45,8 @@ static const uint8_t U8RssiMap[] = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
static const uint16_t scanStepValues[] = {
|
static const uint16_t scanStepValues[] = {
|
||||||
1, 10, 50, 100,
|
1, 10, 50, 100, 250, 500, 625, 833,
|
||||||
|
1000, 1250, 1500, 2000, 2500, 5000, 10000,
|
||||||
250, 500, 625, 833, 1000, 1250, 2500, 10000,
|
|
||||||
};
|
};
|
||||||
|
|
||||||
static const uint16_t scanStepBWRegValues[] = {
|
static const uint16_t scanStepBWRegValues[] = {
|
||||||
@@ -110,7 +109,10 @@ typedef enum ScanStep {
|
|||||||
S_STEP_8_33kHz,
|
S_STEP_8_33kHz,
|
||||||
S_STEP_10_0kHz,
|
S_STEP_10_0kHz,
|
||||||
S_STEP_12_5kHz,
|
S_STEP_12_5kHz,
|
||||||
|
S_STEP_15_0kHz,
|
||||||
|
S_STEP_20_0kHz,
|
||||||
S_STEP_25_0kHz,
|
S_STEP_25_0kHz,
|
||||||
|
S_STEP_50_0kHz,
|
||||||
S_STEP_100_0kHz,
|
S_STEP_100_0kHz,
|
||||||
} ScanStep;
|
} ScanStep;
|
||||||
|
|
||||||
@@ -136,17 +138,17 @@ typedef struct KeyboardState {
|
|||||||
|
|
||||||
typedef struct ScanInfo {
|
typedef struct ScanInfo {
|
||||||
uint16_t rssi, rssiMin, rssiMax;
|
uint16_t rssi, rssiMin, rssiMax;
|
||||||
uint8_t i, iPeak;
|
uint16_t i, iPeak;
|
||||||
uint32_t f, fPeak;
|
uint32_t f, fPeak;
|
||||||
uint16_t scanStep;
|
uint16_t scanStep;
|
||||||
uint8_t measurementsCount;
|
uint16_t measurementsCount;
|
||||||
} ScanInfo;
|
} ScanInfo;
|
||||||
|
|
||||||
typedef struct PeakInfo {
|
typedef struct PeakInfo {
|
||||||
uint16_t t;
|
uint16_t t;
|
||||||
uint16_t rssi;
|
uint16_t rssi;
|
||||||
uint32_t f;
|
uint32_t f;
|
||||||
uint8_t i;
|
uint16_t i;
|
||||||
} PeakInfo;
|
} PeakInfo;
|
||||||
|
|
||||||
void APP_RunSpectrum(void);
|
void APP_RunSpectrum(void);
|
||||||
|
|||||||
59
app/uart.c
@@ -395,6 +395,11 @@ static void CMD_052D(const uint8_t *pBuffer)
|
|||||||
SendReply(&Reply, sizeof(Reply));
|
SendReply(&Reply, sizeof(Reply));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// session init, sends back version info and state
|
||||||
|
// timestamp is a session id really
|
||||||
|
// this command also disables dual watch, crossband,
|
||||||
|
// DTMF side tones, freq reverse, PTT ID, DTMF decoding, frequency offset
|
||||||
|
// exits power save, sets main VFO to upper,
|
||||||
static void CMD_052F(const uint8_t *pBuffer)
|
static void CMD_052F(const uint8_t *pBuffer)
|
||||||
{
|
{
|
||||||
const CMD_052F_t *pCmd = (const CMD_052F_t *)pBuffer;
|
const CMD_052F_t *pCmd = (const CMD_052F_t *)pBuffer;
|
||||||
@@ -429,6 +434,44 @@ static void CMD_052F(const uint8_t *pBuffer)
|
|||||||
SendVersion();
|
SendVersion();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifdef ENABLE_UART_RW_BK_REGS
|
||||||
|
static void CMD_0601_ReadBK4819Reg(const uint8_t *pBuffer)
|
||||||
|
{
|
||||||
|
typedef struct __attribute__((__packed__)) {
|
||||||
|
Header_t header;
|
||||||
|
uint8_t reg;
|
||||||
|
} CMD_0601_t;
|
||||||
|
|
||||||
|
CMD_0601_t *cmd = (CMD_0601_t*) pBuffer;
|
||||||
|
|
||||||
|
struct __attribute__((__packed__)) {
|
||||||
|
Header_t header;
|
||||||
|
struct __attribute__((__packed__)) {
|
||||||
|
uint8_t reg;
|
||||||
|
uint16_t value;
|
||||||
|
} data;
|
||||||
|
} reply;
|
||||||
|
|
||||||
|
reply.header.ID = 0x0601;
|
||||||
|
reply.header.Size = sizeof(reply.data);
|
||||||
|
reply.data.reg = cmd->reg;
|
||||||
|
reply.data.value = BK4819_ReadRegister(cmd->reg);
|
||||||
|
SendReply(&reply, sizeof(reply));
|
||||||
|
}
|
||||||
|
|
||||||
|
static void CMD_0602_WriteBK4819Reg(const uint8_t *pBuffer)
|
||||||
|
{
|
||||||
|
typedef struct __attribute__((__packed__)) {
|
||||||
|
Header_t header;
|
||||||
|
uint8_t reg;
|
||||||
|
uint16_t value;
|
||||||
|
} CMD_0602_t;
|
||||||
|
|
||||||
|
CMD_0602_t *cmd = (CMD_0602_t*) pBuffer;
|
||||||
|
BK4819_WriteRegister(cmd->reg, cmd->value);
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
bool UART_IsCommandAvailable(void)
|
bool UART_IsCommandAvailable(void)
|
||||||
{
|
{
|
||||||
uint16_t Index;
|
uint16_t Index;
|
||||||
@@ -487,11 +530,11 @@ bool UART_IsCommandAvailable(void)
|
|||||||
if (TailIndex < Index)
|
if (TailIndex < Index)
|
||||||
{
|
{
|
||||||
const uint16_t ChunkSize = sizeof(UART_DMA_Buffer) - Index;
|
const uint16_t ChunkSize = sizeof(UART_DMA_Buffer) - Index;
|
||||||
memmove(UART_Command.Buffer, UART_DMA_Buffer + Index, ChunkSize);
|
memcpy(UART_Command.Buffer, UART_DMA_Buffer + Index, ChunkSize);
|
||||||
memmove(UART_Command.Buffer + ChunkSize, UART_DMA_Buffer, TailIndex);
|
memcpy(UART_Command.Buffer + ChunkSize, UART_DMA_Buffer, TailIndex);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
memmove(UART_Command.Buffer, UART_DMA_Buffer + Index, TailIndex - Index);
|
memcpy(UART_Command.Buffer, UART_DMA_Buffer + Index, TailIndex - Index);
|
||||||
|
|
||||||
TailIndex = DMA_INDEX(TailIndex, 2);
|
TailIndex = DMA_INDEX(TailIndex, 2);
|
||||||
if (TailIndex < gUART_WriteIndex)
|
if (TailIndex < gUART_WriteIndex)
|
||||||
@@ -567,5 +610,15 @@ void UART_HandleCommand(void)
|
|||||||
NVIC_SystemReset();
|
NVIC_SystemReset();
|
||||||
#endif
|
#endif
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
#ifdef ENABLE_UART_RW_BK_REGS
|
||||||
|
case 0x0601:
|
||||||
|
CMD_0601_ReadBK4819Reg(UART_Command.Buffer);
|
||||||
|
break;
|
||||||
|
|
||||||
|
case 0x0602:
|
||||||
|
CMD_0602_WriteBK4819Reg(UART_Command.Buffer);
|
||||||
|
break;
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
2
audio.c
@@ -205,7 +205,7 @@ volatile bool gFlagPlayQueuedVoice;
|
|||||||
VOICE_ID_t gAnotherVoiceID = VOICE_ID_INVALID;
|
VOICE_ID_t gAnotherVoiceID = VOICE_ID_INVALID;
|
||||||
|
|
||||||
|
|
||||||
void AUDIO_PlayVoice(uint8_t VoiceID)
|
static void AUDIO_PlayVoice(uint8_t VoiceID)
|
||||||
{
|
{
|
||||||
unsigned int i;
|
unsigned int i;
|
||||||
|
|
||||||
|
|||||||
2
audio.h
@@ -149,7 +149,6 @@ static inline void AUDIO_AudioPathOff(void) {
|
|||||||
extern volatile bool gFlagPlayQueuedVoice;
|
extern volatile bool gFlagPlayQueuedVoice;
|
||||||
extern VOICE_ID_t gAnotherVoiceID;
|
extern VOICE_ID_t gAnotherVoiceID;
|
||||||
|
|
||||||
void AUDIO_PlayVoice(uint8_t VoiceID);
|
|
||||||
void AUDIO_PlaySingleVoice(bool bFlag);
|
void AUDIO_PlaySingleVoice(bool bFlag);
|
||||||
void AUDIO_SetVoiceID(uint8_t Index, VOICE_ID_t VoiceID);
|
void AUDIO_SetVoiceID(uint8_t Index, VOICE_ID_t VoiceID);
|
||||||
uint8_t AUDIO_SetDigitVoice(uint8_t Index, uint16_t Value);
|
uint8_t AUDIO_SetDigitVoice(uint8_t Index, uint16_t Value);
|
||||||
@@ -157,4 +156,3 @@ static inline void AUDIO_AudioPathOff(void) {
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|||||||
13
bitmaps.c
@@ -312,3 +312,16 @@ const uint8_t BITMAP_compand[6] =
|
|||||||
0b01000010,
|
0b01000010,
|
||||||
0b00100100
|
0b00100100
|
||||||
};
|
};
|
||||||
|
|
||||||
|
#ifndef ENABLE_CUSTOM_MENU_LAYOUT
|
||||||
|
const uint8_t BITMAP_CurrentIndicator[8] = {
|
||||||
|
0xFF,
|
||||||
|
0xFF,
|
||||||
|
0x7E,
|
||||||
|
0x7E,
|
||||||
|
0x3C,
|
||||||
|
0x3C,
|
||||||
|
0x18,
|
||||||
|
0x18
|
||||||
|
};
|
||||||
|
#endif
|
||||||
|
|||||||
@@ -44,5 +44,8 @@ extern const uint8_t BITMAP_ScanList2[6];
|
|||||||
|
|
||||||
extern const uint8_t BITMAP_compand[6];
|
extern const uint8_t BITMAP_compand[6];
|
||||||
|
|
||||||
|
#ifndef ENABLE_CUSTOM_MENU_LAYOUT
|
||||||
|
extern const uint8_t BITMAP_CurrentIndicator[8];
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|||||||
12
board.c
@@ -494,10 +494,12 @@ void BOARD_Init(void)
|
|||||||
BACKLIGHT_InitHardware();
|
BACKLIGHT_InitHardware();
|
||||||
BOARD_ADC_Init();
|
BOARD_ADC_Init();
|
||||||
ST7565_Init();
|
ST7565_Init();
|
||||||
#ifdef ENABLE_FMRADIO
|
#ifdef ENABLE_FMRADIO
|
||||||
BK1080_Init(0, false);
|
BK1080_Init0();
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#if defined(ENABLE_UART) || defined(ENABLED_AIRCOPY)
|
||||||
CRC_Init();
|
CRC_Init();
|
||||||
|
#endif
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
41
debugging.h
@@ -1,35 +1,48 @@
|
|||||||
#ifndef DEBUGGING_H
|
#ifndef DEBUGGING_H
|
||||||
#define DEBUGGING_H
|
#define DEBUGGING_H
|
||||||
|
|
||||||
|
#ifdef ENABLE_UART
|
||||||
|
|
||||||
#include "driver/uart.h"
|
#include "driver/uart.h"
|
||||||
#include "driver/bk4819.h"
|
#include "driver/bk4819.h"
|
||||||
#include "string.h"
|
#include "string.h"
|
||||||
#include "external/printf/printf.h"
|
#include "external/printf/printf.h"
|
||||||
#include "am_fix.h"
|
#include "am_fix.h"
|
||||||
|
|
||||||
|
static inline void LogUart(const char *const str)
|
||||||
static inline void LogUart(char * str)
|
|
||||||
{
|
{
|
||||||
UART_Send(str, strlen(str));
|
UART_Send(str, strlen(str));
|
||||||
|
}
|
||||||
|
|
||||||
|
static inline void LogUartf(const char* format, ...)
|
||||||
|
{
|
||||||
|
char buffer[128];
|
||||||
|
va_list va;
|
||||||
|
va_start(va, format);
|
||||||
|
vsnprintf(buffer, (size_t)-1, format, va);
|
||||||
|
va_end(va);
|
||||||
|
UART_Send(buffer, strlen(buffer));
|
||||||
}
|
}
|
||||||
|
|
||||||
static inline void LogRegUart(uint16_t reg)
|
static inline void LogRegUart(uint16_t reg)
|
||||||
{
|
{
|
||||||
uint16_t regVal = BK4819_ReadRegister(reg);
|
uint16_t regVal = BK4819_ReadRegister(reg);
|
||||||
char buf[32];
|
char buf[32];
|
||||||
sprintf(buf, "reg%02X: %04X\n", reg, regVal);
|
sprintf(buf, "reg%02X: %04X\n", reg, regVal);
|
||||||
LogUart(buf);
|
LogUart(buf);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
static inline void LogPrint()
|
static inline void LogPrint()
|
||||||
{
|
{
|
||||||
uint16_t rssi = BK4819_GetRSSI();
|
uint16_t rssi = BK4819_GetRSSI();
|
||||||
uint16_t reg7e = BK4819_ReadRegister(0x7E);
|
uint16_t reg7e = BK4819_ReadRegister(0x7E);
|
||||||
char buf[32];
|
char buf[32];
|
||||||
sprintf(buf, "reg7E: %d %2d %6d %2d %d rssi: %d\n",
|
sprintf(buf, "reg7E: %d %2d %6d %2d %d rssi: %d\n", (reg7e >> 15),
|
||||||
(reg7e >> 15), (reg7e >> 12) & 0b111, (reg7e >> 5) & 0b1111111, (reg7e >> 2) & 0b111, (reg7e >> 0) & 0b11, rssi);
|
(reg7e >> 12) & 0b111, (reg7e >> 5) & 0b1111111,
|
||||||
LogUart(buf);
|
(reg7e >> 2) & 0b111, (reg7e >> 0) & 0b11, rssi);
|
||||||
|
LogUart(buf);
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|||||||
@@ -67,12 +67,12 @@ void BACKLIGHT_TurnOn(void)
|
|||||||
case 1: // 5 sec
|
case 1: // 5 sec
|
||||||
case 2: // 10 sec
|
case 2: // 10 sec
|
||||||
case 3: // 20 sec
|
case 3: // 20 sec
|
||||||
gBacklightCountdown_500ms = 1 + (2 << (gEeprom.BACKLIGHT_TIME - 1)) * 10;
|
gBacklightCountdown_500ms = 1 + (2 << (gEeprom.BACKLIGHT_TIME - 1)) * 5;
|
||||||
break;
|
break;
|
||||||
case 4: // 1 min
|
case 4: // 1 min
|
||||||
case 5: // 2 min
|
case 5: // 2 min
|
||||||
case 6: // 4 min
|
case 6: // 4 min
|
||||||
gBacklightCountdown_500ms = 1 + (2 << (gEeprom.BACKLIGHT_TIME - 4)) * 120;
|
gBacklightCountdown_500ms = 1 + (2 << (gEeprom.BACKLIGHT_TIME - 4)) * 60;
|
||||||
break;
|
break;
|
||||||
case 7: // always on
|
case 7: // always on
|
||||||
gBacklightCountdown_500ms = 0;
|
gBacklightCountdown_500ms = 0;
|
||||||
@@ -103,8 +103,16 @@ bool BACKLIGHT_IsOn()
|
|||||||
return backlightOn;
|
return backlightOn;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static uint8_t currentBrightness;
|
||||||
|
|
||||||
void BACKLIGHT_SetBrightness(uint8_t brigtness)
|
void BACKLIGHT_SetBrightness(uint8_t brigtness)
|
||||||
{
|
{
|
||||||
|
currentBrightness = brigtness;
|
||||||
PWM_PLUS0_CH0_COMP = (1 << brigtness) - 1;
|
PWM_PLUS0_CH0_COMP = (1 << brigtness) - 1;
|
||||||
//PWM_PLUS0_SWLOAD = 1;
|
//PWM_PLUS0_SWLOAD = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
uint8_t BACKLIGHT_GetBrightness(void)
|
||||||
|
{
|
||||||
|
return currentBrightness;
|
||||||
|
}
|
||||||
@@ -36,5 +36,6 @@ void BACKLIGHT_TurnOn();
|
|||||||
void BACKLIGHT_TurnOff();
|
void BACKLIGHT_TurnOff();
|
||||||
bool BACKLIGHT_IsOn();
|
bool BACKLIGHT_IsOn();
|
||||||
void BACKLIGHT_SetBrightness(uint8_t brigtness);
|
void BACKLIGHT_SetBrightness(uint8_t brigtness);
|
||||||
|
uint8_t BACKLIGHT_GetBrightness(void);
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
@@ -39,16 +39,19 @@ static bool gIsInitBK1080;
|
|||||||
uint16_t BK1080_BaseFrequency;
|
uint16_t BK1080_BaseFrequency;
|
||||||
uint16_t BK1080_FrequencyDeviation;
|
uint16_t BK1080_FrequencyDeviation;
|
||||||
|
|
||||||
void BK1080_Init(uint16_t Frequency, bool bDoScan)
|
void BK1080_Init0(void)
|
||||||
|
{
|
||||||
|
BK1080_Init(0,0/*,0*/);
|
||||||
|
}
|
||||||
|
|
||||||
|
void BK1080_Init(uint16_t freq, uint8_t band/*, uint8_t space*/)
|
||||||
{
|
{
|
||||||
unsigned int i;
|
unsigned int i;
|
||||||
|
|
||||||
if (bDoScan)
|
if (freq) {
|
||||||
{
|
|
||||||
GPIO_ClearBit(&GPIOB->DATA, GPIOB_PIN_BK1080);
|
GPIO_ClearBit(&GPIOB->DATA, GPIOB_PIN_BK1080);
|
||||||
|
|
||||||
if (!gIsInitBK1080)
|
if (!gIsInitBK1080) {
|
||||||
{
|
|
||||||
for (i = 0; i < ARRAY_SIZE(BK1080_RegisterTable); i++)
|
for (i = 0; i < ARRAY_SIZE(BK1080_RegisterTable); i++)
|
||||||
BK1080_WriteRegister(i, BK1080_RegisterTable[i]);
|
BK1080_WriteRegister(i, BK1080_RegisterTable[i]);
|
||||||
|
|
||||||
@@ -61,20 +64,14 @@ void BK1080_Init(uint16_t Frequency, bool bDoScan)
|
|||||||
|
|
||||||
gIsInitBK1080 = true;
|
gIsInitBK1080 = true;
|
||||||
}
|
}
|
||||||
else
|
else {
|
||||||
{
|
|
||||||
BK1080_WriteRegister(BK1080_REG_02_POWER_CONFIGURATION, 0x0201);
|
BK1080_WriteRegister(BK1080_REG_02_POWER_CONFIGURATION, 0x0201);
|
||||||
}
|
}
|
||||||
|
|
||||||
BK1080_WriteRegister(BK1080_REG_05_SYSTEM_CONFIGURATION2, 0x0A5F);
|
BK1080_WriteRegister(BK1080_REG_05_SYSTEM_CONFIGURATION2, 0x0A1F);
|
||||||
BK1080_WriteRegister(BK1080_REG_03_CHANNEL, Frequency - 760);
|
BK1080_SetFrequency(freq, band/*, space*/);
|
||||||
|
|
||||||
SYSTEM_DelayMs(10);
|
|
||||||
|
|
||||||
BK1080_WriteRegister(BK1080_REG_03_CHANNEL, (Frequency - 760) | 0x8000);
|
|
||||||
}
|
}
|
||||||
else
|
else {
|
||||||
{
|
|
||||||
BK1080_WriteRegister(BK1080_REG_02_POWER_CONFIGURATION, 0x0241);
|
BK1080_WriteRegister(BK1080_REG_02_POWER_CONFIGURATION, 0x0241);
|
||||||
GPIO_SetBit(&GPIOB->DATA, GPIOB_PIN_BK1080);
|
GPIO_SetBit(&GPIOB->DATA, GPIOB_PIN_BK1080);
|
||||||
}
|
}
|
||||||
@@ -108,11 +105,22 @@ void BK1080_Mute(bool Mute)
|
|||||||
BK1080_WriteRegister(BK1080_REG_02_POWER_CONFIGURATION, Mute ? 0x4201 : 0x0201);
|
BK1080_WriteRegister(BK1080_REG_02_POWER_CONFIGURATION, Mute ? 0x4201 : 0x0201);
|
||||||
}
|
}
|
||||||
|
|
||||||
void BK1080_SetFrequency(uint16_t Frequency)
|
void BK1080_SetFrequency(uint16_t frequency, uint8_t band/*, uint8_t space*/)
|
||||||
{
|
{
|
||||||
BK1080_WriteRegister(BK1080_REG_03_CHANNEL, Frequency - 760);
|
//uint8_t spacings[] = {20,10,5};
|
||||||
|
//space %= 3;
|
||||||
|
|
||||||
|
uint16_t channel = (frequency - BK1080_GetFreqLoLimit(band))/* * 10 / spacings[space]*/;
|
||||||
|
|
||||||
|
uint16_t regval = BK1080_ReadRegister(BK1080_REG_05_SYSTEM_CONFIGURATION2);
|
||||||
|
regval = (regval & ~(0b11 << 6)) | ((band & 0b11) << 6);
|
||||||
|
//regval = (regval & ~(0b11 << 4)) | ((space & 0b11) << 4);
|
||||||
|
|
||||||
|
BK1080_WriteRegister(BK1080_REG_05_SYSTEM_CONFIGURATION2, regval);
|
||||||
|
|
||||||
|
BK1080_WriteRegister(BK1080_REG_03_CHANNEL, channel);
|
||||||
SYSTEM_DelayMs(10);
|
SYSTEM_DelayMs(10);
|
||||||
BK1080_WriteRegister(BK1080_REG_03_CHANNEL, (Frequency - 760) | 0x8000);
|
BK1080_WriteRegister(BK1080_REG_03_CHANNEL, channel | 0x8000);
|
||||||
}
|
}
|
||||||
|
|
||||||
void BK1080_GetFrequencyDeviation(uint16_t Frequency)
|
void BK1080_GetFrequencyDeviation(uint16_t Frequency)
|
||||||
@@ -120,3 +128,17 @@ void BK1080_GetFrequencyDeviation(uint16_t Frequency)
|
|||||||
BK1080_BaseFrequency = Frequency;
|
BK1080_BaseFrequency = Frequency;
|
||||||
BK1080_FrequencyDeviation = BK1080_ReadRegister(BK1080_REG_07) / 16;
|
BK1080_FrequencyDeviation = BK1080_ReadRegister(BK1080_REG_07) / 16;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
uint16_t BK1080_GetFreqLoLimit(uint8_t band)
|
||||||
|
{
|
||||||
|
uint16_t lim[] = {875, 760, 760, 640};
|
||||||
|
return lim[band % 4];
|
||||||
|
}
|
||||||
|
|
||||||
|
uint16_t BK1080_GetFreqHiLimit(uint8_t band)
|
||||||
|
{
|
||||||
|
band %= 4;
|
||||||
|
uint16_t lim[] = {1080, 1080, 900, 760};
|
||||||
|
return lim[band % 4];
|
||||||
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -24,11 +24,14 @@
|
|||||||
extern uint16_t BK1080_BaseFrequency;
|
extern uint16_t BK1080_BaseFrequency;
|
||||||
extern uint16_t BK1080_FrequencyDeviation;
|
extern uint16_t BK1080_FrequencyDeviation;
|
||||||
|
|
||||||
void BK1080_Init(uint16_t Frequency, bool bDoScan);
|
void BK1080_Init0(void);
|
||||||
|
void BK1080_Init(uint16_t Frequency, uint8_t band/*, uint8_t space*/);
|
||||||
uint16_t BK1080_ReadRegister(BK1080_Register_t Register);
|
uint16_t BK1080_ReadRegister(BK1080_Register_t Register);
|
||||||
void BK1080_WriteRegister(BK1080_Register_t Register, uint16_t Value);
|
void BK1080_WriteRegister(BK1080_Register_t Register, uint16_t Value);
|
||||||
void BK1080_Mute(bool Mute);
|
void BK1080_Mute(bool Mute);
|
||||||
void BK1080_SetFrequency(uint16_t Frequency);
|
uint16_t BK1080_GetFreqLoLimit(uint8_t band);
|
||||||
|
uint16_t BK1080_GetFreqHiLimit(uint8_t band);
|
||||||
|
void BK1080_SetFrequency(uint16_t frequency, uint8_t band/*, uint8_t space*/);
|
||||||
void BK1080_GetFrequencyDeviation(uint16_t Frequency);
|
void BK1080_GetFrequencyDeviation(uint16_t Frequency);
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
@@ -17,6 +17,7 @@
|
|||||||
#ifndef BK4819_REGS_H
|
#ifndef BK4819_REGS_H
|
||||||
#define BK4819_REGS_H
|
#define BK4819_REGS_H
|
||||||
|
|
||||||
|
#include <stdint.h>
|
||||||
|
|
||||||
typedef struct {
|
typedef struct {
|
||||||
const char *name;
|
const char *name;
|
||||||
@@ -387,4 +388,3 @@ enum {
|
|||||||
};
|
};
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|||||||
249
driver/bk4819.c
@@ -14,15 +14,20 @@
|
|||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <stdio.h> // NULL
|
#include <stdint.h>
|
||||||
|
#include <stdio.h>
|
||||||
|
|
||||||
|
#include "settings.h"
|
||||||
|
|
||||||
|
#include "../audio.h"
|
||||||
|
#include "../bsp/dp32g030/gpio.h"
|
||||||
|
#include "../bsp/dp32g030/portcon.h"
|
||||||
|
|
||||||
#include "audio.h"
|
|
||||||
#include "bk4819.h"
|
#include "bk4819.h"
|
||||||
#include "bsp/dp32g030/gpio.h"
|
#include "gpio.h"
|
||||||
#include "bsp/dp32g030/portcon.h"
|
#include "system.h"
|
||||||
#include "driver/gpio.h"
|
#include "systick.h"
|
||||||
#include "driver/system.h"
|
|
||||||
#include "driver/systick.h"
|
|
||||||
|
|
||||||
#ifndef ARRAY_SIZE
|
#ifndef ARRAY_SIZE
|
||||||
#define ARRAY_SIZE(x) (sizeof(x) / sizeof(x[0]))
|
#define ARRAY_SIZE(x) (sizeof(x) / sizeof(x[0]))
|
||||||
@@ -127,7 +132,6 @@ static uint16_t BK4819_ReadU16(void)
|
|||||||
PORTCON_PORTC_IE = (PORTCON_PORTC_IE & ~PORTCON_PORTC_IE_C2_MASK) | PORTCON_PORTC_IE_C2_BITS_ENABLE;
|
PORTCON_PORTC_IE = (PORTCON_PORTC_IE & ~PORTCON_PORTC_IE_C2_MASK) | PORTCON_PORTC_IE_C2_BITS_ENABLE;
|
||||||
GPIOC->DIR = (GPIOC->DIR & ~GPIO_DIR_2_MASK) | GPIO_DIR_2_BITS_INPUT;
|
GPIOC->DIR = (GPIOC->DIR & ~GPIO_DIR_2_MASK) | GPIO_DIR_2_BITS_INPUT;
|
||||||
SYSTICK_DelayUs(1);
|
SYSTICK_DelayUs(1);
|
||||||
|
|
||||||
Value = 0;
|
Value = 0;
|
||||||
for (i = 0; i < 16; i++)
|
for (i = 0; i < 16; i++)
|
||||||
{
|
{
|
||||||
@@ -604,89 +608,54 @@ void BK4819_SetFilterBandwidth(const BK4819_FilterBandwidth_t Bandwidth, const b
|
|||||||
//
|
//
|
||||||
// <1:0> 0 ???
|
// <1:0> 0 ???
|
||||||
|
|
||||||
uint16_t val;
|
uint16_t val = 0;
|
||||||
|
|
||||||
switch (Bandwidth)
|
switch (Bandwidth)
|
||||||
{
|
{
|
||||||
default:
|
default:
|
||||||
case BK4819_FILTER_BW_WIDE: // 25kHz
|
case BK4819_FILTER_BW_WIDE: // 25kHz
|
||||||
if (weak_no_different)
|
val = (4u << 12) | // *3 RF filter bandwidth
|
||||||
{ // make the RX bandwidth the same with weak signals
|
(6u << 6) | // *0 AFTxLPF2 filter Band Width
|
||||||
val =
|
(2u << 4) | // 2 BW Mode Selection
|
||||||
(0u << 15) | // 0
|
(1u << 3) | // 1
|
||||||
(4u << 12) | // *3 RF filter bandwidth
|
(0u << 2); // 0 Gain after FM Demodulation
|
||||||
(4u << 9) | // *0 RF filter bandwidth when signal is weak
|
|
||||||
(6u << 6) | // *0 AFTxLPF2 filter Band Width
|
if (weak_no_different) {
|
||||||
(2u << 4) | // 2 BW Mode Selection
|
// make the RX bandwidth the same with weak signals
|
||||||
(1u << 3) | // 1
|
val |= (4u << 9); // *0 RF filter bandwidth when signal is weak
|
||||||
(0u << 2) | // 0 Gain after FM Demodulation
|
} else {
|
||||||
(0u << 0); // 0
|
/// with weak RX signals the RX bandwidth is reduced
|
||||||
}
|
val |= (2u << 9); // *0 RF filter bandwidth when signal is weak
|
||||||
else
|
|
||||||
{ // with weak RX signals the RX bandwidth is reduced
|
|
||||||
val = // 0x3028); // 0 011 000 000 10 1 0 00
|
|
||||||
(0u << 15) | // 0
|
|
||||||
(4u << 12) | // *3 RF filter bandwidth
|
|
||||||
(2u << 9) | // *0 RF filter bandwidth when signal is weak
|
|
||||||
(6u << 6) | // *0 AFTxLPF2 filter Band Width
|
|
||||||
(2u << 4) | // 2 BW Mode Selection
|
|
||||||
(1u << 3) | // 1
|
|
||||||
(0u << 2) | // 0 Gain after FM Demodulation
|
|
||||||
(0u << 0); // 0
|
|
||||||
}
|
}
|
||||||
|
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case BK4819_FILTER_BW_NARROW: // 12.5kHz
|
case BK4819_FILTER_BW_NARROW: // 12.5kHz
|
||||||
if (weak_no_different)
|
val = (4u << 12) | // *4 RF filter bandwidth
|
||||||
{
|
(0u << 6) | // *1 AFTxLPF2 filter Band Width
|
||||||
val =
|
(0u << 4) | // 0 BW Mode Selection
|
||||||
(0u << 15) | // 0
|
(1u << 3) | // 1
|
||||||
(4u << 12) | // *4 RF filter bandwidth
|
(0u << 2); // 0 Gain after FM Demodulation
|
||||||
(4u << 9) | // *0 RF filter bandwidth when signal is weak
|
|
||||||
(0u << 6) | // *1 AFTxLPF2 filter Band Width
|
if (weak_no_different) {
|
||||||
(0u << 4) | // 0 BW Mode Selection
|
val |= (4u << 9); // *0 RF filter bandwidth when signal is weak
|
||||||
(1u << 3) | // 1
|
} else {
|
||||||
(0u << 2) | // 0 Gain after FM Demodulation
|
val |= (2u << 9);
|
||||||
(0u << 0); // 0
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
val = // 0x4048); // 0 100 000 001 00 1 0 00
|
|
||||||
(0u << 15) | // 0
|
|
||||||
(4u << 12) | // *4 RF filter bandwidth
|
|
||||||
(2u << 9) | // *0 RF filter bandwidth when signal is weak
|
|
||||||
(0u << 6) | // *1 AFTxLPF2 filter Band Width
|
|
||||||
(0u << 4) | // 0 BW Mode Selection
|
|
||||||
(1u << 3) | // 1
|
|
||||||
(0u << 2) | // 0 Gain after FM Demodulation
|
|
||||||
(0u << 0); // 0
|
|
||||||
}
|
}
|
||||||
|
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case BK4819_FILTER_BW_NARROWER: // 6.25kHz
|
case BK4819_FILTER_BW_NARROWER: // 6.25kHz
|
||||||
if (weak_no_different)
|
val = (3u << 12) | // 3 RF filter bandwidth
|
||||||
{
|
(3u << 9) | // *0 RF filter bandwidth when signal is weak
|
||||||
val =
|
(1u << 6) | // 1 AFTxLPF2 filter Band Width
|
||||||
(0u << 15) | // 0
|
(1u << 4) | // 1 BW Mode Selection
|
||||||
(3u << 12) | // 3 RF filter bandwidth
|
(1u << 3) | // 1
|
||||||
(3u << 9) | // *0 RF filter bandwidth when signal is weak
|
(0u << 2); // 0 Gain after FM Demodulation
|
||||||
(1u << 6) | // 1 AFTxLPF2 filter Band Width
|
|
||||||
(1u << 4) | // 1 BW Mode Selection
|
if (weak_no_different) {
|
||||||
(1u << 3) | // 1
|
val |= (3u << 9);
|
||||||
(0u << 2) | // 0 Gain after FM Demodulation
|
} else {
|
||||||
(0u << 0); // 0
|
val |= (0u << 9); // 0 RF filter bandwidth when signal is weak
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
val =
|
|
||||||
(0u << 15) | // 0
|
|
||||||
(3u << 12) | // 3 RF filter bandwidth
|
|
||||||
(0u << 9) | // 0 RF filter bandwidth when signal is weak
|
|
||||||
(1u << 6) | // 1 AFTxLPF2 filter Band Width
|
|
||||||
(1u << 4) | // 1 BW Mode Selection
|
|
||||||
(1u << 3) | // 1
|
|
||||||
(0u << 2) | // 1 Gain after FM Demodulation
|
|
||||||
(0u << 0); // 0
|
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
@@ -1265,33 +1234,46 @@ void BK4819_EnableTXLink(void)
|
|||||||
|
|
||||||
void BK4819_PlayDTMF(char Code)
|
void BK4819_PlayDTMF(char Code)
|
||||||
{
|
{
|
||||||
uint16_t tone1 = 0;
|
|
||||||
uint16_t tone2 = 0;
|
|
||||||
|
|
||||||
|
struct DTMF_TonePair {
|
||||||
|
uint16_t tone1;
|
||||||
|
uint16_t tone2;
|
||||||
|
};
|
||||||
|
|
||||||
|
const struct DTMF_TonePair tones[] = {
|
||||||
|
{941, 1336},
|
||||||
|
{697, 1209},
|
||||||
|
{697, 1336},
|
||||||
|
{697, 1477},
|
||||||
|
{770, 1209},
|
||||||
|
{770, 1336},
|
||||||
|
{770, 1477},
|
||||||
|
{852, 1209},
|
||||||
|
{852, 1336},
|
||||||
|
{852, 1477},
|
||||||
|
{697, 1633},
|
||||||
|
{770, 1633},
|
||||||
|
{852, 1633},
|
||||||
|
{941, 1633},
|
||||||
|
{941, 1209},
|
||||||
|
{941, 1477},
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
const struct DTMF_TonePair *pSelectedTone = NULL;
|
||||||
switch (Code)
|
switch (Code)
|
||||||
{
|
{
|
||||||
case '0': tone1 = 941; tone2 = 1336; break;
|
case '0'...'9': pSelectedTone = &tones[0 + Code - '0']; break;
|
||||||
case '1': tone1 = 697; tone2 = 1209; break;
|
case 'A'...'D': pSelectedTone = &tones[10 + Code - 'A']; break;
|
||||||
case '2': tone1 = 697; tone2 = 1336; break;
|
case '*': pSelectedTone = &tones[14]; break;
|
||||||
case '3': tone1 = 697; tone2 = 1477; break;
|
case '#': pSelectedTone = &tones[15]; break;
|
||||||
case '4': tone1 = 770; tone2 = 1209; break;
|
default: pSelectedTone = NULL;
|
||||||
case '5': tone1 = 770; tone2 = 1336; break;
|
|
||||||
case '6': tone1 = 770; tone2 = 1477; break;
|
|
||||||
case '7': tone1 = 852; tone2 = 1209; break;
|
|
||||||
case '8': tone1 = 852; tone2 = 1336; break;
|
|
||||||
case '9': tone1 = 852; tone2 = 1477; break;
|
|
||||||
case 'A': tone1 = 697; tone2 = 1633; break;
|
|
||||||
case 'B': tone1 = 770; tone2 = 1633; break;
|
|
||||||
case 'C': tone1 = 852; tone2 = 1633; break;
|
|
||||||
case 'D': tone1 = 941; tone2 = 1633; break;
|
|
||||||
case '*': tone1 = 941; tone2 = 1209; break;
|
|
||||||
case '#': tone1 = 941; tone2 = 1477; break;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (tone1 > 0)
|
if (pSelectedTone) {
|
||||||
BK4819_WriteRegister(BK4819_REG_71, (((uint32_t)tone1 * 103244) + 5000) / 10000); // with rounding
|
BK4819_WriteRegister(BK4819_REG_71, (((uint32_t)pSelectedTone->tone1 * 103244) + 5000) / 10000); // with rounding
|
||||||
if (tone2 > 0)
|
BK4819_WriteRegister(BK4819_REG_72, (((uint32_t)pSelectedTone->tone2 * 103244) + 5000) / 10000); // with rounding
|
||||||
BK4819_WriteRegister(BK4819_REG_72, (((uint32_t)tone2 * 103244) + 5000) / 10000); // with rounding
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void BK4819_PlayDTMFString(const char *pString, bool bDelayFirst, uint16_t FirstCodePersistTime, uint16_t HashCodePersistTime, uint16_t CodePersistTime, uint16_t CodeInternalTime)
|
void BK4819_PlayDTMFString(const char *pString, bool bDelayFirst, uint16_t FirstCodePersistTime, uint16_t HashCodePersistTime, uint16_t CodePersistTime, uint16_t CodeInternalTime)
|
||||||
@@ -1413,18 +1395,16 @@ void BK4819_GenTail(uint8_t Tail)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void BK4819_EnableCDCSS(void)
|
void BK4819_PlayCDCSSTail(void)
|
||||||
{
|
{
|
||||||
BK4819_GenTail(0); // CTC134
|
BK4819_GenTail(0); // CTC134
|
||||||
BK4819_WriteRegister(BK4819_REG_51, 0x804A);
|
BK4819_WriteRegister(BK4819_REG_51, 0x804A); // 1 0 0 0 0 0 0 0 0 1001010
|
||||||
}
|
}
|
||||||
|
|
||||||
void BK4819_EnableCTCSS(void)
|
void BK4819_PlayCTCSSTail(void)
|
||||||
{
|
{
|
||||||
#ifdef ENABLE_CTCSS_TAIL_PHASE_SHIFT
|
#ifdef ENABLE_CTCSS_TAIL_PHASE_SHIFT
|
||||||
//BK4819_GenTail(1); // 120° phase shift
|
|
||||||
BK4819_GenTail(2); // 180° phase shift
|
BK4819_GenTail(2); // 180° phase shift
|
||||||
//BK4819_GenTail(3); // 240° phase shift
|
|
||||||
#else
|
#else
|
||||||
BK4819_GenTail(4); // 55Hz tone freq
|
BK4819_GenTail(4); // 55Hz tone freq
|
||||||
#endif
|
#endif
|
||||||
@@ -1466,7 +1446,7 @@ void BK4819_EnableCTCSS(void)
|
|||||||
// 0 = min
|
// 0 = min
|
||||||
// 127 = max
|
// 127 = max
|
||||||
|
|
||||||
BK4819_WriteRegister(BK4819_REG_51, 0x904A); // 1 0 0 1 0 0 0 0 0 1001010
|
BK4819_WriteRegister(BK4819_REG_51, 0x904A); // 1 0 0 1 0 0 0 0 0 1001010
|
||||||
}
|
}
|
||||||
|
|
||||||
uint16_t BK4819_GetRSSI(void)
|
uint16_t BK4819_GetRSSI(void)
|
||||||
@@ -1706,7 +1686,7 @@ void BK4819_PrepareFSKReceive(void)
|
|||||||
BK4819_WriteRegister(BK4819_REG_59, 0x3068);
|
BK4819_WriteRegister(BK4819_REG_59, 0x3068);
|
||||||
}
|
}
|
||||||
|
|
||||||
void BK4819_PlayRoger(void)
|
static void BK4819_PlayRogerNormal(void)
|
||||||
{
|
{
|
||||||
#if 0
|
#if 0
|
||||||
const uint32_t tone1_Hz = 500;
|
const uint32_t tone1_Hz = 500;
|
||||||
@@ -1717,6 +1697,7 @@ void BK4819_PlayRoger(void)
|
|||||||
const uint32_t tone2_Hz = 1310;
|
const uint32_t tone2_Hz = 1310;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
BK4819_EnterTxMute();
|
BK4819_EnterTxMute();
|
||||||
BK4819_SetAF(BK4819_AF_MUTE);
|
BK4819_SetAF(BK4819_AF_MUTE);
|
||||||
|
|
||||||
@@ -1741,30 +1722,41 @@ void BK4819_PlayRoger(void)
|
|||||||
BK4819_WriteRegister(BK4819_REG_30, 0xC1FE); // 1 1 0000 0 1 1111 1 1 1 0
|
BK4819_WriteRegister(BK4819_REG_30, 0xC1FE); // 1 1 0000 0 1 1111 1 1 1 0
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
void BK4819_PlayRogerMDC(void)
|
void BK4819_PlayRogerMDC(void)
|
||||||
{
|
{
|
||||||
unsigned int i;
|
struct reg_value {
|
||||||
|
BK4819_REGISTER_t reg;
|
||||||
|
uint16_t value;
|
||||||
|
};
|
||||||
|
|
||||||
|
struct reg_value RogerMDC_Configuration [] = {
|
||||||
|
{ BK4819_REG_58, 0x37C3 }, // FSK Enable,
|
||||||
|
// RX Bandwidth FFSK 1200/1800
|
||||||
|
// 0xAA or 0x55 Preamble
|
||||||
|
// 11 RX Gain,
|
||||||
|
// 101 RX Mode
|
||||||
|
// TX FFSK 1200/1800
|
||||||
|
{ BK4819_REG_72, 0x3065 }, // Set Tone-2 to 1200Hz
|
||||||
|
{ BK4819_REG_70, 0x00E0 }, // Enable Tone-2 and Set Tone2 Gain
|
||||||
|
{ BK4819_REG_5D, 0x0D00 }, // Set FSK data length to 13 bytes
|
||||||
|
{ BK4819_REG_59, 0x8068 }, // 4 byte sync length, 6 byte preamble, clear TX FIFO
|
||||||
|
{ BK4819_REG_59, 0x0068 }, // Same, but clear TX FIFO is now unset (clearing done)
|
||||||
|
{ BK4819_REG_5A, 0x5555 }, // First two sync bytes
|
||||||
|
{ BK4819_REG_5B, 0x55AA }, // End of sync bytes. Total 4 bytes: 555555aa
|
||||||
|
{ BK4819_REG_5C, 0xAA30 }, // Disable CRC
|
||||||
|
};
|
||||||
|
|
||||||
BK4819_SetAF(BK4819_AF_MUTE);
|
BK4819_SetAF(BK4819_AF_MUTE);
|
||||||
|
|
||||||
BK4819_WriteRegister(BK4819_REG_58, 0x37C3); // FSK Enable,
|
for (unsigned int i = 0; i < ARRAY_SIZE(RogerMDC_Configuration); i++) {
|
||||||
// RX Bandwidth FFSK 1200/1800
|
BK4819_WriteRegister(RogerMDC_Configuration[i].reg, RogerMDC_Configuration[i].value);
|
||||||
// 0xAA or 0x55 Preamble
|
}
|
||||||
// 11 RX Gain,
|
|
||||||
// 101 RX Mode
|
|
||||||
// TX FFSK 1200/1800
|
|
||||||
BK4819_WriteRegister(BK4819_REG_72, 0x3065); // Set Tone-2 to 1200Hz
|
|
||||||
BK4819_WriteRegister(BK4819_REG_70, 0x00E0); // Enable Tone-2 and Set Tone2 Gain
|
|
||||||
BK4819_WriteRegister(BK4819_REG_5D, 0x0D00); // Set FSK data length to 13 bytes
|
|
||||||
BK4819_WriteRegister(BK4819_REG_59, 0x8068); // 4 byte sync length, 6 byte preamble, clear TX FIFO
|
|
||||||
BK4819_WriteRegister(BK4819_REG_59, 0x0068); // Same, but clear TX FIFO is now unset (clearing done)
|
|
||||||
BK4819_WriteRegister(BK4819_REG_5A, 0x5555); // First two sync bytes
|
|
||||||
BK4819_WriteRegister(BK4819_REG_5B, 0x55AA); // End of sync bytes. Total 4 bytes: 555555aa
|
|
||||||
BK4819_WriteRegister(BK4819_REG_5C, 0xAA30); // Disable CRC
|
|
||||||
|
|
||||||
// Send the data from the roger table
|
// Send the data from the roger table
|
||||||
for (i = 0; i < 7; i++)
|
for (unsigned int i = 0; i < ARRAY_SIZE(FSK_RogerTable); i++) {
|
||||||
BK4819_WriteRegister(BK4819_REG_5F, FSK_RogerTable[i]);
|
BK4819_WriteRegister(BK4819_REG_5F, FSK_RogerTable[i]);
|
||||||
|
}
|
||||||
|
|
||||||
SYSTEM_DelayMs(20);
|
SYSTEM_DelayMs(20);
|
||||||
|
|
||||||
@@ -1779,6 +1771,15 @@ void BK4819_PlayRogerMDC(void)
|
|||||||
BK4819_WriteRegister(BK4819_REG_58, 0x0000);
|
BK4819_WriteRegister(BK4819_REG_58, 0x0000);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void BK4819_PlayRoger(void)
|
||||||
|
{
|
||||||
|
if (gEeprom.ROGER == ROGER_MODE_ROGER) {
|
||||||
|
BK4819_PlayRogerNormal();
|
||||||
|
} else if (gEeprom.ROGER == ROGER_MODE_MDC) {
|
||||||
|
BK4819_PlayRogerMDC();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
void BK4819_Enable_AfDac_DiscMode_TxDsp(void)
|
void BK4819_Enable_AfDac_DiscMode_TxDsp(void)
|
||||||
{
|
{
|
||||||
BK4819_WriteRegister(BK4819_REG_30, 0x0000);
|
BK4819_WriteRegister(BK4819_REG_30, 0x0000);
|
||||||
|
|||||||
@@ -132,8 +132,8 @@ void BK4819_PlayDTMFString(const char *pString, bool bDelayFirst, uint16_t F
|
|||||||
void BK4819_TransmitTone(bool bLocalLoopback, uint32_t Frequency);
|
void BK4819_TransmitTone(bool bLocalLoopback, uint32_t Frequency);
|
||||||
|
|
||||||
void BK4819_GenTail(uint8_t Tail);
|
void BK4819_GenTail(uint8_t Tail);
|
||||||
void BK4819_EnableCDCSS(void);
|
void BK4819_PlayCDCSSTail(void);
|
||||||
void BK4819_EnableCTCSS(void);
|
void BK4819_PlayCTCSSTail(void);
|
||||||
|
|
||||||
uint16_t BK4819_GetRSSI(void);
|
uint16_t BK4819_GetRSSI(void);
|
||||||
int8_t BK4819_GetRxGain_dB(void);
|
int8_t BK4819_GetRxGain_dB(void);
|
||||||
@@ -163,7 +163,6 @@ void BK4819_SendFSKData(uint16_t *pData);
|
|||||||
void BK4819_PrepareFSKReceive(void);
|
void BK4819_PrepareFSKReceive(void);
|
||||||
|
|
||||||
void BK4819_PlayRoger(void);
|
void BK4819_PlayRoger(void);
|
||||||
void BK4819_PlayRogerMDC(void);
|
|
||||||
|
|
||||||
void BK4819_Enable_AfDac_DiscMode_TxDsp(void);
|
void BK4819_Enable_AfDac_DiscMode_TxDsp(void);
|
||||||
|
|
||||||
@@ -172,4 +171,3 @@ void BK4819_SetScrambleFrequencyControlWord(uint32_t Frequency);
|
|||||||
void BK4819_PlayDTMFEx(bool bLocalLoopback, char Code);
|
void BK4819_PlayDTMFEx(bool bLocalLoopback, char Code);
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|||||||
@@ -14,8 +14,8 @@
|
|||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "bsp/dp32g030/crc.h"
|
#include "../bsp/dp32g030/crc.h"
|
||||||
#include "driver/crc.h"
|
#include "crc.h"
|
||||||
|
|
||||||
void CRC_Init(void)
|
void CRC_Init(void)
|
||||||
{
|
{
|
||||||
@@ -47,4 +47,3 @@ uint16_t CRC_Calculate(const void *pBuffer, uint16_t Size)
|
|||||||
|
|
||||||
return Crc;
|
return Crc;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -47,16 +47,17 @@ void EEPROM_WriteBuffer(uint16_t Address, const void *pBuffer)
|
|||||||
|
|
||||||
uint8_t buffer[8];
|
uint8_t buffer[8];
|
||||||
EEPROM_ReadBuffer(Address, buffer, 8);
|
EEPROM_ReadBuffer(Address, buffer, 8);
|
||||||
if (memcmp(pBuffer, buffer, 8) != 0)
|
if (memcmp(pBuffer, buffer, 8) == 0) {
|
||||||
{
|
return;
|
||||||
I2C_Start();
|
|
||||||
I2C_Write(0xA0);
|
|
||||||
I2C_Write((Address >> 8) & 0xFF);
|
|
||||||
I2C_Write((Address >> 0) & 0xFF);
|
|
||||||
I2C_WriteBuffer(pBuffer, 8);
|
|
||||||
I2C_Stop();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
I2C_Start();
|
||||||
|
I2C_Write(0xA0);
|
||||||
|
I2C_Write((Address >> 8) & 0xFF);
|
||||||
|
I2C_Write((Address >> 0) & 0xFF);
|
||||||
|
I2C_WriteBuffer(pBuffer, 8);
|
||||||
|
I2C_Stop();
|
||||||
|
|
||||||
// give the EEPROM time to burn the data in (apparently takes 5ms)
|
// give the EEPROM time to burn the data in (apparently takes 5ms)
|
||||||
SYSTEM_DelayMs(8);
|
SYSTEM_DelayMs(8);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -137,18 +137,13 @@ int I2C_ReadBuffer(void *pBuffer, uint8_t Size)
|
|||||||
uint8_t *pData = (uint8_t *)pBuffer;
|
uint8_t *pData = (uint8_t *)pBuffer;
|
||||||
uint8_t i;
|
uint8_t i;
|
||||||
|
|
||||||
if (Size == 1) {
|
|
||||||
*pData = I2C_Read(true);
|
|
||||||
return 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
for (i = 0; i < Size - 1; i++) {
|
for (i = 0; i < Size - 1; i++) {
|
||||||
SYSTICK_DelayUs(1);
|
SYSTICK_DelayUs(1);
|
||||||
pData[i] = I2C_Read(false);
|
pData[i] = I2C_Read(false);
|
||||||
}
|
}
|
||||||
|
|
||||||
SYSTICK_DelayUs(1);
|
SYSTICK_DelayUs(1);
|
||||||
pData[i++] = I2C_Read(true);
|
pData[i] = I2C_Read(true);
|
||||||
|
|
||||||
return Size;
|
return Size;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -117,19 +117,13 @@ KEY_Code_t KEYBOARD_Poll(void)
|
|||||||
GPIOA->DATA &= keyboard[j].set_to_zero_mask;
|
GPIOA->DATA &= keyboard[j].set_to_zero_mask;
|
||||||
|
|
||||||
// Read all 4 GPIO pins at once .. with de-noise, max of 8 sample loops
|
// Read all 4 GPIO pins at once .. with de-noise, max of 8 sample loops
|
||||||
for (i = 0, k = 0, reg = 0; i < 3 && k < 8; i++, k++)
|
for (i = 0, k = 0, reg = 0; i < 3 && k < 8; i++, k++) {
|
||||||
{
|
|
||||||
uint16_t reg2;
|
|
||||||
|
|
||||||
SYSTICK_DelayUs(1);
|
SYSTICK_DelayUs(1);
|
||||||
|
uint16_t reg2 = GPIOA->DATA;
|
||||||
reg2 = GPIOA->DATA;
|
i *= reg == reg2;
|
||||||
if (reg != reg2)
|
reg = reg2;
|
||||||
{ // noise
|
|
||||||
reg = reg2;
|
|
||||||
i = 0;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (i < 3)
|
if (i < 3)
|
||||||
break; // noise is too bad
|
break; // noise is too bad
|
||||||
|
|
||||||
|
|||||||
@@ -14,10 +14,10 @@
|
|||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "bsp/dp32g030/pmu.h"
|
#include "../bsp/dp32g030/pmu.h"
|
||||||
#include "bsp/dp32g030/syscon.h"
|
#include "../bsp/dp32g030/syscon.h"
|
||||||
#include "driver/system.h"
|
#include "system.h"
|
||||||
#include "driver/systick.h"
|
#include "systick.h"
|
||||||
|
|
||||||
void SYSTEM_DelayMs(uint32_t Delay)
|
void SYSTEM_DelayMs(uint32_t Delay)
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -15,8 +15,8 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#include "ARMCM0.h"
|
#include "ARMCM0.h"
|
||||||
#include "driver/systick.h"
|
#include "systick.h"
|
||||||
#include "misc.h"
|
#include "../misc.h"
|
||||||
|
|
||||||
// 0x20000324
|
// 0x20000324
|
||||||
static uint32_t gTickMultiplier;
|
static uint32_t gTickMultiplier;
|
||||||
@@ -29,17 +29,21 @@ void SYSTICK_Init(void)
|
|||||||
|
|
||||||
void SYSTICK_DelayUs(uint32_t Delay)
|
void SYSTICK_DelayUs(uint32_t Delay)
|
||||||
{
|
{
|
||||||
const uint32_t ticks = Delay * gTickMultiplier;
|
const uint32_t ticks = Delay * gTickMultiplier;
|
||||||
uint32_t i = 0;
|
uint32_t elapsed_ticks = 0;
|
||||||
uint32_t Start = SysTick->LOAD;
|
uint32_t Start = SysTick->LOAD;
|
||||||
uint32_t Previous = SysTick->VAL;
|
uint32_t Previous = SysTick->VAL;
|
||||||
do {
|
do {
|
||||||
uint32_t Current;
|
uint32_t Current;
|
||||||
uint32_t Delta;
|
|
||||||
while ((Current = SysTick->VAL) == Previous) {}
|
|
||||||
Delta = (Current < Previous) ? -Current : Start - Current;
|
|
||||||
i += Delta + Previous;
|
|
||||||
Previous = Current;
|
|
||||||
} while (i < ticks);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
do {
|
||||||
|
Current = SysTick->VAL;
|
||||||
|
} while (Current == Previous);
|
||||||
|
|
||||||
|
uint32_t Delta = ((Current < Previous) ? - Current : Start - Current);
|
||||||
|
|
||||||
|
elapsed_ticks += Delta + Previous;
|
||||||
|
|
||||||
|
Previous = Current;
|
||||||
|
} while (elapsed_ticks < ticks);
|
||||||
|
}
|
||||||
|
|||||||
@@ -80,11 +80,14 @@ const uint16_t gStepFrequencyTable[] = {
|
|||||||
[STEP_0_5kHz] = 50,
|
[STEP_0_5kHz] = 50,
|
||||||
[STEP_1kHz] = 100,
|
[STEP_1kHz] = 100,
|
||||||
[STEP_1_25kHz] = 125,
|
[STEP_1_25kHz] = 125,
|
||||||
|
[STEP_9kHz] = 900,
|
||||||
[STEP_15kHz] = 1500,
|
[STEP_15kHz] = 1500,
|
||||||
|
[STEP_20kHz] = 2000,
|
||||||
[STEP_30kHz] = 3000,
|
[STEP_30kHz] = 3000,
|
||||||
[STEP_50kHz] = 5000,
|
[STEP_50kHz] = 5000,
|
||||||
[STEP_100kHz] = 10000,
|
[STEP_100kHz] = 10000,
|
||||||
[STEP_125kHz] = 12500,
|
[STEP_125kHz] = 12500,
|
||||||
|
[STEP_200kHz] = 20000,
|
||||||
[STEP_250kHz] = 25000,
|
[STEP_250kHz] = 25000,
|
||||||
[STEP_500kHz] = 50000
|
[STEP_500kHz] = 50000
|
||||||
};
|
};
|
||||||
@@ -92,8 +95,8 @@ const uint16_t gStepFrequencyTable[] = {
|
|||||||
|
|
||||||
const STEP_Setting_t StepSortedIndexes[] = {
|
const STEP_Setting_t StepSortedIndexes[] = {
|
||||||
STEP_0_01kHz, STEP_0_05kHz, STEP_0_1kHz, STEP_0_25kHz, STEP_0_5kHz, STEP_1kHz, STEP_1_25kHz, STEP_2_5kHz, STEP_5kHz, STEP_6_25kHz,
|
STEP_0_01kHz, STEP_0_05kHz, STEP_0_1kHz, STEP_0_25kHz, STEP_0_5kHz, STEP_1kHz, STEP_1_25kHz, STEP_2_5kHz, STEP_5kHz, STEP_6_25kHz,
|
||||||
STEP_8_33kHz, STEP_10kHz, STEP_12_5kHz, STEP_15kHz, STEP_25kHz, STEP_30kHz, STEP_50kHz, STEP_100kHz,
|
STEP_8_33kHz, STEP_9kHz, STEP_10kHz, STEP_12_5kHz, STEP_15kHz, STEP_20kHz, STEP_25kHz, STEP_30kHz, STEP_50kHz, STEP_100kHz,
|
||||||
STEP_125kHz, STEP_250kHz, STEP_500kHz
|
STEP_125kHz, STEP_200kHz, STEP_250kHz, STEP_500kHz
|
||||||
};
|
};
|
||||||
|
|
||||||
STEP_Setting_t FREQUENCY_GetStepIdxFromSortedIdx(uint8_t sortedIdx)
|
STEP_Setting_t FREQUENCY_GetStepIdxFromSortedIdx(uint8_t sortedIdx)
|
||||||
|
|||||||
@@ -60,11 +60,14 @@ typedef enum {
|
|||||||
STEP_0_5kHz,
|
STEP_0_5kHz,
|
||||||
STEP_1kHz,
|
STEP_1kHz,
|
||||||
STEP_1_25kHz,
|
STEP_1_25kHz,
|
||||||
|
STEP_9kHz,
|
||||||
STEP_15kHz,
|
STEP_15kHz,
|
||||||
|
STEP_20kHz,
|
||||||
STEP_30kHz,
|
STEP_30kHz,
|
||||||
STEP_50kHz,
|
STEP_50kHz,
|
||||||
STEP_100kHz,
|
STEP_100kHz,
|
||||||
STEP_125kHz,
|
STEP_125kHz,
|
||||||
|
STEP_200kHz,
|
||||||
STEP_250kHz,
|
STEP_250kHz,
|
||||||
STEP_500kHz,
|
STEP_500kHz,
|
||||||
STEP_N_ELEM
|
STEP_N_ELEM
|
||||||
|
|||||||
60
functions.c
@@ -42,52 +42,46 @@
|
|||||||
|
|
||||||
FUNCTION_Type_t gCurrentFunction;
|
FUNCTION_Type_t gCurrentFunction;
|
||||||
|
|
||||||
inline bool FUNCTION_IsRx()
|
bool FUNCTION_IsRx()
|
||||||
{
|
{
|
||||||
return gCurrentFunction == FUNCTION_MONITOR ||
|
return gCurrentFunction == FUNCTION_MONITOR ||
|
||||||
gCurrentFunction == FUNCTION_INCOMING ||
|
gCurrentFunction == FUNCTION_INCOMING ||
|
||||||
gCurrentFunction == FUNCTION_RECEIVE;
|
gCurrentFunction == FUNCTION_RECEIVE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
void FUNCTION_Init(void)
|
void FUNCTION_Init(void)
|
||||||
{
|
{
|
||||||
#ifdef ENABLE_NOAA
|
|
||||||
if (!IS_NOAA_CHANNEL(gRxVfo->CHANNEL_SAVE))
|
|
||||||
#endif
|
|
||||||
{
|
|
||||||
gCurrentCodeType = (gRxVfo->Modulation != MODULATION_FM) ? CODE_TYPE_OFF : gRxVfo->pRX->CodeType;
|
|
||||||
}
|
|
||||||
#ifdef ENABLE_NOAA
|
|
||||||
else
|
|
||||||
gCurrentCodeType = CODE_TYPE_CONTINUOUS_TONE;
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifdef ENABLE_DTMF_CALLING
|
|
||||||
DTMF_clear_RX();
|
|
||||||
#endif
|
|
||||||
|
|
||||||
g_CxCSS_TAIL_Found = false;
|
g_CxCSS_TAIL_Found = false;
|
||||||
g_CDCSS_Lost = false;
|
g_CDCSS_Lost = false;
|
||||||
g_CTCSS_Lost = false;
|
g_CTCSS_Lost = false;
|
||||||
|
|
||||||
#ifdef ENABLE_VOX
|
|
||||||
g_VOX_Lost = false;
|
|
||||||
#endif
|
|
||||||
|
|
||||||
g_SquelchLost = false;
|
g_SquelchLost = false;
|
||||||
|
|
||||||
gFlagTailNoteEliminationComplete = false;
|
gFlagTailToneEliminationComplete = false;
|
||||||
gTailNoteEliminationCountdown_10ms = 0;
|
gTailToneEliminationCountdown_10ms = 0;
|
||||||
gFoundCTCSS = false;
|
gFoundCTCSS = false;
|
||||||
gFoundCDCSS = false;
|
gFoundCDCSS = false;
|
||||||
gFoundCTCSSCountdown_10ms = 0;
|
gFoundCTCSSCountdown_10ms = 0;
|
||||||
gFoundCDCSSCountdown_10ms = 0;
|
gFoundCDCSSCountdown_10ms = 0;
|
||||||
gEndOfRxDetectedMaybe = false;
|
gEndOfRxDetectedMaybe = false;
|
||||||
|
|
||||||
#ifdef ENABLE_NOAA
|
gCurrentCodeType = (gRxVfo->Modulation != MODULATION_FM) ? CODE_TYPE_OFF : gRxVfo->pRX->CodeType;
|
||||||
gNOAACountdown_10ms = 0;
|
|
||||||
#endif
|
#ifdef ENABLE_VOX
|
||||||
|
g_VOX_Lost = false;
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#ifdef ENABLE_DTMF_CALLING
|
||||||
|
DTMF_clear_RX();
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#ifdef ENABLE_NOAA
|
||||||
|
gNOAACountdown_10ms = 0;
|
||||||
|
|
||||||
|
if (IS_NOAA_CHANNEL(gRxVfo->CHANNEL_SAVE)) {
|
||||||
|
gCurrentCodeType = CODE_TYPE_CONTINUOUS_TONE;
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
gUpdateStatus = true;
|
gUpdateStatus = true;
|
||||||
}
|
}
|
||||||
@@ -98,6 +92,7 @@ void FUNCTION_Foreground(const FUNCTION_Type_t PreviousFunction)
|
|||||||
if (gDTMF_ReplyState != DTMF_REPLY_NONE)
|
if (gDTMF_ReplyState != DTMF_REPLY_NONE)
|
||||||
RADIO_PrepareCssTX();
|
RADIO_PrepareCssTX();
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
if (PreviousFunction == FUNCTION_TRANSMIT) {
|
if (PreviousFunction == FUNCTION_TRANSMIT) {
|
||||||
ST7565_FixInterfGlitch();
|
ST7565_FixInterfGlitch();
|
||||||
gVFO_RSSI_bar_level[0] = 0;
|
gVFO_RSSI_bar_level[0] = 0;
|
||||||
@@ -153,12 +148,11 @@ void FUNCTION_Transmit()
|
|||||||
|
|
||||||
// clear the DTMF RX live decoder buffer
|
// clear the DTMF RX live decoder buffer
|
||||||
gDTMF_RX_live_timeout = 0;
|
gDTMF_RX_live_timeout = 0;
|
||||||
gDTMF_RX_live_timeout = 0;
|
|
||||||
memset(gDTMF_RX_live, 0, sizeof(gDTMF_RX_live));
|
memset(gDTMF_RX_live, 0, sizeof(gDTMF_RX_live));
|
||||||
|
|
||||||
#if defined(ENABLE_FMRADIO)
|
#if defined(ENABLE_FMRADIO)
|
||||||
if (gFmRadioMode)
|
if (gFmRadioMode)
|
||||||
BK1080_Init(0, false);
|
BK1080_Init0();
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef ENABLE_ALARM
|
#ifdef ENABLE_ALARM
|
||||||
@@ -239,15 +233,13 @@ void FUNCTION_Select(FUNCTION_Type_t Function)
|
|||||||
|
|
||||||
gCurrentFunction = Function;
|
gCurrentFunction = Function;
|
||||||
|
|
||||||
if (bWasPowerSave && Function != FUNCTION_POWER_SAVE)
|
if (bWasPowerSave && Function != FUNCTION_POWER_SAVE) {
|
||||||
{
|
|
||||||
BK4819_Conditional_RX_TurnOn_and_GPIO6_Enable();
|
BK4819_Conditional_RX_TurnOn_and_GPIO6_Enable();
|
||||||
gRxIdleMode = false;
|
gRxIdleMode = false;
|
||||||
UI_DisplayStatus();
|
UI_DisplayStatus();
|
||||||
}
|
}
|
||||||
|
|
||||||
switch (Function)
|
switch (Function) {
|
||||||
{
|
|
||||||
case FUNCTION_FOREGROUND:
|
case FUNCTION_FOREGROUND:
|
||||||
FUNCTION_Foreground(PreviousFunction);
|
FUNCTION_Foreground(PreviousFunction);
|
||||||
return;
|
return;
|
||||||
@@ -267,6 +259,7 @@ void FUNCTION_Select(FUNCTION_Type_t Function)
|
|||||||
case FUNCTION_INCOMING:
|
case FUNCTION_INCOMING:
|
||||||
case FUNCTION_RECEIVE:
|
case FUNCTION_RECEIVE:
|
||||||
case FUNCTION_BAND_SCOPE:
|
case FUNCTION_BAND_SCOPE:
|
||||||
|
default:
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -274,6 +267,7 @@ void FUNCTION_Select(FUNCTION_Type_t Function)
|
|||||||
gSchedulePowerSave = false;
|
gSchedulePowerSave = false;
|
||||||
|
|
||||||
#if defined(ENABLE_FMRADIO)
|
#if defined(ENABLE_FMRADIO)
|
||||||
gFM_RestoreCountdown_10ms = 0;
|
if(Function != FUNCTION_INCOMING)
|
||||||
|
gFM_RestoreCountdown_10ms = 0;
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -27,7 +27,8 @@ enum FUNCTION_Type_t
|
|||||||
FUNCTION_INCOMING, // receiving a signal (squelch is open)
|
FUNCTION_INCOMING, // receiving a signal (squelch is open)
|
||||||
FUNCTION_RECEIVE, // RX mode, squelch closed
|
FUNCTION_RECEIVE, // RX mode, squelch closed
|
||||||
FUNCTION_POWER_SAVE, // sleeping
|
FUNCTION_POWER_SAVE, // sleeping
|
||||||
FUNCTION_BAND_SCOPE // bandscope mode (panadpter/spectrum) .. not yet implemented
|
FUNCTION_BAND_SCOPE, // bandscope mode (panadpter/spectrum) .. not yet implemented
|
||||||
|
FUNCTION_N_ELEM
|
||||||
};
|
};
|
||||||
|
|
||||||
typedef enum FUNCTION_Type_t FUNCTION_Type_t;
|
typedef enum FUNCTION_Type_t FUNCTION_Type_t;
|
||||||
|
|||||||
138
helper/battery.c
@@ -14,6 +14,8 @@
|
|||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include <assert.h>
|
||||||
|
|
||||||
#include "battery.h"
|
#include "battery.h"
|
||||||
#include "driver/backlight.h"
|
#include "driver/backlight.h"
|
||||||
#include "driver/st7565.h"
|
#include "driver/st7565.h"
|
||||||
@@ -49,48 +51,45 @@ const uint16_t lowBatteryPeriod = 30;
|
|||||||
volatile uint16_t gPowerSave_10ms;
|
volatile uint16_t gPowerSave_10ms;
|
||||||
|
|
||||||
|
|
||||||
unsigned int BATTERY_VoltsToPercent(const unsigned int voltage_10mV)
|
const uint16_t Voltage2PercentageTable[][7][2] = {
|
||||||
{
|
[BATTERY_TYPE_1600_MAH] = {
|
||||||
const uint16_t crv1600[][2] = {
|
|
||||||
{828, 100},
|
{828, 100},
|
||||||
{814, 97 },
|
{814, 97 },
|
||||||
{760, 25 },
|
{760, 25 },
|
||||||
{729, 6 },
|
{729, 6 },
|
||||||
{630, 0 },
|
{630, 0 },
|
||||||
{0, 0 }
|
{0, 0 },
|
||||||
};
|
{0, 0 },
|
||||||
|
},
|
||||||
|
|
||||||
const uint16_t crv2200[][2] = {
|
[BATTERY_TYPE_2200_MAH] = {
|
||||||
{832, 100},
|
{832, 100},
|
||||||
{813, 95 },
|
{813, 95 },
|
||||||
{740, 60 },
|
{740, 60 },
|
||||||
{707, 21 },
|
{707, 21 },
|
||||||
{682, 5 },
|
{682, 5 },
|
||||||
{630, 0 },
|
{630, 0 },
|
||||||
{0, 0 }
|
{0, 0 },
|
||||||
};
|
},
|
||||||
|
};
|
||||||
|
|
||||||
const BATTERY_Type_t type = gEeprom.BATTERY_TYPE;
|
static_assert(ARRAY_SIZE(Voltage2PercentageTable[BATTERY_TYPE_1600_MAH]) ==
|
||||||
const uint16_t(*crv)[2];
|
ARRAY_SIZE(Voltage2PercentageTable[BATTERY_TYPE_2200_MAH]));
|
||||||
uint8_t size;
|
|
||||||
if (type == BATTERY_TYPE_2200_MAH) {
|
|
||||||
crv = crv2200;
|
|
||||||
size = ARRAY_SIZE(crv2200);
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
crv = crv1600;
|
|
||||||
size = ARRAY_SIZE(crv1600);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
unsigned int BATTERY_VoltsToPercent(const unsigned int voltage_10mV)
|
||||||
|
{
|
||||||
|
const uint16_t (*crv)[2] = Voltage2PercentageTable[gEeprom.BATTERY_TYPE];
|
||||||
const int mulipl = 1000;
|
const int mulipl = 1000;
|
||||||
for (int i = 1; i < size; i++) {
|
for (unsigned int i = 1; i < ARRAY_SIZE(Voltage2PercentageTable[BATTERY_TYPE_2200_MAH]); i++) {
|
||||||
if (voltage_10mV > crv[i][0]) {
|
if (voltage_10mV > crv[i][0]) {
|
||||||
int a = (crv[i - 1][1] - crv[i][1]) * mulipl / (crv[i - 1][0] - crv[i][0]);
|
const int a = (crv[i - 1][1] - crv[i][1]) * mulipl / (crv[i - 1][0] - crv[i][0]);
|
||||||
int b = crv[i][1] - a * crv[i][0] / mulipl;
|
const int b = crv[i][1] - a * crv[i][0] / mulipl;
|
||||||
int p = a * voltage_10mV / mulipl + b;
|
const int p = a * voltage_10mV / mulipl + b;
|
||||||
return MIN(p, 100);
|
return MIN(p, 100);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -99,8 +98,6 @@ void BATTERY_GetReadings(const bool bDisplayBatteryLevel)
|
|||||||
const uint8_t PreviousBatteryLevel = gBatteryDisplayLevel;
|
const uint8_t PreviousBatteryLevel = gBatteryDisplayLevel;
|
||||||
const uint16_t Voltage = (gBatteryVoltages[0] + gBatteryVoltages[1] + gBatteryVoltages[2] + gBatteryVoltages[3]) / 4;
|
const uint16_t Voltage = (gBatteryVoltages[0] + gBatteryVoltages[1] + gBatteryVoltages[2] + gBatteryVoltages[3]) / 4;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
gBatteryVoltageAverage = (Voltage * 760) / gBatteryCalibration[3];
|
gBatteryVoltageAverage = (Voltage * 760) / gBatteryCalibration[3];
|
||||||
|
|
||||||
if(gBatteryVoltageAverage > 890)
|
if(gBatteryVoltageAverage > 890)
|
||||||
@@ -170,54 +167,59 @@ void BATTERY_GetReadings(const bool bDisplayBatteryLevel)
|
|||||||
|
|
||||||
void BATTERY_TimeSlice500ms(void)
|
void BATTERY_TimeSlice500ms(void)
|
||||||
{
|
{
|
||||||
if (gLowBattery)
|
if (!gLowBattery) {
|
||||||
{
|
return;
|
||||||
gLowBatteryBlink = ++lowBatteryCountdown & 1;
|
}
|
||||||
|
|
||||||
UI_DisplayBattery(0, gLowBatteryBlink);
|
gLowBatteryBlink = ++lowBatteryCountdown & 1;
|
||||||
|
|
||||||
if (gCurrentFunction != FUNCTION_TRANSMIT)
|
UI_DisplayBattery(0, gLowBatteryBlink);
|
||||||
{ // not transmitting
|
|
||||||
|
|
||||||
if (lowBatteryCountdown < lowBatteryPeriod)
|
if (gCurrentFunction == FUNCTION_TRANSMIT) {
|
||||||
{
|
return;
|
||||||
if (lowBatteryCountdown == lowBatteryPeriod-1 && !gChargingWithTypeC && !gLowBatteryConfirmed)
|
}
|
||||||
AUDIO_PlayBeep(BEEP_500HZ_60MS_DOUBLE_BEEP);
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
lowBatteryCountdown = 0;
|
|
||||||
|
|
||||||
if (!gChargingWithTypeC)
|
// not transmitting
|
||||||
{ // not on charge
|
|
||||||
if(!gLowBatteryConfirmed) {
|
|
||||||
AUDIO_PlayBeep(BEEP_500HZ_60MS_DOUBLE_BEEP);
|
|
||||||
#ifdef ENABLE_VOICE
|
|
||||||
AUDIO_SetVoiceID(0, VOICE_ID_LOW_VOLTAGE);
|
|
||||||
#endif
|
|
||||||
}
|
|
||||||
if (gBatteryDisplayLevel == 0)
|
|
||||||
{
|
|
||||||
#ifdef ENABLE_VOICE
|
|
||||||
AUDIO_PlaySingleVoice(true);
|
|
||||||
#endif
|
|
||||||
|
|
||||||
gReducedService = true;
|
if (lowBatteryCountdown < lowBatteryPeriod) {
|
||||||
|
if (lowBatteryCountdown == lowBatteryPeriod-1 && !gChargingWithTypeC && !gLowBatteryConfirmed) {
|
||||||
//if (gCurrentFunction != FUNCTION_POWER_SAVE)
|
AUDIO_PlayBeep(BEEP_500HZ_60MS_DOUBLE_BEEP);
|
||||||
FUNCTION_Select(FUNCTION_POWER_SAVE);
|
|
||||||
|
|
||||||
ST7565_HardwareReset();
|
|
||||||
|
|
||||||
if (gEeprom.BACKLIGHT_TIME < (ARRAY_SIZE(gSubMenu_BACKLIGHT) - 1))
|
|
||||||
BACKLIGHT_TurnOff(); // turn the backlight off
|
|
||||||
}
|
|
||||||
#ifdef ENABLE_VOICE
|
|
||||||
else
|
|
||||||
AUDIO_PlaySingleVoice(false);
|
|
||||||
#endif
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
lowBatteryCountdown = 0;
|
||||||
|
|
||||||
|
if (gChargingWithTypeC) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
// not on charge
|
||||||
|
if (!gLowBatteryConfirmed) {
|
||||||
|
AUDIO_PlayBeep(BEEP_500HZ_60MS_DOUBLE_BEEP);
|
||||||
|
#ifdef ENABLE_VOICE
|
||||||
|
AUDIO_SetVoiceID(0, VOICE_ID_LOW_VOLTAGE);
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
|
if (gBatteryDisplayLevel != 0) {
|
||||||
|
#ifdef ENABLE_VOICE
|
||||||
|
AUDIO_PlaySingleVoice(false);
|
||||||
|
#endif
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
#ifdef ENABLE_VOICE
|
||||||
|
AUDIO_PlaySingleVoice(true);
|
||||||
|
#endif
|
||||||
|
|
||||||
|
gReducedService = true;
|
||||||
|
|
||||||
|
FUNCTION_Select(FUNCTION_POWER_SAVE);
|
||||||
|
|
||||||
|
ST7565_HardwareReset();
|
||||||
|
|
||||||
|
if (gEeprom.BACKLIGHT_TIME < (ARRAY_SIZE(gSubMenu_BACKLIGHT) - 1)) {
|
||||||
|
BACKLIGHT_TurnOff();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -40,9 +40,9 @@ typedef enum {
|
|||||||
BATTERY_TYPE_UNKNOWN
|
BATTERY_TYPE_UNKNOWN
|
||||||
} BATTERY_Type_t;
|
} BATTERY_Type_t;
|
||||||
|
|
||||||
unsigned int BATTERY_VoltsToPercent(const unsigned int voltage_10mV);
|
|
||||||
void BATTERY_GetReadings(const bool bDisplayBatteryLevel);
|
unsigned int BATTERY_VoltsToPercent(unsigned int voltage_10mV);
|
||||||
|
void BATTERY_GetReadings(bool bDisplayBatteryLevel);
|
||||||
void BATTERY_TimeSlice500ms(void);
|
void BATTERY_TimeSlice500ms(void);
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 40 KiB After Width: | Height: | Size: 11 KiB |
|
Before Width: | Height: | Size: 28 KiB After Width: | Height: | Size: 9.7 KiB |
BIN
images/codespace1.png
Normal file
|
After Width: | Height: | Size: 81 KiB |
BIN
images/codespace2.png
Normal file
|
After Width: | Height: | Size: 122 KiB |
|
Before Width: | Height: | Size: 2.1 MiB After Width: | Height: | Size: 2.1 MiB |
|
Before Width: | Height: | Size: 2.0 MiB After Width: | Height: | Size: 2.0 MiB |
|
Before Width: | Height: | Size: 2.2 MiB After Width: | Height: | Size: 2.2 MiB |
BIN
images/main.jpg
|
Before Width: | Height: | Size: 29 KiB After Width: | Height: | Size: 7.7 KiB |
|
Before Width: | Height: | Size: 38 KiB After Width: | Height: | Size: 11 KiB |
|
Before Width: | Height: | Size: 31 KiB After Width: | Height: | Size: 9.4 KiB |
9
init.c
@@ -17,6 +17,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
|
#include <string.h>
|
||||||
|
|
||||||
extern uint32_t __bss_start__[];
|
extern uint32_t __bss_start__[];
|
||||||
extern uint32_t __bss_end__[];
|
extern uint32_t __bss_end__[];
|
||||||
@@ -29,9 +30,9 @@ void DATA_Init(void);
|
|||||||
|
|
||||||
void BSS_Init(void)
|
void BSS_Init(void)
|
||||||
{
|
{
|
||||||
uint32_t *pBss;
|
for (uint32_t *pBss = __bss_start__; pBss < __bss_end__; pBss++) {
|
||||||
for (pBss = __bss_start__; pBss < __bss_end__; pBss++)
|
|
||||||
*pBss = 0;
|
*pBss = 0;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void DATA_Init(void)
|
void DATA_Init(void)
|
||||||
@@ -39,8 +40,8 @@ void DATA_Init(void)
|
|||||||
volatile uint32_t *pDataRam = (volatile uint32_t *)sram_data_start;
|
volatile uint32_t *pDataRam = (volatile uint32_t *)sram_data_start;
|
||||||
volatile uint32_t *pDataFlash = (volatile uint32_t *)flash_data_start;
|
volatile uint32_t *pDataFlash = (volatile uint32_t *)flash_data_start;
|
||||||
uint32_t Size = (uint32_t)sram_data_end - (uint32_t)sram_data_start;
|
uint32_t Size = (uint32_t)sram_data_end - (uint32_t)sram_data_start;
|
||||||
unsigned int i;
|
|
||||||
|
|
||||||
for (i = 0; i < (Size / 4); i++)
|
for (unsigned int i = 0; i < (Size / 4); i++) {
|
||||||
*pDataRam++ = *pDataFlash++;
|
*pDataRam++ = *pDataFlash++;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
74
main.c
@@ -14,44 +14,52 @@
|
|||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include <stdint.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <stdio.h> // NULL
|
#include <stdio.h> // NULL
|
||||||
|
|
||||||
#ifdef ENABLE_AM_FIX
|
#ifdef ENABLE_AM_FIX
|
||||||
#include "am_fix.h"
|
#include "am_fix.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#include "audio.h"
|
||||||
|
#include "board.h"
|
||||||
|
#include "misc.h"
|
||||||
|
#include "radio.h"
|
||||||
|
#include "settings.h"
|
||||||
|
#include "version.h"
|
||||||
|
|
||||||
#include "app/app.h"
|
#include "app/app.h"
|
||||||
#include "app/dtmf.h"
|
#include "app/dtmf.h"
|
||||||
#include "audio.h"
|
|
||||||
#include "bsp/dp32g030/gpio.h"
|
#include "bsp/dp32g030/gpio.h"
|
||||||
#include "bsp/dp32g030/syscon.h"
|
#include "bsp/dp32g030/syscon.h"
|
||||||
#include "board.h"
|
|
||||||
#include "driver/backlight.h"
|
#include "driver/backlight.h"
|
||||||
#include "driver/bk4819.h"
|
#include "driver/bk4819.h"
|
||||||
#include "driver/gpio.h"
|
#include "driver/gpio.h"
|
||||||
#include "driver/system.h"
|
#include "driver/system.h"
|
||||||
#include "driver/systick.h"
|
#include "driver/systick.h"
|
||||||
#include "driver/uart.h"
|
#ifdef ENABLE_UART
|
||||||
|
#include "driver/uart.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
#include "helper/battery.h"
|
#include "helper/battery.h"
|
||||||
#include "helper/boot.h"
|
#include "helper/boot.h"
|
||||||
#include "misc.h"
|
|
||||||
#include "radio.h"
|
|
||||||
#include "settings.h"
|
|
||||||
#include "ui/lock.h"
|
#include "ui/lock.h"
|
||||||
#include "ui/welcome.h"
|
#include "ui/welcome.h"
|
||||||
#include "ui/menu.h"
|
#include "ui/menu.h"
|
||||||
#include "version.h"
|
void _putchar(__attribute__((unused)) char c)
|
||||||
|
|
||||||
void _putchar(char c)
|
|
||||||
{
|
{
|
||||||
|
|
||||||
|
#ifdef ENABLE_UART
|
||||||
UART_Send((uint8_t *)&c, 1);
|
UART_Send((uint8_t *)&c, 1);
|
||||||
|
#endif
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void Main(void)
|
void Main(void)
|
||||||
{
|
{
|
||||||
unsigned int i;
|
|
||||||
BOOT_Mode_t BootMode;
|
|
||||||
|
|
||||||
// Enable clock gating of blocks we need
|
// Enable clock gating of blocks we need
|
||||||
SYSCON_DEV_CLK_GATE = 0
|
SYSCON_DEV_CLK_GATE = 0
|
||||||
| SYSCON_DEV_CLK_GATE_GPIOA_BITS_ENABLE
|
| SYSCON_DEV_CLK_GATE_GPIOA_BITS_ENABLE
|
||||||
@@ -64,18 +72,19 @@ void Main(void)
|
|||||||
| SYSCON_DEV_CLK_GATE_AES_BITS_ENABLE
|
| SYSCON_DEV_CLK_GATE_AES_BITS_ENABLE
|
||||||
| SYSCON_DEV_CLK_GATE_PWM_PLUS0_BITS_ENABLE;
|
| SYSCON_DEV_CLK_GATE_PWM_PLUS0_BITS_ENABLE;
|
||||||
|
|
||||||
|
|
||||||
SYSTICK_Init();
|
SYSTICK_Init();
|
||||||
BOARD_Init();
|
BOARD_Init();
|
||||||
UART_Init();
|
|
||||||
|
|
||||||
boot_counter_10ms = 250; // 2.5 sec
|
boot_counter_10ms = 250; // 2.5 sec
|
||||||
|
|
||||||
|
#ifdef ENABLE_UART
|
||||||
|
UART_Init();
|
||||||
UART_Send(UART_Version, strlen(UART_Version));
|
UART_Send(UART_Version, strlen(UART_Version));
|
||||||
|
#endif
|
||||||
|
|
||||||
// Not implementing authentic device checks
|
// Not implementing authentic device checks
|
||||||
|
|
||||||
memset(&gEeprom, 0, sizeof(gEeprom));
|
|
||||||
|
|
||||||
memset(gDTMF_String, '-', sizeof(gDTMF_String));
|
memset(gDTMF_String, '-', sizeof(gDTMF_String));
|
||||||
gDTMF_String[sizeof(gDTMF_String) - 1] = 0;
|
gDTMF_String[sizeof(gDTMF_String) - 1] = 0;
|
||||||
|
|
||||||
@@ -94,16 +103,16 @@ void Main(void)
|
|||||||
|
|
||||||
RADIO_SetupRegisters(true);
|
RADIO_SetupRegisters(true);
|
||||||
|
|
||||||
for (i = 0; i < ARRAY_SIZE(gBatteryVoltages); i++)
|
for (unsigned int i = 0; i < ARRAY_SIZE(gBatteryVoltages); i++)
|
||||||
BOARD_ADC_GetBatteryInfo(&gBatteryVoltages[i], &gBatteryCurrent);
|
BOARD_ADC_GetBatteryInfo(&gBatteryVoltages[i], &gBatteryCurrent);
|
||||||
|
|
||||||
BATTERY_GetReadings(false);
|
BATTERY_GetReadings(false);
|
||||||
|
|
||||||
#ifdef ENABLE_AM_FIX
|
#ifdef ENABLE_AM_FIX
|
||||||
AM_fix_init();
|
AM_fix_init();
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
BootMode = BOOT_GetMode();
|
const BOOT_Mode_t BootMode = BOOT_GetMode();
|
||||||
|
|
||||||
if (BootMode == BOOT_MODE_F_LOCK)
|
if (BootMode == BOOT_MODE_F_LOCK)
|
||||||
{
|
{
|
||||||
@@ -126,8 +135,9 @@ void Main(void)
|
|||||||
{ // keys are pressed
|
{ // keys are pressed
|
||||||
UI_DisplayReleaseKeys();
|
UI_DisplayReleaseKeys();
|
||||||
BACKLIGHT_TurnOn();
|
BACKLIGHT_TurnOn();
|
||||||
i = 0;
|
|
||||||
while (i < 50) // 500ms
|
// 500ms
|
||||||
|
for (int i = 0; i < 50;)
|
||||||
{
|
{
|
||||||
i = (GPIO_CheckBit(&GPIOC->DATA, GPIOC_PIN_PTT) && KEYBOARD_Poll() == KEY_INVALID) ? i + 1 : 0;
|
i = (GPIO_CheckBit(&GPIOC->DATA, GPIOC_PIN_PTT) && KEYBOARD_Poll() == KEY_INVALID) ? i + 1 : 0;
|
||||||
SYSTEM_DelayMs(10);
|
SYSTEM_DelayMs(10);
|
||||||
@@ -207,24 +217,18 @@ void Main(void)
|
|||||||
#ifdef ENABLE_NOAA
|
#ifdef ENABLE_NOAA
|
||||||
RADIO_ConfigureNOAA();
|
RADIO_ConfigureNOAA();
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// ******************
|
|
||||||
}
|
}
|
||||||
|
|
||||||
while (1)
|
while (true) {
|
||||||
{
|
|
||||||
APP_Update();
|
APP_Update();
|
||||||
|
|
||||||
if (gNextTimeslice)
|
if (gNextTimeslice) {
|
||||||
{
|
|
||||||
APP_TimeSlice10ms();
|
|
||||||
gNextTimeslice = false;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (gNextTimeslice_500ms)
|
APP_TimeSlice10ms();
|
||||||
{
|
|
||||||
APP_TimeSlice500ms();
|
if (gNextTimeslice_500ms) {
|
||||||
gNextTimeslice_500ms = false;
|
APP_TimeSlice500ms();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
9
misc.c
@@ -132,7 +132,7 @@ volatile bool gNextTimeslice_500ms;
|
|||||||
volatile uint16_t gTxTimerCountdown_500ms;
|
volatile uint16_t gTxTimerCountdown_500ms;
|
||||||
volatile bool gTxTimeoutReached;
|
volatile bool gTxTimeoutReached;
|
||||||
|
|
||||||
volatile uint16_t gTailNoteEliminationCountdown_10ms;
|
volatile uint16_t gTailToneEliminationCountdown_10ms;
|
||||||
|
|
||||||
volatile uint8_t gVFOStateResumeCountdown_500ms;
|
volatile uint8_t gVFOStateResumeCountdown_500ms;
|
||||||
|
|
||||||
@@ -143,7 +143,7 @@ volatile uint8_t gVFOStateResumeCountdown_500ms;
|
|||||||
bool gEnableSpeaker;
|
bool gEnableSpeaker;
|
||||||
uint8_t gKeyInputCountdown = 0;
|
uint8_t gKeyInputCountdown = 0;
|
||||||
uint8_t gKeyLockCountdown;
|
uint8_t gKeyLockCountdown;
|
||||||
uint8_t gRTTECountdown;
|
uint8_t gRTTECountdown_10ms;
|
||||||
bool bIsInLockScreen;
|
bool bIsInLockScreen;
|
||||||
uint8_t gUpdateStatus;
|
uint8_t gUpdateStatus;
|
||||||
uint8_t gFoundCTCSS;
|
uint8_t gFoundCTCSS;
|
||||||
@@ -181,9 +181,6 @@ bool gFlagPrepareTX;
|
|||||||
bool gFlagAcceptSetting;
|
bool gFlagAcceptSetting;
|
||||||
bool gFlagRefreshSetting;
|
bool gFlagRefreshSetting;
|
||||||
|
|
||||||
bool gFlagSaveVfo;
|
|
||||||
bool gFlagSaveSettings;
|
|
||||||
bool gFlagSaveChannel;
|
|
||||||
#ifdef ENABLE_FMRADIO
|
#ifdef ENABLE_FMRADIO
|
||||||
bool gFlagSaveFM;
|
bool gFlagSaveFM;
|
||||||
#endif
|
#endif
|
||||||
@@ -240,7 +237,7 @@ volatile bool gNextTimeslice40ms;
|
|||||||
volatile uint16_t gNOAACountdown_10ms = 0;
|
volatile uint16_t gNOAACountdown_10ms = 0;
|
||||||
volatile bool gScheduleNOAA = true;
|
volatile bool gScheduleNOAA = true;
|
||||||
#endif
|
#endif
|
||||||
volatile bool gFlagTailNoteEliminationComplete;
|
volatile bool gFlagTailToneEliminationComplete;
|
||||||
#ifdef ENABLE_FMRADIO
|
#ifdef ENABLE_FMRADIO
|
||||||
volatile bool gScheduleFM;
|
volatile bool gScheduleFM;
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
16
misc.h
@@ -32,6 +32,10 @@
|
|||||||
#define MIN(a, b) ({ __typeof__ (a) _a = (a); __typeof__ (b) _b = (b); _a < _b ? _a : _b; })
|
#define MIN(a, b) ({ __typeof__ (a) _a = (a); __typeof__ (b) _b = (b); _a < _b ? _a : _b; })
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifndef SWAP
|
||||||
|
#define SWAP(a, b) ({ __typeof__ (a) _c = (a); a = b; b = _c; })
|
||||||
|
#endif
|
||||||
|
|
||||||
#define IS_MR_CHANNEL(x) ((x) <= MR_CHANNEL_LAST)
|
#define IS_MR_CHANNEL(x) ((x) <= MR_CHANNEL_LAST)
|
||||||
#define IS_FREQ_CHANNEL(x) ((x) >= FREQ_CHANNEL_FIRST && (x) <= FREQ_CHANNEL_LAST)
|
#define IS_FREQ_CHANNEL(x) ((x) >= FREQ_CHANNEL_FIRST && (x) <= FREQ_CHANNEL_LAST)
|
||||||
#define IS_VALID_CHANNEL(x) ((x) < LAST_CHANNEL)
|
#define IS_VALID_CHANNEL(x) ((x) < LAST_CHANNEL)
|
||||||
@@ -201,18 +205,15 @@ extern volatile bool gNextTimeslice_500ms;
|
|||||||
extern volatile uint16_t gTxTimerCountdown_500ms;
|
extern volatile uint16_t gTxTimerCountdown_500ms;
|
||||||
extern volatile bool gTxTimeoutReached;
|
extern volatile bool gTxTimeoutReached;
|
||||||
|
|
||||||
extern volatile uint16_t gTailNoteEliminationCountdown_10ms;
|
extern volatile uint16_t gTailToneEliminationCountdown_10ms;
|
||||||
|
|
||||||
#ifdef ENABLE_FMRADIO
|
|
||||||
extern volatile uint16_t gFmPlayCountdown_10ms;
|
|
||||||
#endif
|
|
||||||
#ifdef ENABLE_NOAA
|
#ifdef ENABLE_NOAA
|
||||||
extern volatile uint16_t gNOAA_Countdown_10ms;
|
extern volatile uint16_t gNOAA_Countdown_10ms;
|
||||||
#endif
|
#endif
|
||||||
extern bool gEnableSpeaker;
|
extern bool gEnableSpeaker;
|
||||||
extern uint8_t gKeyInputCountdown;
|
extern uint8_t gKeyInputCountdown;
|
||||||
extern uint8_t gKeyLockCountdown;
|
extern uint8_t gKeyLockCountdown;
|
||||||
extern uint8_t gRTTECountdown;
|
extern uint8_t gRTTECountdown_10ms;
|
||||||
extern bool bIsInLockScreen;
|
extern bool bIsInLockScreen;
|
||||||
extern uint8_t gUpdateStatus;
|
extern uint8_t gUpdateStatus;
|
||||||
extern uint8_t gFoundCTCSS;
|
extern uint8_t gFoundCTCSS;
|
||||||
@@ -259,9 +260,6 @@ extern bool gFlagPrepareTX;
|
|||||||
extern bool gFlagAcceptSetting; // accept menu setting
|
extern bool gFlagAcceptSetting; // accept menu setting
|
||||||
extern bool gFlagRefreshSetting; // refresh menu display
|
extern bool gFlagRefreshSetting; // refresh menu display
|
||||||
|
|
||||||
extern bool gFlagSaveVfo;
|
|
||||||
extern bool gFlagSaveSettings;
|
|
||||||
extern bool gFlagSaveChannel;
|
|
||||||
#ifdef ENABLE_FMRADIO
|
#ifdef ENABLE_FMRADIO
|
||||||
extern bool gFlagSaveFM;
|
extern bool gFlagSaveFM;
|
||||||
#endif
|
#endif
|
||||||
@@ -317,7 +315,7 @@ extern volatile bool gNextTimeslice40ms;
|
|||||||
extern volatile uint16_t gNOAACountdown_10ms;
|
extern volatile uint16_t gNOAACountdown_10ms;
|
||||||
extern volatile bool gScheduleNOAA;
|
extern volatile bool gScheduleNOAA;
|
||||||
#endif
|
#endif
|
||||||
extern volatile bool gFlagTailNoteEliminationComplete;
|
extern volatile bool gFlagTailToneEliminationComplete;
|
||||||
extern volatile uint8_t gVFOStateResumeCountdown_500ms;
|
extern volatile uint8_t gVFOStateResumeCountdown_500ms;
|
||||||
#ifdef ENABLE_FMRADIO
|
#ifdef ENABLE_FMRADIO
|
||||||
extern volatile bool gScheduleFM;
|
extern volatile bool gScheduleFM;
|
||||||
|
|||||||
267
radio.c
@@ -14,6 +14,7 @@
|
|||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include "driver/bk4819-regs.h"
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|
||||||
#include "am_fix.h"
|
#include "am_fix.h"
|
||||||
@@ -55,69 +56,41 @@ const char gModulationStr[MODULATION_UKNOWN][4] = {
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
bool RADIO_CheckValidChannel(uint16_t Channel, bool bCheckScanList, uint8_t VFO)
|
bool RADIO_CheckValidChannel(uint16_t channel, bool checkScanList, uint8_t scanList)
|
||||||
{ // return true if the channel appears valid
|
{
|
||||||
|
// return true if the channel appears valid
|
||||||
ChannelAttributes_t att;
|
if (!IS_MR_CHANNEL(channel))
|
||||||
uint8_t PriorityCh1;
|
|
||||||
uint8_t PriorityCh2;
|
|
||||||
|
|
||||||
if (!IS_MR_CHANNEL(Channel))
|
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
att = gMR_ChannelAttributes[Channel];
|
const ChannelAttributes_t att = gMR_ChannelAttributes[channel];
|
||||||
|
|
||||||
if (att.band > BAND7_470MHz)
|
if (att.band > BAND7_470MHz)
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
if (bCheckScanList) {
|
if (!checkScanList || scanList > 1)
|
||||||
switch (VFO) {
|
return true;
|
||||||
case 0:
|
|
||||||
if (!att.scanlist1)
|
|
||||||
return false;
|
|
||||||
|
|
||||||
PriorityCh1 = gEeprom.SCANLIST_PRIORITY_CH1[0];
|
if (scanList ? !att.scanlist2 : !att.scanlist1)
|
||||||
PriorityCh2 = gEeprom.SCANLIST_PRIORITY_CH2[0];
|
return false;
|
||||||
break;
|
|
||||||
|
|
||||||
case 1:
|
const uint8_t PriorityCh1 = gEeprom.SCANLIST_PRIORITY_CH1[scanList];
|
||||||
if (!att.scanlist2)
|
const uint8_t PriorityCh2 = gEeprom.SCANLIST_PRIORITY_CH2[scanList];
|
||||||
return false;
|
|
||||||
|
|
||||||
PriorityCh1 = gEeprom.SCANLIST_PRIORITY_CH1[1];
|
return PriorityCh1 != channel && PriorityCh2 != channel;
|
||||||
PriorityCh2 = gEeprom.SCANLIST_PRIORITY_CH2[1];
|
|
||||||
break;
|
|
||||||
|
|
||||||
default:
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (PriorityCh1 == Channel)
|
|
||||||
return false;
|
|
||||||
|
|
||||||
if (PriorityCh2 == Channel)
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
return true;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
uint8_t RADIO_FindNextChannel(uint8_t Channel, int8_t Direction, bool bCheckScanList, uint8_t VFO)
|
uint8_t RADIO_FindNextChannel(uint8_t Channel, int8_t Direction, bool bCheckScanList, uint8_t VFO)
|
||||||
{
|
{
|
||||||
unsigned int i;
|
for (unsigned int i = 0; IS_MR_CHANNEL(i); i++, Channel += Direction) {
|
||||||
|
if (Channel == 0xFF) {
|
||||||
for (i = 0; IS_MR_CHANNEL(i); i++)
|
|
||||||
{
|
|
||||||
if (Channel == 0xFF)
|
|
||||||
Channel = MR_CHANNEL_LAST;
|
Channel = MR_CHANNEL_LAST;
|
||||||
else
|
} else if (!IS_MR_CHANNEL(Channel)) {
|
||||||
if (!IS_MR_CHANNEL(Channel))
|
|
||||||
Channel = MR_CHANNEL_FIRST;
|
Channel = MR_CHANNEL_FIRST;
|
||||||
|
}
|
||||||
|
|
||||||
if (RADIO_CheckValidChannel(Channel, bCheckScanList, VFO))
|
if (RADIO_CheckValidChannel(Channel, bCheckScanList, VFO)) {
|
||||||
return Channel;
|
return Channel;
|
||||||
|
}
|
||||||
Channel += Direction;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return 0xFF;
|
return 0xFF;
|
||||||
@@ -165,7 +138,7 @@ void RADIO_ConfigureChannel(const unsigned int VFO, const unsigned int configure
|
|||||||
|
|
||||||
if (IS_VALID_CHANNEL(channel)) {
|
if (IS_VALID_CHANNEL(channel)) {
|
||||||
#ifdef ENABLE_NOAA
|
#ifdef ENABLE_NOAA
|
||||||
if (channel >= NOAA_CHANNEL_FIRST)
|
if (IS_NOAA_CHANNEL(channel))
|
||||||
{
|
{
|
||||||
RADIO_InitInfo(pVfo, gEeprom.ScreenChannel[VFO], NoaaFrequencyTable[channel - NOAA_CHANNEL_FIRST]);
|
RADIO_InitInfo(pVfo, gEeprom.ScreenChannel[VFO], NoaaFrequencyTable[channel - NOAA_CHANNEL_FIRST]);
|
||||||
|
|
||||||
@@ -338,7 +311,8 @@ void RADIO_ConfigureChannel(const unsigned int VFO, const unsigned int configure
|
|||||||
#ifdef ENABLE_DTMF_CALLING
|
#ifdef ENABLE_DTMF_CALLING
|
||||||
pVfo->DTMF_DECODING_ENABLE = ((data[5] >> 0) & 1u) ? true : false;
|
pVfo->DTMF_DECODING_ENABLE = ((data[5] >> 0) & 1u) ? true : false;
|
||||||
#endif
|
#endif
|
||||||
pVfo->DTMF_PTT_ID_TX_MODE = ((data[5] >> 1) & 7u);
|
uint8_t pttId = ((data[5] >> 1) & 7u);
|
||||||
|
pVfo->DTMF_PTT_ID_TX_MODE = pttId < ARRAY_SIZE(gSubMenu_PTT_ID) ? pttId : PTT_ID_OFF;
|
||||||
}
|
}
|
||||||
|
|
||||||
// ***************
|
// ***************
|
||||||
@@ -443,56 +417,37 @@ void RADIO_ConfigureSquelchAndOutputPower(VFO_Info_t *pInfo)
|
|||||||
EEPROM_ReadBuffer(Base + 0x40, &pInfo->SquelchCloseGlitchThresh, 1); // 90 90
|
EEPROM_ReadBuffer(Base + 0x40, &pInfo->SquelchCloseGlitchThresh, 1); // 90 90
|
||||||
EEPROM_ReadBuffer(Base + 0x50, &pInfo->SquelchOpenGlitchThresh, 1); // 100 100
|
EEPROM_ReadBuffer(Base + 0x50, &pInfo->SquelchOpenGlitchThresh, 1); // 100 100
|
||||||
|
|
||||||
uint16_t rssi_open = pInfo->SquelchOpenRSSIThresh;
|
|
||||||
uint16_t rssi_close = pInfo->SquelchCloseRSSIThresh;
|
|
||||||
uint16_t noise_open = pInfo->SquelchOpenNoiseThresh;
|
uint16_t noise_open = pInfo->SquelchOpenNoiseThresh;
|
||||||
uint16_t noise_close = pInfo->SquelchCloseNoiseThresh;
|
uint16_t noise_close = pInfo->SquelchCloseNoiseThresh;
|
||||||
|
|
||||||
|
#if ENABLE_SQUELCH_MORE_SENSITIVE
|
||||||
|
uint16_t rssi_open = pInfo->SquelchOpenRSSIThresh;
|
||||||
|
uint16_t rssi_close = pInfo->SquelchCloseRSSIThresh;
|
||||||
uint16_t glitch_open = pInfo->SquelchOpenGlitchThresh;
|
uint16_t glitch_open = pInfo->SquelchOpenGlitchThresh;
|
||||||
uint16_t glitch_close = pInfo->SquelchCloseGlitchThresh;
|
uint16_t glitch_close = pInfo->SquelchCloseGlitchThresh;
|
||||||
|
// make squelch more sensitive
|
||||||
#if ENABLE_SQUELCH_MORE_SENSITIVE
|
// note that 'noise' and 'glitch' values are inverted compared to 'rssi' values
|
||||||
// make squelch a little more sensitive
|
rssi_open = (rssi_open * 1) / 2;
|
||||||
//
|
noise_open = (noise_open * 2) / 1;
|
||||||
// getting the best setting here is still experimental, bare with me
|
glitch_open = (glitch_open * 2) / 1;
|
||||||
//
|
|
||||||
// note that 'noise' and 'glitch' values are inverted compared to 'rssi' values
|
|
||||||
|
|
||||||
#if 0
|
|
||||||
rssi_open = (rssi_open * 8) / 9;
|
|
||||||
noise_open = (noise_open * 9) / 8;
|
|
||||||
glitch_open = (glitch_open * 9) / 8;
|
|
||||||
#else
|
|
||||||
// even more sensitive .. use when RX bandwidths are fixed (no weak signal auto adjust)
|
|
||||||
rssi_open = (rssi_open * 1) / 2;
|
|
||||||
noise_open = (noise_open * 2) / 1;
|
|
||||||
glitch_open = (glitch_open * 2) / 1;
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#else
|
|
||||||
// more sensitive .. use when RX bandwidths are fixed (no weak signal auto adjust)
|
|
||||||
rssi_open = (rssi_open * 3) / 4;
|
|
||||||
noise_open = (noise_open * 4) / 3;
|
|
||||||
glitch_open = (glitch_open * 4) / 3;
|
|
||||||
#endif
|
|
||||||
|
|
||||||
rssi_close = (rssi_open * 9) / 10;
|
|
||||||
noise_close = (noise_open * 10) / 9;
|
|
||||||
glitch_close = (glitch_open * 10) / 9;
|
|
||||||
|
|
||||||
// ensure the 'close' threshold is lower than the 'open' threshold
|
// ensure the 'close' threshold is lower than the 'open' threshold
|
||||||
if (rssi_close == rssi_open && rssi_close >= 2)
|
if (rssi_close == rssi_open && rssi_close >= 2)
|
||||||
rssi_close -= 2;
|
rssi_close -= 2;
|
||||||
if (noise_close == noise_open && noise_close <= 125)
|
if (noise_close == noise_open && noise_close <= 125)
|
||||||
noise_close += 2;
|
noise_close += 2;
|
||||||
if (glitch_close == glitch_open && glitch_close <= 253)
|
if (glitch_close == glitch_open && glitch_close <= 253)
|
||||||
glitch_close += 2;
|
glitch_close += 2;
|
||||||
|
|
||||||
pInfo->SquelchOpenRSSIThresh = (rssi_open > 255) ? 255 : rssi_open;
|
pInfo->SquelchOpenRSSIThresh = (rssi_open > 255) ? 255 : rssi_open;
|
||||||
pInfo->SquelchCloseRSSIThresh = (rssi_close > 255) ? 255 : rssi_close;
|
pInfo->SquelchCloseRSSIThresh = (rssi_close > 255) ? 255 : rssi_close;
|
||||||
pInfo->SquelchOpenNoiseThresh = (noise_open > 127) ? 127 : noise_open;
|
|
||||||
pInfo->SquelchCloseNoiseThresh = (noise_close > 127) ? 127 : noise_close;
|
|
||||||
pInfo->SquelchOpenGlitchThresh = (glitch_open > 255) ? 255 : glitch_open;
|
pInfo->SquelchOpenGlitchThresh = (glitch_open > 255) ? 255 : glitch_open;
|
||||||
pInfo->SquelchCloseGlitchThresh = (glitch_close > 255) ? 255 : glitch_close;
|
pInfo->SquelchCloseGlitchThresh = (glitch_close > 255) ? 255 : glitch_close;
|
||||||
|
#endif
|
||||||
|
|
||||||
|
pInfo->SquelchOpenNoiseThresh = (noise_open > 127) ? 127 : noise_open;
|
||||||
|
pInfo->SquelchCloseNoiseThresh = (noise_close > 127) ? 127 : noise_close;
|
||||||
}
|
}
|
||||||
|
|
||||||
// *******************************
|
// *******************************
|
||||||
@@ -545,11 +500,6 @@ void RADIO_ApplyOffset(VFO_Info_t *pInfo)
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (Frequency < frequencyBandTable[0].lower)
|
|
||||||
Frequency = frequencyBandTable[0].lower;
|
|
||||||
else if (Frequency > frequencyBandTable[BAND_N_ELEM - 1].upper)
|
|
||||||
Frequency = frequencyBandTable[BAND_N_ELEM - 1].upper;
|
|
||||||
|
|
||||||
pInfo->freq_config_TX.Frequency = Frequency;
|
pInfo->freq_config_TX.Frequency = Frequency;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -723,53 +673,29 @@ void RADIO_SetupRegisters(bool switchToForeground)
|
|||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef ENABLE_VOX
|
#ifdef ENABLE_VOX
|
||||||
#ifdef ENABLE_NOAA
|
if (gEeprom.VOX_SWITCH && gCurrentVfo->Modulation == MODULATION_FM
|
||||||
#ifdef ENABLE_FMRADIO
|
#ifdef ENABLE_NOAA
|
||||||
if (gEeprom.VOX_SWITCH && !gFmRadioMode && !IS_NOAA_CHANNEL(gCurrentVfo->CHANNEL_SAVE) && gCurrentVfo->Modulation == MODULATION_FM)
|
&& !IS_NOAA_CHANNEL(gCurrentVfo->CHANNEL_SAVE)
|
||||||
#else
|
#endif
|
||||||
if (gEeprom.VOX_SWITCH && !IS_NOAA_CHANNEL(gCurrentVfo->CHANNEL_SAVE) && gCurrentVfo->Modulation == MODULATION_FM)
|
#ifdef ENABLE_FMRADIO
|
||||||
#endif
|
&& !gFmRadioMode
|
||||||
#else
|
#endif
|
||||||
#ifdef ENABLE_FMRADIO
|
){
|
||||||
if (gEeprom.VOX_SWITCH && !gFmRadioMode && gCurrentVfo->Modulation == MODULATION_FM)
|
BK4819_EnableVox(gEeprom.VOX1_THRESHOLD, gEeprom.VOX0_THRESHOLD);
|
||||||
#else
|
InterruptMask |= BK4819_REG_3F_VOX_FOUND | BK4819_REG_3F_VOX_LOST;
|
||||||
if (gEeprom.VOX_SWITCH && gCurrentVfo->Modulation == MODULATION_FM)
|
}
|
||||||
#endif
|
else
|
||||||
#endif
|
#endif
|
||||||
{
|
{
|
||||||
BK4819_EnableVox(gEeprom.VOX1_THRESHOLD, gEeprom.VOX0_THRESHOLD);
|
|
||||||
InterruptMask |= BK4819_REG_3F_VOX_FOUND | BK4819_REG_3F_VOX_LOST;
|
|
||||||
}
|
|
||||||
else
|
|
||||||
#endif
|
|
||||||
BK4819_DisableVox();
|
BK4819_DisableVox();
|
||||||
|
}
|
||||||
|
|
||||||
// RX expander
|
// RX expander
|
||||||
BK4819_SetCompander((gRxVfo->Modulation == MODULATION_FM && gRxVfo->Compander >= 2) ? gRxVfo->Compander : 0);
|
BK4819_SetCompander((gRxVfo->Modulation == MODULATION_FM && gRxVfo->Compander >= 2) ? gRxVfo->Compander : 0);
|
||||||
|
|
||||||
#if 0
|
BK4819_EnableDTMF();
|
||||||
if (!gRxVfo->DTMF_DECODING_ENABLE && !gSetting_KILLED)
|
InterruptMask |= BK4819_REG_3F_DTMF_5TONE_FOUND;
|
||||||
{
|
|
||||||
BK4819_DisableDTMF();
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
BK4819_EnableDTMF();
|
|
||||||
InterruptMask |= BK4819_REG_3F_DTMF_5TONE_FOUND;
|
|
||||||
}
|
|
||||||
#else
|
|
||||||
if (gCurrentFunction != FUNCTION_TRANSMIT)
|
|
||||||
{
|
|
||||||
BK4819_DisableDTMF();
|
|
||||||
BK4819_EnableDTMF();
|
|
||||||
InterruptMask |= BK4819_REG_3F_DTMF_5TONE_FOUND;
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
BK4819_DisableDTMF();
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
|
|
||||||
RADIO_SetupAGC(gRxVfo->Modulation == MODULATION_AM, false);
|
RADIO_SetupAGC(gRxVfo->Modulation == MODULATION_AM, false);
|
||||||
|
|
||||||
@@ -812,7 +738,7 @@ void RADIO_SetupRegisters(bool switchToForeground)
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (gRxVfo->CHANNEL_SAVE >= NOAA_CHANNEL_FIRST)
|
if (IS_NOAA_CHANNEL(gRxVfo->CHANNEL_SAVE))
|
||||||
{
|
{
|
||||||
gIsNoaaMode = true;
|
gIsNoaaMode = true;
|
||||||
gNoaaChannel = gRxVfo->CHANNEL_SAVE - NOAA_CHANNEL_FIRST;
|
gNoaaChannel = gRxVfo->CHANNEL_SAVE - NOAA_CHANNEL_FIRST;
|
||||||
@@ -1042,15 +968,12 @@ void RADIO_PrepareTX(void)
|
|||||||
#ifdef ENABLE_DTMF_CALLING
|
#ifdef ENABLE_DTMF_CALLING
|
||||||
if (gDTMF_ReplyState == DTMF_REPLY_ANI)
|
if (gDTMF_ReplyState == DTMF_REPLY_ANI)
|
||||||
{
|
{
|
||||||
if (gDTMF_CallMode == DTMF_CALL_MODE_DTMF)
|
gDTMF_IsTx = gDTMF_CallMode == DTMF_CALL_MODE_DTMF;
|
||||||
{
|
|
||||||
gDTMF_IsTx = true;
|
if (gDTMF_IsTx) {
|
||||||
gDTMF_CallState = DTMF_CALL_STATE_NONE;
|
gDTMF_CallState = DTMF_CALL_STATE_NONE;
|
||||||
gDTMF_TxStopCountdown_500ms = DTMF_txstop_countdown_500ms;
|
gDTMF_TxStopCountdown_500ms = DTMF_txstop_countdown_500ms;
|
||||||
}
|
} else {
|
||||||
else
|
|
||||||
{
|
|
||||||
gDTMF_IsTx = false;
|
|
||||||
gDTMF_CallState = DTMF_CALL_STATE_CALL_OUT;
|
gDTMF_CallState = DTMF_CALL_STATE_CALL_OUT;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -1060,9 +983,9 @@ void RADIO_PrepareTX(void)
|
|||||||
|
|
||||||
gTxTimerCountdown_500ms = 0; // no timeout
|
gTxTimerCountdown_500ms = 0; // no timeout
|
||||||
|
|
||||||
#if defined(ENABLE_ALARM) || defined(ENABLE_TX1750)
|
#if defined(ENABLE_ALARM) || defined(ENABLE_TX1750)
|
||||||
if (gAlarmState == ALARM_STATE_OFF)
|
if (gAlarmState == ALARM_STATE_OFF)
|
||||||
#endif
|
#endif
|
||||||
{
|
{
|
||||||
if (gEeprom.TX_TIMEOUT_TIMER == 0)
|
if (gEeprom.TX_TIMEOUT_TIMER == 0)
|
||||||
gTxTimerCountdown_500ms = 60; // 30 sec
|
gTxTimerCountdown_500ms = 60; // 30 sec
|
||||||
@@ -1074,76 +997,46 @@ void RADIO_PrepareTX(void)
|
|||||||
|
|
||||||
gTxTimeoutReached = false;
|
gTxTimeoutReached = false;
|
||||||
gFlagEndTransmission = false;
|
gFlagEndTransmission = false;
|
||||||
gRTTECountdown = 0;
|
gRTTECountdown_10ms = 0;
|
||||||
|
|
||||||
#ifdef ENABLE_DTMF_CALLING
|
#ifdef ENABLE_DTMF_CALLING
|
||||||
gDTMF_ReplyState = DTMF_REPLY_NONE;
|
gDTMF_ReplyState = DTMF_REPLY_NONE;
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
void RADIO_EnableCxCSS(void)
|
void RADIO_SendCssTail(void)
|
||||||
{
|
{
|
||||||
switch (gCurrentVfo->pTX->CodeType) {
|
switch (gCurrentVfo->pTX->CodeType) {
|
||||||
case CODE_TYPE_DIGITAL:
|
case CODE_TYPE_DIGITAL:
|
||||||
case CODE_TYPE_REVERSE_DIGITAL:
|
case CODE_TYPE_REVERSE_DIGITAL:
|
||||||
BK4819_EnableCDCSS();
|
BK4819_PlayCDCSSTail();
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
BK4819_EnableCTCSS();
|
BK4819_PlayCTCSSTail();
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
SYSTEM_DelayMs(200);
|
SYSTEM_DelayMs(200);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void RADIO_SendEndOfTransmission(void)
|
||||||
|
{
|
||||||
|
BK4819_PlayRoger();
|
||||||
|
DTMF_SendEndOfTransmission();
|
||||||
|
|
||||||
|
// send the CTCSS/DCS tail tone - allows the receivers to mute the usual FM squelch tail/crash
|
||||||
|
if(gEeprom.TAIL_TONE_ELIMINATION)
|
||||||
|
RADIO_SendCssTail();
|
||||||
|
RADIO_SetupRegisters(false);
|
||||||
|
}
|
||||||
|
|
||||||
void RADIO_PrepareCssTX(void)
|
void RADIO_PrepareCssTX(void)
|
||||||
{
|
{
|
||||||
RADIO_PrepareTX();
|
RADIO_PrepareTX();
|
||||||
|
|
||||||
SYSTEM_DelayMs(200);
|
SYSTEM_DelayMs(200);
|
||||||
|
|
||||||
RADIO_EnableCxCSS();
|
if(gEeprom.TAIL_TONE_ELIMINATION)
|
||||||
|
RADIO_SendCssTail();
|
||||||
RADIO_SetupRegisters(true);
|
RADIO_SetupRegisters(true);
|
||||||
}
|
}
|
||||||
|
|
||||||
void RADIO_SendEndOfTransmission(void)
|
|
||||||
{
|
|
||||||
if (gEeprom.ROGER == ROGER_MODE_ROGER)
|
|
||||||
BK4819_PlayRoger();
|
|
||||||
else
|
|
||||||
if (gEeprom.ROGER == ROGER_MODE_MDC)
|
|
||||||
BK4819_PlayRogerMDC();
|
|
||||||
|
|
||||||
if (gCurrentVfo->DTMF_PTT_ID_TX_MODE == PTT_ID_APOLLO)
|
|
||||||
BK4819_PlaySingleTone(2475, 250, 28, gEeprom.DTMF_SIDE_TONE);
|
|
||||||
|
|
||||||
if (
|
|
||||||
#ifdef ENABLE_DTMF_CALLING
|
|
||||||
gDTMF_CallState == DTMF_CALL_STATE_NONE &&
|
|
||||||
#endif
|
|
||||||
(gCurrentVfo->DTMF_PTT_ID_TX_MODE == PTT_ID_TX_DOWN ||
|
|
||||||
gCurrentVfo->DTMF_PTT_ID_TX_MODE == PTT_ID_BOTH))
|
|
||||||
{ // end-of-tx
|
|
||||||
if (gEeprom.DTMF_SIDE_TONE)
|
|
||||||
{
|
|
||||||
AUDIO_AudioPathOn();
|
|
||||||
gEnableSpeaker = true;
|
|
||||||
SYSTEM_DelayMs(60);
|
|
||||||
}
|
|
||||||
|
|
||||||
BK4819_EnterDTMF_TX(gEeprom.DTMF_SIDE_TONE);
|
|
||||||
|
|
||||||
BK4819_PlayDTMFString(
|
|
||||||
gEeprom.DTMF_DOWN_CODE,
|
|
||||||
0,
|
|
||||||
gEeprom.DTMF_FIRST_CODE_PERSIST_TIME,
|
|
||||||
gEeprom.DTMF_HASH_CODE_PERSIST_TIME,
|
|
||||||
gEeprom.DTMF_CODE_PERSIST_TIME,
|
|
||||||
gEeprom.DTMF_CODE_INTERVAL_TIME);
|
|
||||||
|
|
||||||
AUDIO_AudioPathOff();
|
|
||||||
gEnableSpeaker = false;
|
|
||||||
}
|
|
||||||
|
|
||||||
BK4819_ExitDTMF_TX(true);
|
|
||||||
}
|
|
||||||
7
radio.h
@@ -148,14 +148,14 @@ extern DCS_CodeType_t gCurrentCodeType;
|
|||||||
|
|
||||||
extern VfoState_t VfoState[2];
|
extern VfoState_t VfoState[2];
|
||||||
|
|
||||||
bool RADIO_CheckValidChannel(uint16_t ChNum, bool bCheckScanList, uint8_t RadioNum);
|
bool RADIO_CheckValidChannel(uint16_t channel, bool checkScanList, uint8_t scanList);
|
||||||
uint8_t RADIO_FindNextChannel(uint8_t ChNum, int8_t Direction, bool bCheckScanList, uint8_t RadioNum);
|
uint8_t RADIO_FindNextChannel(uint8_t ChNum, int8_t Direction, bool bCheckScanList, uint8_t RadioNum);
|
||||||
void RADIO_InitInfo(VFO_Info_t *pInfo, const uint8_t ChannelSave, const uint32_t Frequency);
|
void RADIO_InitInfo(VFO_Info_t *pInfo, const uint8_t ChannelSave, const uint32_t Frequency);
|
||||||
void RADIO_ConfigureChannel(const unsigned int VFO, const unsigned int configure);
|
void RADIO_ConfigureChannel(const unsigned int VFO, const unsigned int configure);
|
||||||
void RADIO_ConfigureSquelchAndOutputPower(VFO_Info_t *pInfo);
|
void RADIO_ConfigureSquelchAndOutputPower(VFO_Info_t *pInfo);
|
||||||
void RADIO_ApplyOffset(VFO_Info_t *pInfo);
|
void RADIO_ApplyOffset(VFO_Info_t *pInfo);
|
||||||
void RADIO_SelectVfos(void);
|
void RADIO_SelectVfos(void);
|
||||||
void RADIO_SetupRegisters(bool bSwitchToFunction0);
|
void RADIO_SetupRegisters(bool switchToForeground);
|
||||||
#ifdef ENABLE_NOAA
|
#ifdef ENABLE_NOAA
|
||||||
void RADIO_ConfigureNOAA(void);
|
void RADIO_ConfigureNOAA(void);
|
||||||
#endif
|
#endif
|
||||||
@@ -164,9 +164,8 @@ void RADIO_SetupAGC(bool listeningAM, bool disable);
|
|||||||
void RADIO_SetModulation(ModulationMode_t modulation);
|
void RADIO_SetModulation(ModulationMode_t modulation);
|
||||||
void RADIO_SetVfoState(VfoState_t State);
|
void RADIO_SetVfoState(VfoState_t State);
|
||||||
void RADIO_PrepareTX(void);
|
void RADIO_PrepareTX(void);
|
||||||
void RADIO_EnableCxCSS(void);
|
void RADIO_SendCssTail(void);
|
||||||
void RADIO_PrepareCssTX(void);
|
void RADIO_PrepareCssTX(void);
|
||||||
void RADIO_SendEndOfTransmission(void);
|
void RADIO_SendEndOfTransmission(void);
|
||||||
|
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
45
scheduler.c
@@ -53,8 +53,7 @@ void SystickHandler(void)
|
|||||||
|
|
||||||
gNextTimeslice = true;
|
gNextTimeslice = true;
|
||||||
|
|
||||||
if ((gGlobalSysTickCounter % 50) == 0)
|
if ((gGlobalSysTickCounter % 50) == 0) {
|
||||||
{
|
|
||||||
gNextTimeslice_500ms = true;
|
gNextTimeslice_500ms = true;
|
||||||
|
|
||||||
DECREMENT_AND_TRIGGER(gTxTimerCountdown_500ms, gTxTimeoutReached);
|
DECREMENT_AND_TRIGGER(gTxTimerCountdown_500ms, gTxTimeoutReached);
|
||||||
@@ -64,9 +63,9 @@ void SystickHandler(void)
|
|||||||
if ((gGlobalSysTickCounter & 3) == 0)
|
if ((gGlobalSysTickCounter & 3) == 0)
|
||||||
gNextTimeslice40ms = true;
|
gNextTimeslice40ms = true;
|
||||||
|
|
||||||
#ifdef ENABLE_NOAA
|
#ifdef ENABLE_NOAA
|
||||||
DECREMENT(gNOAACountdown_10ms);
|
DECREMENT(gNOAACountdown_10ms);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
DECREMENT(gFoundCDCSSCountdown_10ms);
|
DECREMENT(gFoundCDCSSCountdown_10ms);
|
||||||
|
|
||||||
@@ -82,32 +81,32 @@ void SystickHandler(void)
|
|||||||
if (gCurrentFunction != FUNCTION_MONITOR && gCurrentFunction != FUNCTION_TRANSMIT && gCurrentFunction != FUNCTION_RECEIVE)
|
if (gCurrentFunction != FUNCTION_MONITOR && gCurrentFunction != FUNCTION_TRANSMIT && gCurrentFunction != FUNCTION_RECEIVE)
|
||||||
DECREMENT_AND_TRIGGER(gDualWatchCountdown_10ms, gScheduleDualWatch);
|
DECREMENT_AND_TRIGGER(gDualWatchCountdown_10ms, gScheduleDualWatch);
|
||||||
|
|
||||||
#ifdef ENABLE_NOAA
|
#ifdef ENABLE_NOAA
|
||||||
if (gScanStateDir == SCAN_OFF && !gCssBackgroundScan && gEeprom.DUAL_WATCH == DUAL_WATCH_OFF)
|
if (gScanStateDir == SCAN_OFF && !gCssBackgroundScan && gEeprom.DUAL_WATCH == DUAL_WATCH_OFF)
|
||||||
if (gIsNoaaMode && gCurrentFunction != FUNCTION_MONITOR && gCurrentFunction != FUNCTION_TRANSMIT)
|
if (gIsNoaaMode && gCurrentFunction != FUNCTION_MONITOR && gCurrentFunction != FUNCTION_TRANSMIT)
|
||||||
if (gCurrentFunction != FUNCTION_RECEIVE)
|
if (gCurrentFunction != FUNCTION_RECEIVE)
|
||||||
DECREMENT_AND_TRIGGER(gNOAA_Countdown_10ms, gScheduleNOAA);
|
DECREMENT_AND_TRIGGER(gNOAA_Countdown_10ms, gScheduleNOAA);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
if (gScanStateDir != SCAN_OFF)
|
if (gScanStateDir != SCAN_OFF)
|
||||||
if (gCurrentFunction != FUNCTION_MONITOR && gCurrentFunction != FUNCTION_TRANSMIT)
|
if (gCurrentFunction != FUNCTION_MONITOR && gCurrentFunction != FUNCTION_TRANSMIT)
|
||||||
DECREMENT_AND_TRIGGER(gScanPauseDelayIn_10ms, gScheduleScanListen);
|
DECREMENT_AND_TRIGGER(gScanPauseDelayIn_10ms, gScheduleScanListen);
|
||||||
|
|
||||||
DECREMENT_AND_TRIGGER(gTailNoteEliminationCountdown_10ms, gFlagTailNoteEliminationComplete);
|
DECREMENT_AND_TRIGGER(gTailToneEliminationCountdown_10ms, gFlagTailToneEliminationComplete);
|
||||||
|
|
||||||
#ifdef ENABLE_VOICE
|
#ifdef ENABLE_VOICE
|
||||||
DECREMENT_AND_TRIGGER(gCountdownToPlayNextVoice_10ms, gFlagPlayQueuedVoice);
|
DECREMENT_AND_TRIGGER(gCountdownToPlayNextVoice_10ms, gFlagPlayQueuedVoice);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef ENABLE_FMRADIO
|
#ifdef ENABLE_FMRADIO
|
||||||
if (gFM_ScanState != FM_SCAN_OFF && gCurrentFunction != FUNCTION_MONITOR)
|
if (gFM_ScanState != FM_SCAN_OFF && gCurrentFunction != FUNCTION_MONITOR)
|
||||||
if (gCurrentFunction != FUNCTION_TRANSMIT && gCurrentFunction != FUNCTION_RECEIVE)
|
if (gCurrentFunction != FUNCTION_TRANSMIT && gCurrentFunction != FUNCTION_RECEIVE)
|
||||||
DECREMENT_AND_TRIGGER(gFmPlayCountdown_10ms, gScheduleFM);
|
DECREMENT_AND_TRIGGER(gFmPlayCountdown_10ms, gScheduleFM);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef ENABLE_VOX
|
#ifdef ENABLE_VOX
|
||||||
DECREMENT(gVoxStopCountdown_10ms);
|
DECREMENT(gVoxStopCountdown_10ms);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
DECREMENT(boot_counter_10ms);
|
DECREMENT(boot_counter_10ms);
|
||||||
}
|
}
|
||||||
|
|||||||
276
settings.c
@@ -20,9 +20,9 @@
|
|||||||
#ifdef ENABLE_FMRADIO
|
#ifdef ENABLE_FMRADIO
|
||||||
#include "app/fm.h"
|
#include "app/fm.h"
|
||||||
#endif
|
#endif
|
||||||
|
#include "driver/bk1080.h"
|
||||||
#include "driver/bk4819.h"
|
#include "driver/bk4819.h"
|
||||||
#include "driver/eeprom.h"
|
#include "driver/eeprom.h"
|
||||||
#include "driver/uart.h"
|
|
||||||
#include "misc.h"
|
#include "misc.h"
|
||||||
#include "settings.h"
|
#include "settings.h"
|
||||||
#include "ui/menu.h"
|
#include "ui/menu.h"
|
||||||
@@ -36,15 +36,11 @@ static const uint32_t gDefaultFrequencyTable[] =
|
|||||||
43350000 //
|
43350000 //
|
||||||
};
|
};
|
||||||
|
|
||||||
EEPROM_Config_t gEeprom;
|
EEPROM_Config_t gEeprom = { 0 };
|
||||||
|
|
||||||
void SETTINGS_InitEEPROM(void)
|
void SETTINGS_InitEEPROM(void)
|
||||||
{
|
{
|
||||||
unsigned int i;
|
uint8_t Data[16] = {0};
|
||||||
uint8_t Data[16];
|
|
||||||
|
|
||||||
memset(Data, 0, sizeof(Data));
|
|
||||||
|
|
||||||
// 0E70..0E77
|
// 0E70..0E77
|
||||||
EEPROM_ReadBuffer(0x0E70, Data, 8);
|
EEPROM_ReadBuffer(0x0E70, Data, 8);
|
||||||
gEeprom.CHAN_1_CALL = IS_MR_CHANNEL(Data[0]) ? Data[0] : MR_CHANNEL_FIRST;
|
gEeprom.CHAN_1_CALL = IS_MR_CHANNEL(Data[0]) ? Data[0] : MR_CHANNEL_FIRST;
|
||||||
@@ -83,31 +79,31 @@ void SETTINGS_InitEEPROM(void)
|
|||||||
gEeprom.MrChannel[1] = IS_MR_CHANNEL(Data[4]) ? Data[4] : MR_CHANNEL_FIRST;
|
gEeprom.MrChannel[1] = IS_MR_CHANNEL(Data[4]) ? Data[4] : MR_CHANNEL_FIRST;
|
||||||
gEeprom.FreqChannel[0] = IS_FREQ_CHANNEL(Data[2]) ? Data[2] : (FREQ_CHANNEL_FIRST + BAND6_400MHz);
|
gEeprom.FreqChannel[0] = IS_FREQ_CHANNEL(Data[2]) ? Data[2] : (FREQ_CHANNEL_FIRST + BAND6_400MHz);
|
||||||
gEeprom.FreqChannel[1] = IS_FREQ_CHANNEL(Data[5]) ? Data[5] : (FREQ_CHANNEL_FIRST + BAND6_400MHz);
|
gEeprom.FreqChannel[1] = IS_FREQ_CHANNEL(Data[5]) ? Data[5] : (FREQ_CHANNEL_FIRST + BAND6_400MHz);
|
||||||
#ifdef ENABLE_NOAA
|
#ifdef ENABLE_NOAA
|
||||||
gEeprom.NoaaChannel[0] = IS_NOAA_CHANNEL(Data[6]) ? Data[6] : NOAA_CHANNEL_FIRST;
|
gEeprom.NoaaChannel[0] = IS_NOAA_CHANNEL(Data[6]) ? Data[6] : NOAA_CHANNEL_FIRST;
|
||||||
gEeprom.NoaaChannel[1] = IS_NOAA_CHANNEL(Data[7]) ? Data[7] : NOAA_CHANNEL_FIRST;
|
gEeprom.NoaaChannel[1] = IS_NOAA_CHANNEL(Data[7]) ? Data[7] : NOAA_CHANNEL_FIRST;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef ENABLE_FMRADIO
|
#ifdef ENABLE_FMRADIO
|
||||||
{ // 0E88..0E8F
|
{ // 0E88..0E8F
|
||||||
struct
|
struct
|
||||||
{
|
{
|
||||||
uint16_t SelectedFrequency;
|
uint16_t selFreq;
|
||||||
uint8_t SelectedChannel;
|
uint8_t selChn;
|
||||||
uint8_t IsMrMode;
|
uint8_t isMrMode:1;
|
||||||
uint8_t Padding[8];
|
uint8_t band:2;
|
||||||
} __attribute__((packed)) FM;
|
//uint8_t space:2;
|
||||||
|
} __attribute__((packed)) fmCfg;
|
||||||
|
EEPROM_ReadBuffer(0x0E88, &fmCfg, 4);
|
||||||
|
|
||||||
EEPROM_ReadBuffer(0x0E88, &FM, 8);
|
gEeprom.FM_Band = fmCfg.band;
|
||||||
gEeprom.FM_LowerLimit = 760;
|
//gEeprom.FM_Space = fmCfg.space;
|
||||||
gEeprom.FM_UpperLimit = 1080;
|
gEeprom.FM_SelectedFrequency =
|
||||||
if (FM.SelectedFrequency < gEeprom.FM_LowerLimit || FM.SelectedFrequency > gEeprom.FM_UpperLimit)
|
(fmCfg.selFreq >= BK1080_GetFreqLoLimit(gEeprom.FM_Band) && fmCfg.selFreq <= BK1080_GetFreqHiLimit(gEeprom.FM_Band)) ?
|
||||||
gEeprom.FM_SelectedFrequency = 960;
|
fmCfg.selFreq : BK1080_GetFreqLoLimit(gEeprom.FM_Band);
|
||||||
else
|
|
||||||
gEeprom.FM_SelectedFrequency = FM.SelectedFrequency;
|
|
||||||
|
|
||||||
gEeprom.FM_SelectedChannel = FM.SelectedChannel;
|
gEeprom.FM_SelectedChannel = fmCfg.selChn;
|
||||||
gEeprom.FM_IsMrMode = (FM.IsMrMode < 2) ? FM.IsMrMode : false;
|
gEeprom.FM_IsMrMode = fmCfg.isMrMode;
|
||||||
}
|
}
|
||||||
|
|
||||||
// 0E40..0E67
|
// 0E40..0E67
|
||||||
@@ -129,7 +125,7 @@ void SETTINGS_InitEEPROM(void)
|
|||||||
|
|
||||||
// 0E98..0E9F
|
// 0E98..0E9F
|
||||||
EEPROM_ReadBuffer(0x0E98, Data, 8);
|
EEPROM_ReadBuffer(0x0E98, Data, 8);
|
||||||
memmove(&gEeprom.POWER_ON_PASSWORD, Data, 4);
|
memcpy(&gEeprom.POWER_ON_PASSWORD, Data, 4);
|
||||||
|
|
||||||
// 0EA0..0EA7
|
// 0EA0..0EA7
|
||||||
EEPROM_ReadBuffer(0x0EA0, Data, 8);
|
EEPROM_ReadBuffer(0x0EA0, Data, 8);
|
||||||
@@ -137,8 +133,14 @@ void SETTINGS_InitEEPROM(void)
|
|||||||
gEeprom.VOICE_PROMPT = (Data[0] < 3) ? Data[0] : VOICE_PROMPT_ENGLISH;
|
gEeprom.VOICE_PROMPT = (Data[0] < 3) ? Data[0] : VOICE_PROMPT_ENGLISH;
|
||||||
#endif
|
#endif
|
||||||
#ifdef ENABLE_RSSI_BAR
|
#ifdef ENABLE_RSSI_BAR
|
||||||
gEeprom.S0_LEVEL = (Data[1] < 0xFF) ? Data[1] : 130;
|
if((Data[1] < 200 && Data[1] > 90) && (Data[2] < Data[1]-9 && Data[1] < 160 && Data[2] > 50)) {
|
||||||
gEeprom.S9_LEVEL = (Data[2] < gEeprom.S0_LEVEL-9) ? Data[2] : 76;
|
gEeprom.S0_LEVEL = Data[1];
|
||||||
|
gEeprom.S9_LEVEL = Data[2];
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
gEeprom.S0_LEVEL = 130;
|
||||||
|
gEeprom.S9_LEVEL = 76;
|
||||||
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// 0EA8..0EAF
|
// 0EA8..0EAF
|
||||||
@@ -158,8 +160,8 @@ void SETTINGS_InitEEPROM(void)
|
|||||||
#ifdef ENABLE_DTMF_CALLING
|
#ifdef ENABLE_DTMF_CALLING
|
||||||
gEeprom.DTMF_SEPARATE_CODE = DTMF_ValidateCodes((char *)(Data + 1), 1) ? Data[1] : '*';
|
gEeprom.DTMF_SEPARATE_CODE = DTMF_ValidateCodes((char *)(Data + 1), 1) ? Data[1] : '*';
|
||||||
gEeprom.DTMF_GROUP_CALL_CODE = DTMF_ValidateCodes((char *)(Data + 2), 1) ? Data[2] : '#';
|
gEeprom.DTMF_GROUP_CALL_CODE = DTMF_ValidateCodes((char *)(Data + 2), 1) ? Data[2] : '#';
|
||||||
gEeprom.DTMF_DECODE_RESPONSE = (Data[3] < 4) ? Data[3] : 0;
|
gEeprom.DTMF_DECODE_RESPONSE = (Data[3] < 4) ? Data[3] : 0;
|
||||||
gEeprom.DTMF_auto_reset_time = (Data[4] < 61) ? Data[4] : (Data[4] >= 5) ? Data[4] : 10;
|
gEeprom.DTMF_auto_reset_time = (Data[4] < 61 && Data[4] >= 5) ? Data[4] : 10;
|
||||||
#endif
|
#endif
|
||||||
gEeprom.DTMF_PRELOAD_TIME = (Data[5] < 101) ? Data[5] * 10 : 300;
|
gEeprom.DTMF_PRELOAD_TIME = (Data[5] < 101) ? Data[5] * 10 : 300;
|
||||||
gEeprom.DTMF_FIRST_CODE_PERSIST_TIME = (Data[6] < 101) ? Data[6] * 10 : 100;
|
gEeprom.DTMF_FIRST_CODE_PERSIST_TIME = (Data[6] < 101) ? Data[6] * 10 : 100;
|
||||||
@@ -174,62 +176,51 @@ void SETTINGS_InitEEPROM(void)
|
|||||||
|
|
||||||
// 0EE0..0EE7
|
// 0EE0..0EE7
|
||||||
|
|
||||||
EEPROM_ReadBuffer(0x0EE0, Data, 8);
|
EEPROM_ReadBuffer(0x0EE0, Data, sizeof(gEeprom.ANI_DTMF_ID));
|
||||||
if (DTMF_ValidateCodes((char *)Data, 8))
|
if (DTMF_ValidateCodes((char *)Data, sizeof(gEeprom.ANI_DTMF_ID))) {
|
||||||
memmove(gEeprom.ANI_DTMF_ID, Data, 8);
|
memcpy(gEeprom.ANI_DTMF_ID, Data, sizeof(gEeprom.ANI_DTMF_ID));
|
||||||
else
|
} else {
|
||||||
{
|
|
||||||
memset(gEeprom.ANI_DTMF_ID, 0, sizeof(gEeprom.ANI_DTMF_ID));
|
|
||||||
strcpy(gEeprom.ANI_DTMF_ID, "123");
|
strcpy(gEeprom.ANI_DTMF_ID, "123");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
// 0EE8..0EEF
|
// 0EE8..0EEF
|
||||||
EEPROM_ReadBuffer(0x0EE8, Data, 8);
|
EEPROM_ReadBuffer(0x0EE8, Data, sizeof(gEeprom.KILL_CODE));
|
||||||
if (DTMF_ValidateCodes((char *)Data, 8))
|
if (DTMF_ValidateCodes((char *)Data, sizeof(gEeprom.KILL_CODE))) {
|
||||||
memmove(gEeprom.KILL_CODE, Data, 8);
|
memcpy(gEeprom.KILL_CODE, Data, sizeof(gEeprom.KILL_CODE));
|
||||||
else
|
} else {
|
||||||
{
|
|
||||||
memset(gEeprom.KILL_CODE, 0, sizeof(gEeprom.KILL_CODE));
|
|
||||||
strcpy(gEeprom.KILL_CODE, "ABCD9");
|
strcpy(gEeprom.KILL_CODE, "ABCD9");
|
||||||
}
|
}
|
||||||
|
|
||||||
// 0EF0..0EF7
|
// 0EF0..0EF7
|
||||||
EEPROM_ReadBuffer(0x0EF0, Data, 8);
|
EEPROM_ReadBuffer(0x0EF0, Data, sizeof(gEeprom.REVIVE_CODE));
|
||||||
if (DTMF_ValidateCodes((char *)Data, 8))
|
if (DTMF_ValidateCodes((char *)Data, sizeof(gEeprom.REVIVE_CODE))) {
|
||||||
memmove(gEeprom.REVIVE_CODE, Data, 8);
|
memcpy(gEeprom.REVIVE_CODE, Data, sizeof(gEeprom.REVIVE_CODE));
|
||||||
else
|
} else {
|
||||||
{
|
|
||||||
memset(gEeprom.REVIVE_CODE, 0, sizeof(gEeprom.REVIVE_CODE));
|
|
||||||
strcpy(gEeprom.REVIVE_CODE, "9DCBA");
|
strcpy(gEeprom.REVIVE_CODE, "9DCBA");
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// 0EF8..0F07
|
// 0EF8..0F07
|
||||||
EEPROM_ReadBuffer(0x0EF8, Data, 16);
|
EEPROM_ReadBuffer(0x0EF8, Data, sizeof(gEeprom.DTMF_UP_CODE));
|
||||||
if (DTMF_ValidateCodes((char *)Data, 16))
|
if (DTMF_ValidateCodes((char *)Data, sizeof(gEeprom.DTMF_UP_CODE))) {
|
||||||
memmove(gEeprom.DTMF_UP_CODE, Data, 16);
|
memcpy(gEeprom.DTMF_UP_CODE, Data, sizeof(gEeprom.DTMF_UP_CODE));
|
||||||
else
|
} else {
|
||||||
{
|
|
||||||
memset(gEeprom.DTMF_UP_CODE, 0, sizeof(gEeprom.DTMF_UP_CODE));
|
|
||||||
strcpy(gEeprom.DTMF_UP_CODE, "12345");
|
strcpy(gEeprom.DTMF_UP_CODE, "12345");
|
||||||
}
|
}
|
||||||
|
|
||||||
// 0F08..0F17
|
// 0F08..0F17
|
||||||
EEPROM_ReadBuffer(0x0F08, Data, 16);
|
EEPROM_ReadBuffer(0x0F08, Data, sizeof(gEeprom.DTMF_DOWN_CODE));
|
||||||
if (DTMF_ValidateCodes((char *)Data, 16))
|
if (DTMF_ValidateCodes((char *)Data, sizeof(gEeprom.DTMF_DOWN_CODE))) {
|
||||||
memmove(gEeprom.DTMF_DOWN_CODE, Data, 16);
|
memcpy(gEeprom.DTMF_DOWN_CODE, Data, sizeof(gEeprom.DTMF_DOWN_CODE));
|
||||||
else
|
} else {
|
||||||
{
|
|
||||||
memset(gEeprom.DTMF_DOWN_CODE, 0, sizeof(gEeprom.DTMF_DOWN_CODE));
|
|
||||||
strcpy(gEeprom.DTMF_DOWN_CODE, "54321");
|
strcpy(gEeprom.DTMF_DOWN_CODE, "54321");
|
||||||
}
|
}
|
||||||
|
|
||||||
// 0F18..0F1F
|
// 0F18..0F1F
|
||||||
EEPROM_ReadBuffer(0x0F18, Data, 8);
|
EEPROM_ReadBuffer(0x0F18, Data, 8);
|
||||||
// gEeprom.SCAN_LIST_DEFAULT = (Data[0] < 2) ? Data[0] : false;
|
gEeprom.SCAN_LIST_DEFAULT = (Data[0] < 3) ? Data[0] : 0; // we now have 'all' channel scan option
|
||||||
gEeprom.SCAN_LIST_DEFAULT = (Data[0] < 3) ? Data[0] : false; // we now have 'all' channel scan option
|
for (unsigned int i = 0; i < 2; i++)
|
||||||
for (i = 0; i < 2; i++)
|
|
||||||
{
|
{
|
||||||
const unsigned int j = 1 + (i * 3);
|
const unsigned int j = 1 + (i * 3);
|
||||||
gEeprom.SCAN_LIST_ENABLED[i] = (Data[j + 0] < 2) ? Data[j] : false;
|
gEeprom.SCAN_LIST_ENABLED[i] = (Data[j + 0] < 2) ? Data[j] : false;
|
||||||
@@ -249,13 +240,13 @@ void SETTINGS_InitEEPROM(void)
|
|||||||
gSetting_350EN = (Data[5] < 2) ? Data[5] : true;
|
gSetting_350EN = (Data[5] < 2) ? Data[5] : true;
|
||||||
gSetting_ScrambleEnable = (Data[6] < 2) ? Data[6] : true;
|
gSetting_ScrambleEnable = (Data[6] < 2) ? Data[6] : true;
|
||||||
//gSetting_TX_EN = (Data[7] & (1u << 0)) ? true : false;
|
//gSetting_TX_EN = (Data[7] & (1u << 0)) ? true : false;
|
||||||
gSetting_live_DTMF_decoder = (Data[7] & (1u << 1)) ? true : false;
|
gSetting_live_DTMF_decoder = !!(Data[7] & (1u << 1));
|
||||||
gSetting_battery_text = (((Data[7] >> 2) & 3u) <= 2) ? (Data[7] >> 2) & 3 : 2;
|
gSetting_battery_text = (((Data[7] >> 2) & 3u) <= 2) ? (Data[7] >> 2) & 3 : 2;
|
||||||
#ifdef ENABLE_AUDIO_BAR
|
#ifdef ENABLE_AUDIO_BAR
|
||||||
gSetting_mic_bar = (Data[7] & (1u << 4)) ? true : false;
|
gSetting_mic_bar = !!(Data[7] & (1u << 4));
|
||||||
#endif
|
#endif
|
||||||
#ifdef ENABLE_AM_FIX
|
#ifdef ENABLE_AM_FIX
|
||||||
gSetting_AM_fix = (Data[7] & (1u << 5)) ? true : false;
|
gSetting_AM_fix = !!(Data[7] & (1u << 5));
|
||||||
#endif
|
#endif
|
||||||
gSetting_backlight_on_tx_rx = (Data[7] >> 6) & 3u;
|
gSetting_backlight_on_tx_rx = (Data[7] >> 6) & 3u;
|
||||||
|
|
||||||
@@ -278,7 +269,7 @@ void SETTINGS_InitEEPROM(void)
|
|||||||
// 0F30..0F3F
|
// 0F30..0F3F
|
||||||
EEPROM_ReadBuffer(0x0F30, gCustomAesKey, sizeof(gCustomAesKey));
|
EEPROM_ReadBuffer(0x0F30, gCustomAesKey, sizeof(gCustomAesKey));
|
||||||
bHasCustomAesKey = false;
|
bHasCustomAesKey = false;
|
||||||
for (i = 0; i < ARRAY_SIZE(gCustomAesKey); i++)
|
for (unsigned int i = 0; i < ARRAY_SIZE(gCustomAesKey); i++)
|
||||||
{
|
{
|
||||||
if (gCustomAesKey[i] != 0xFFFFFFFFu)
|
if (gCustomAesKey[i] != 0xFFFFFFFFu)
|
||||||
{
|
{
|
||||||
@@ -361,7 +352,7 @@ void SETTINGS_FetchChannelName(char *s, const int channel)
|
|||||||
if (s == NULL)
|
if (s == NULL)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
memset(s, 0, 11); // 's' had better be large enough !
|
s[0] = 0;
|
||||||
|
|
||||||
if (channel < 0)
|
if (channel < 0)
|
||||||
return;
|
return;
|
||||||
@@ -369,8 +360,7 @@ void SETTINGS_FetchChannelName(char *s, const int channel)
|
|||||||
if (!RADIO_CheckValidChannel(channel, false, 0))
|
if (!RADIO_CheckValidChannel(channel, false, 0))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
EEPROM_ReadBuffer(0x0F50 + (channel * 16), s + 0, 8);
|
EEPROM_ReadBuffer(0x0F50 + (channel * 16), s, 10);
|
||||||
EEPROM_ReadBuffer(0x0F58 + (channel * 16), s + 8, 2);
|
|
||||||
|
|
||||||
int i;
|
int i;
|
||||||
for (i = 0; i < 10; i++)
|
for (i = 0; i < 10; i++)
|
||||||
@@ -429,25 +419,28 @@ void SETTINGS_FactoryReset(bool bIsAll)
|
|||||||
}
|
}
|
||||||
|
|
||||||
#ifdef ENABLE_FMRADIO
|
#ifdef ENABLE_FMRADIO
|
||||||
void SETTINGS_SaveFM(void)
|
void SETTINGS_SaveFM(void)
|
||||||
{
|
{
|
||||||
unsigned int i;
|
union {
|
||||||
|
struct {
|
||||||
|
uint16_t selFreq;
|
||||||
|
uint8_t selChn;
|
||||||
|
uint8_t isMrMode:1;
|
||||||
|
uint8_t band:2;
|
||||||
|
//uint8_t space:2;
|
||||||
|
};
|
||||||
|
uint8_t __raw[8];
|
||||||
|
} __attribute__((packed)) fmCfg;
|
||||||
|
|
||||||
struct
|
memset(fmCfg.__raw, 0xFF, sizeof(fmCfg.__raw));
|
||||||
{
|
fmCfg.selChn = gEeprom.FM_SelectedChannel;
|
||||||
uint16_t Frequency;
|
fmCfg.selFreq = gEeprom.FM_SelectedFrequency;
|
||||||
uint8_t Channel;
|
fmCfg.isMrMode = gEeprom.FM_IsMrMode;
|
||||||
bool IsChannelSelected;
|
fmCfg.band = gEeprom.FM_Band;
|
||||||
uint8_t Padding[4];
|
//fmCfg.space = gEeprom.FM_Space;
|
||||||
} State;
|
EEPROM_WriteBuffer(0x0E88, fmCfg.__raw);
|
||||||
|
|
||||||
memset(&State, 0xFF, sizeof(State));
|
for (unsigned i = 0; i < 5; i++)
|
||||||
State.Channel = gEeprom.FM_SelectedChannel;
|
|
||||||
State.Frequency = gEeprom.FM_SelectedFrequency;
|
|
||||||
State.IsChannelSelected = gEeprom.FM_IsMrMode;
|
|
||||||
|
|
||||||
EEPROM_WriteBuffer(0x0E88, &State);
|
|
||||||
for (i = 0; i < 5; i++)
|
|
||||||
EEPROM_WriteBuffer(0x0E40 + (i * 8), &gFM_Channels[i * 4]);
|
EEPROM_WriteBuffer(0x0E40 + (i * 8), &gFM_Channels[i * 4]);
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
@@ -603,62 +596,60 @@ void SETTINGS_SaveSettings(void)
|
|||||||
|
|
||||||
void SETTINGS_SaveChannel(uint8_t Channel, uint8_t VFO, const VFO_Info_t *pVFO, uint8_t Mode)
|
void SETTINGS_SaveChannel(uint8_t Channel, uint8_t VFO, const VFO_Info_t *pVFO, uint8_t Mode)
|
||||||
{
|
{
|
||||||
#ifdef ENABLE_NOAA
|
#ifdef ENABLE_NOAA
|
||||||
if (!IS_NOAA_CHANNEL(Channel))
|
if (IS_NOAA_CHANNEL(Channel))
|
||||||
#endif
|
return;
|
||||||
{
|
|
||||||
uint16_t OffsetVFO = Channel * 16;
|
|
||||||
|
|
||||||
if (!IS_MR_CHANNEL(Channel))
|
|
||||||
{ // it's a VFO, not a channel
|
|
||||||
OffsetVFO = (VFO == 0) ? 0x0C80 : 0x0C90;
|
|
||||||
OffsetVFO += (Channel - FREQ_CHANNEL_FIRST) * 32;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (Mode >= 2 || !IS_MR_CHANNEL(Channel))
|
|
||||||
{ // copy VFO to a channel
|
|
||||||
|
|
||||||
union {
|
|
||||||
uint8_t _8[8];
|
|
||||||
uint32_t _32[2];
|
|
||||||
} State;
|
|
||||||
|
|
||||||
State._32[0] = pVFO->freq_config_RX.Frequency;
|
|
||||||
State._32[1] = pVFO->TX_OFFSET_FREQUENCY;
|
|
||||||
EEPROM_WriteBuffer(OffsetVFO + 0, State._32);
|
|
||||||
|
|
||||||
State._8[0] = pVFO->freq_config_RX.Code;
|
|
||||||
State._8[1] = pVFO->freq_config_TX.Code;
|
|
||||||
State._8[2] = (pVFO->freq_config_TX.CodeType << 4) | pVFO->freq_config_RX.CodeType;
|
|
||||||
State._8[3] = (pVFO->Modulation << 4) | pVFO->TX_OFFSET_FREQUENCY_DIRECTION;
|
|
||||||
State._8[4] = 0
|
|
||||||
| (pVFO->BUSY_CHANNEL_LOCK << 4)
|
|
||||||
| (pVFO->OUTPUT_POWER << 2)
|
|
||||||
| (pVFO->CHANNEL_BANDWIDTH << 1)
|
|
||||||
| (pVFO->FrequencyReverse << 0);
|
|
||||||
State._8[5] = ((pVFO->DTMF_PTT_ID_TX_MODE & 7u) << 1)
|
|
||||||
#ifdef ENABLE_DTMF_CALLING
|
|
||||||
| ((pVFO->DTMF_DECODING_ENABLE & 1u) << 0)
|
|
||||||
#endif
|
#endif
|
||||||
;
|
|
||||||
State._8[6] = pVFO->STEP_SETTING;
|
|
||||||
State._8[7] = pVFO->SCRAMBLING_TYPE;
|
|
||||||
EEPROM_WriteBuffer(OffsetVFO + 8, State._8);
|
|
||||||
|
|
||||||
SETTINGS_UpdateChannel(Channel, pVFO, true);
|
uint16_t OffsetVFO = Channel * 16;
|
||||||
|
|
||||||
if (IS_MR_CHANNEL(Channel)) {
|
if (IS_FREQ_CHANNEL(Channel)) { // it's a VFO, not a channel
|
||||||
#ifndef ENABLE_KEEP_MEM_NAME
|
OffsetVFO = (VFO == 0) ? 0x0C80 : 0x0C90;
|
||||||
// clear/reset the channel name
|
OffsetVFO += (Channel - FREQ_CHANNEL_FIRST) * 32;
|
||||||
SETTINGS_SaveChannelName(Channel, "");
|
}
|
||||||
#else
|
|
||||||
if (Mode >= 3) {
|
if (Mode >= 2 || IS_FREQ_CHANNEL(Channel)) { // copy VFO to a channel
|
||||||
SETTINGS_SaveChannelName(Channel, pVFO->Name);
|
union {
|
||||||
}
|
uint8_t _8[8];
|
||||||
#endif
|
uint32_t _32[2];
|
||||||
|
} State;
|
||||||
|
|
||||||
|
State._32[0] = pVFO->freq_config_RX.Frequency;
|
||||||
|
State._32[1] = pVFO->TX_OFFSET_FREQUENCY;
|
||||||
|
EEPROM_WriteBuffer(OffsetVFO + 0, State._32);
|
||||||
|
|
||||||
|
State._8[0] = pVFO->freq_config_RX.Code;
|
||||||
|
State._8[1] = pVFO->freq_config_TX.Code;
|
||||||
|
State._8[2] = (pVFO->freq_config_TX.CodeType << 4) | pVFO->freq_config_RX.CodeType;
|
||||||
|
State._8[3] = (pVFO->Modulation << 4) | pVFO->TX_OFFSET_FREQUENCY_DIRECTION;
|
||||||
|
State._8[4] = 0
|
||||||
|
| (pVFO->BUSY_CHANNEL_LOCK << 4)
|
||||||
|
| (pVFO->OUTPUT_POWER << 2)
|
||||||
|
| (pVFO->CHANNEL_BANDWIDTH << 1)
|
||||||
|
| (pVFO->FrequencyReverse << 0);
|
||||||
|
State._8[5] = ((pVFO->DTMF_PTT_ID_TX_MODE & 7u) << 1)
|
||||||
|
#ifdef ENABLE_DTMF_CALLING
|
||||||
|
| ((pVFO->DTMF_DECODING_ENABLE & 1u) << 0)
|
||||||
|
#endif
|
||||||
|
;
|
||||||
|
State._8[6] = pVFO->STEP_SETTING;
|
||||||
|
State._8[7] = pVFO->SCRAMBLING_TYPE;
|
||||||
|
EEPROM_WriteBuffer(OffsetVFO + 8, State._8);
|
||||||
|
|
||||||
|
SETTINGS_UpdateChannel(Channel, pVFO, true);
|
||||||
|
|
||||||
|
if (IS_MR_CHANNEL(Channel)) {
|
||||||
|
#ifndef ENABLE_KEEP_MEM_NAME
|
||||||
|
// clear/reset the channel name
|
||||||
|
SETTINGS_SaveChannelName(Channel, "");
|
||||||
|
#else
|
||||||
|
if (Mode >= 3) {
|
||||||
|
SETTINGS_SaveChannelName(Channel, pVFO->Name);
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void SETTINGS_SaveBatteryCalibration(const uint16_t * batteryCalibration)
|
void SETTINGS_SaveBatteryCalibration(const uint16_t * batteryCalibration)
|
||||||
@@ -674,9 +665,8 @@ void SETTINGS_SaveBatteryCalibration(const uint16_t * batteryCalibration)
|
|||||||
void SETTINGS_SaveChannelName(uint8_t channel, const char * name)
|
void SETTINGS_SaveChannelName(uint8_t channel, const char * name)
|
||||||
{
|
{
|
||||||
uint16_t offset = channel * 16;
|
uint16_t offset = channel * 16;
|
||||||
uint8_t buf[16];
|
uint8_t buf[16] = {0};
|
||||||
memset(&buf, 0x00, sizeof(buf));
|
memcpy(buf, name, MIN(strlen(name), 10u));
|
||||||
memcpy(buf, name, MIN(strlen(name),10u));
|
|
||||||
EEPROM_WriteBuffer(0x0F50 + offset, buf);
|
EEPROM_WriteBuffer(0x0F50 + offset, buf);
|
||||||
EEPROM_WriteBuffer(0x0F58 + offset, buf + 8);
|
EEPROM_WriteBuffer(0x0F58 + offset, buf + 8);
|
||||||
}
|
}
|
||||||
@@ -723,7 +713,7 @@ void SETTINGS_UpdateChannel(uint8_t channel, const VFO_Info_t *pVFO, bool keep)
|
|||||||
|
|
||||||
void SETTINGS_WriteBuildOptions(void)
|
void SETTINGS_WriteBuildOptions(void)
|
||||||
{
|
{
|
||||||
uint8_t buf[8]= {};
|
uint8_t buf[8] = {0};
|
||||||
buf[0] = 0
|
buf[0] = 0
|
||||||
#ifdef ENABLE_FMRADIO
|
#ifdef ENABLE_FMRADIO
|
||||||
| (1 << 0)
|
| (1 << 0)
|
||||||
@@ -764,6 +754,12 @@ buf[1] = 0
|
|||||||
#ifdef ENABLE_BLMIN_TMP_OFF
|
#ifdef ENABLE_BLMIN_TMP_OFF
|
||||||
| (1 << 3)
|
| (1 << 3)
|
||||||
#endif
|
#endif
|
||||||
|
#ifdef ENABLE_AM_FIX
|
||||||
|
| (1 << 4)
|
||||||
|
#endif
|
||||||
|
#ifdef ENABLE_SPECTRUM
|
||||||
|
| (1 << 5)
|
||||||
|
#endif
|
||||||
;
|
;
|
||||||
EEPROM_WriteBuffer(0x1FF0, buf);
|
EEPROM_WriteBuffer(0x1FF0, buf);
|
||||||
}
|
}
|
||||||
41
settings.h
@@ -90,6 +90,7 @@ enum ACTION_OPT_t {
|
|||||||
ACTION_OPT_VFO_MR,
|
ACTION_OPT_VFO_MR,
|
||||||
ACTION_OPT_SWITCH_DEMODUL,
|
ACTION_OPT_SWITCH_DEMODUL,
|
||||||
ACTION_OPT_BLMIN_TMP_OFF, //BackLight Minimum Temporay OFF
|
ACTION_OPT_BLMIN_TMP_OFF, //BackLight Minimum Temporay OFF
|
||||||
|
ACTION_OPT_SPECTRUM,
|
||||||
ACTION_OPT_LEN
|
ACTION_OPT_LEN
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -128,9 +129,9 @@ typedef struct {
|
|||||||
uint8_t ScreenChannel[2]; // current channels set in the radio (memory or frequency channels)
|
uint8_t ScreenChannel[2]; // current channels set in the radio (memory or frequency channels)
|
||||||
uint8_t FreqChannel[2]; // last frequency channels used
|
uint8_t FreqChannel[2]; // last frequency channels used
|
||||||
uint8_t MrChannel[2]; // last memory channels used
|
uint8_t MrChannel[2]; // last memory channels used
|
||||||
#ifdef ENABLE_NOAA
|
#ifdef ENABLE_NOAA
|
||||||
uint8_t NoaaChannel[2];
|
uint8_t NoaaChannel[2];
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// The actual VFO index (0-upper/1-lower) that is now used for RX,
|
// The actual VFO index (0-upper/1-lower) that is now used for RX,
|
||||||
// It is being alternated by dual watch, and flipped by crossband
|
// It is being alternated by dual watch, and flipped by crossband
|
||||||
@@ -143,23 +144,23 @@ typedef struct {
|
|||||||
uint8_t field7_0xa;
|
uint8_t field7_0xa;
|
||||||
uint8_t field8_0xb;
|
uint8_t field8_0xb;
|
||||||
|
|
||||||
#ifdef ENABLE_FMRADIO
|
#ifdef ENABLE_FMRADIO
|
||||||
uint16_t FM_SelectedFrequency;
|
uint16_t FM_SelectedFrequency;
|
||||||
uint8_t FM_SelectedChannel;
|
uint8_t FM_SelectedChannel;
|
||||||
bool FM_IsMrMode;
|
bool FM_IsMrMode;
|
||||||
uint16_t FM_FrequencyPlaying;
|
uint16_t FM_FrequencyPlaying;
|
||||||
uint16_t FM_LowerLimit;
|
uint8_t FM_Band : 2;
|
||||||
uint16_t FM_UpperLimit;
|
//uint8_t FM_Space : 2;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
uint8_t SQUELCH_LEVEL;
|
uint8_t SQUELCH_LEVEL;
|
||||||
uint8_t TX_TIMEOUT_TIMER;
|
uint8_t TX_TIMEOUT_TIMER;
|
||||||
bool KEY_LOCK;
|
bool KEY_LOCK;
|
||||||
bool VOX_SWITCH;
|
bool VOX_SWITCH;
|
||||||
uint8_t VOX_LEVEL;
|
uint8_t VOX_LEVEL;
|
||||||
#ifdef ENABLE_VOICE
|
#ifdef ENABLE_VOICE
|
||||||
VOICE_Prompt_t VOICE_PROMPT;
|
VOICE_Prompt_t VOICE_PROMPT;
|
||||||
#endif
|
#endif
|
||||||
bool BEEP_CONTROL;
|
bool BEEP_CONTROL;
|
||||||
uint8_t CHANNEL_DISPLAY_MODE;
|
uint8_t CHANNEL_DISPLAY_MODE;
|
||||||
bool TAIL_TONE_ELIMINATION;
|
bool TAIL_TONE_ELIMINATION;
|
||||||
@@ -181,9 +182,9 @@ typedef struct {
|
|||||||
uint8_t field38_0x33;
|
uint8_t field38_0x33;
|
||||||
|
|
||||||
bool AUTO_KEYPAD_LOCK;
|
bool AUTO_KEYPAD_LOCK;
|
||||||
#if defined(ENABLE_ALARM) || defined(ENABLE_TX1750)
|
#if defined(ENABLE_ALARM) || defined(ENABLE_TX1750)
|
||||||
ALARM_Mode_t ALARM_MODE;
|
ALARM_Mode_t ALARM_MODE;
|
||||||
#endif
|
#endif
|
||||||
POWER_OnDisplayMode_t POWER_ON_DISPLAY_MODE;
|
POWER_OnDisplayMode_t POWER_ON_DISPLAY_MODE;
|
||||||
ROGER_Mode_t ROGER;
|
ROGER_Mode_t ROGER;
|
||||||
uint8_t REPEATER_TAIL_TONE_ELIMINATION;
|
uint8_t REPEATER_TAIL_TONE_ELIMINATION;
|
||||||
@@ -225,9 +226,9 @@ typedef struct {
|
|||||||
bool PERMIT_REMOTE_KILL;
|
bool PERMIT_REMOTE_KILL;
|
||||||
#endif
|
#endif
|
||||||
int16_t BK4819_XTAL_FREQ_LOW;
|
int16_t BK4819_XTAL_FREQ_LOW;
|
||||||
#ifdef ENABLE_NOAA
|
#ifdef ENABLE_NOAA
|
||||||
bool NOAA_AUTO_SCAN;
|
bool NOAA_AUTO_SCAN;
|
||||||
#endif
|
#endif
|
||||||
uint8_t VOLUME_GAIN;
|
uint8_t VOLUME_GAIN;
|
||||||
uint8_t DAC_GAIN;
|
uint8_t DAC_GAIN;
|
||||||
|
|
||||||
|
|||||||
40
ui/aircopy.c
@@ -29,41 +29,41 @@
|
|||||||
|
|
||||||
void UI_DisplayAircopy(void)
|
void UI_DisplayAircopy(void)
|
||||||
{
|
{
|
||||||
char String[16];
|
char String[16] = { 0 };
|
||||||
|
char *pPrintStr = { 0 };
|
||||||
|
|
||||||
memset(gFrameBuffer, 0, sizeof(gFrameBuffer));
|
UI_DisplayClear();
|
||||||
|
|
||||||
if (gAircopyState == AIRCOPY_READY)
|
if (gAircopyState == AIRCOPY_READY) {
|
||||||
strcpy(String, "AIR COPY(RDY)");
|
pPrintStr = "AIR COPY(RDY)";
|
||||||
else
|
} else if (gAircopyState == AIRCOPY_TRANSFER) {
|
||||||
if (gAircopyState == AIRCOPY_TRANSFER)
|
pPrintStr = "AIR COPY";
|
||||||
strcpy(String, "AIR COPY");
|
} else {
|
||||||
else
|
pPrintStr = "AIR COPY(CMP)";
|
||||||
strcpy(String, "AIR COPY(CMP)");
|
}
|
||||||
UI_PrintString(String, 2, 127, 0, 8);
|
|
||||||
|
|
||||||
if (gInputBoxIndex == 0)
|
UI_PrintString(pPrintStr, 2, 127, 0, 8);
|
||||||
{
|
|
||||||
|
if (gInputBoxIndex == 0) {
|
||||||
uint32_t frequency = gRxVfo->freq_config_RX.Frequency;
|
uint32_t frequency = gRxVfo->freq_config_RX.Frequency;
|
||||||
sprintf(String, "%3u.%05u", frequency / 100000, frequency % 100000);
|
sprintf(String, "%3u.%05u", frequency / 100000, frequency % 100000);
|
||||||
// show the remaining 2 small frequency digits
|
// show the remaining 2 small frequency digits
|
||||||
UI_PrintStringSmall(String + 7, 97, 0, 3);
|
UI_PrintStringSmallNormal(String + 7, 97, 0, 3);
|
||||||
String[7] = 0;
|
String[7] = 0;
|
||||||
// show the main large frequency digits
|
// show the main large frequency digits
|
||||||
UI_DisplayFrequency(String, 16, 2, false);
|
UI_DisplayFrequency(String, 16, 2, false);
|
||||||
}
|
} else {
|
||||||
else {
|
const char *ascii = INPUTBOX_GetAscii();
|
||||||
const char * ascii = INPUTBOX_GetAscii();
|
sprintf(String, "%.3s.%.3s", ascii, ascii + 3);
|
||||||
sprintf(String, "%.3s.%.3s",ascii, ascii + 3);
|
|
||||||
UI_DisplayFrequency(String, 16, 2, false);
|
UI_DisplayFrequency(String, 16, 2, false);
|
||||||
}
|
}
|
||||||
|
|
||||||
memset(String, 0, sizeof(String));
|
memset(String, 0, sizeof(String));
|
||||||
if (gAirCopyIsSendMode == 0)
|
if (gAirCopyIsSendMode == 0) {
|
||||||
sprintf(String, "RCV:%u E:%u", gAirCopyBlockNumber, gErrorsDuringAirCopy);
|
sprintf(String, "RCV:%u E:%u", gAirCopyBlockNumber, gErrorsDuringAirCopy);
|
||||||
else
|
} else if (gAirCopyIsSendMode == 1) {
|
||||||
if (gAirCopyIsSendMode == 1)
|
|
||||||
sprintf(String, "SND:%u", gAirCopyBlockNumber);
|
sprintf(String, "SND:%u", gAirCopyBlockNumber);
|
||||||
|
}
|
||||||
UI_PrintString(String, 2, 127, 4, 8);
|
UI_PrintString(String, 2, 127, 4, 8);
|
||||||
|
|
||||||
ST7565_BlitFullScreen();
|
ST7565_BlitFullScreen();
|
||||||
|
|||||||
35
ui/battery.c
@@ -21,30 +21,29 @@
|
|||||||
#include "driver/st7565.h"
|
#include "driver/st7565.h"
|
||||||
#include "functions.h"
|
#include "functions.h"
|
||||||
#include "ui/battery.h"
|
#include "ui/battery.h"
|
||||||
|
#include "../misc.h"
|
||||||
|
|
||||||
void UI_DrawBattery(uint8_t* bitmap, uint8_t level, uint8_t blink)
|
void UI_DrawBattery(uint8_t* bitmap, uint8_t level, uint8_t blink)
|
||||||
{
|
{
|
||||||
if (level < 2 && blink == 1) {
|
if (level < 2 && blink == 1) {
|
||||||
memset(bitmap, 0, sizeof(BITMAP_BatteryLevel1));
|
memset(bitmap, 0, sizeof(BITMAP_BatteryLevel1));
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
else
|
|
||||||
{
|
memcpy(bitmap, BITMAP_BatteryLevel1, sizeof(BITMAP_BatteryLevel1));
|
||||||
memmove(bitmap, BITMAP_BatteryLevel1, sizeof(BITMAP_BatteryLevel1));
|
|
||||||
if (level > 2)
|
if (level <= 2) {
|
||||||
{
|
return;
|
||||||
unsigned int i;
|
}
|
||||||
uint8_t bars = level - 2;
|
|
||||||
if (bars > 4)
|
const uint8_t bars = MIN(4, level - 2);
|
||||||
bars = 4;
|
|
||||||
for (i = 0; i < bars; i++)
|
for (int i = 0; i < bars; i++) {
|
||||||
{
|
#ifndef ENABLE_REVERSE_BAT_SYMBOL
|
||||||
#ifndef ENABLE_REVERSE_BAT_SYMBOL
|
memcpy(bitmap + sizeof(BITMAP_BatteryLevel1) - 4 - (i * 3), BITMAP_BatteryLevel, 2);
|
||||||
memcpy(bitmap + sizeof(BITMAP_BatteryLevel1) - 4 - (i * 3), BITMAP_BatteryLevel, 2);
|
#else
|
||||||
#else
|
memcpy(bitmap + 3 + (i * 3) + 0, BITMAP_BatteryLevel, 2);
|
||||||
memcpy(bitmap + 3 + (i * 3) + 0, BITMAP_BatteryLevel, 2);
|
#endif
|
||||||
#endif
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
106
ui/fmradio.c
@@ -19,6 +19,7 @@
|
|||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|
||||||
#include "app/fm.h"
|
#include "app/fm.h"
|
||||||
|
#include "driver/bk1080.h"
|
||||||
#include "driver/st7565.h"
|
#include "driver/st7565.h"
|
||||||
#include "external/printf/printf.h"
|
#include "external/printf/printf.h"
|
||||||
#include "misc.h"
|
#include "misc.h"
|
||||||
@@ -30,83 +31,70 @@
|
|||||||
|
|
||||||
void UI_DisplayFM(void)
|
void UI_DisplayFM(void)
|
||||||
{
|
{
|
||||||
unsigned int i;
|
char String[16] = {0};
|
||||||
char String[16];
|
char *pPrintStr = String;
|
||||||
|
UI_DisplayClear();
|
||||||
|
|
||||||
memset(gFrameBuffer, 0, sizeof(gFrameBuffer));
|
UI_PrintString("FM", 2, 0, 0, 8);
|
||||||
|
|
||||||
memset(String, 0, sizeof(String));
|
sprintf(String, "%d%s-%dM",
|
||||||
strcpy(String, "FM");
|
BK1080_GetFreqLoLimit(gEeprom.FM_Band)/10,
|
||||||
UI_PrintString(String, 0, 127, 0, 12);
|
gEeprom.FM_Band == 0 ? ".5" : "",
|
||||||
|
BK1080_GetFreqHiLimit(gEeprom.FM_Band)/10
|
||||||
|
);
|
||||||
|
|
||||||
memset(String, 0, sizeof(String));
|
UI_PrintStringSmallNormal(String, 1, 0, 6);
|
||||||
if (gAskToSave)
|
|
||||||
{
|
//uint8_t spacings[] = {20,10,5};
|
||||||
strcpy(String, "SAVE?");
|
//sprintf(String, "%d0k", spacings[gEeprom.FM_Space % 3]);
|
||||||
}
|
//UI_PrintStringSmallNormal(String, 127 - 4*7, 0, 6);
|
||||||
else
|
|
||||||
if (gAskToDelete)
|
if (gAskToSave) {
|
||||||
{
|
pPrintStr = "SAVE?";
|
||||||
strcpy(String, "DEL?");
|
} else if (gAskToDelete) {
|
||||||
}
|
pPrintStr = "DEL?";
|
||||||
else
|
} else if (gFM_ScanState == FM_SCAN_OFF) {
|
||||||
{
|
if (gEeprom.FM_IsMrMode) {
|
||||||
if (gFM_ScanState == FM_SCAN_OFF)
|
sprintf(String, "MR(CH%02u)", gEeprom.FM_SelectedChannel + 1);
|
||||||
{
|
pPrintStr = String;
|
||||||
if (!gEeprom.FM_IsMrMode)
|
} else {
|
||||||
{
|
pPrintStr = "VFO";
|
||||||
for (i = 0; i < 20; i++)
|
for (unsigned int i = 0; i < 20; i++) {
|
||||||
{
|
if (gEeprom.FM_FrequencyPlaying == gFM_Channels[i]) {
|
||||||
if (gEeprom.FM_FrequencyPlaying == gFM_Channels[i])
|
sprintf(String, "VFO(CH%02u)", i + 1);
|
||||||
{
|
pPrintStr = String;
|
||||||
sprintf(String, "VFO(CH%02u)", i + 1);
|
break;
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (i == 20)
|
|
||||||
strcpy(String, "VFO");
|
|
||||||
}
|
}
|
||||||
else
|
|
||||||
sprintf(String, "MR(CH%02u)", gEeprom.FM_SelectedChannel + 1);
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
if (!gFM_AutoScan)
|
|
||||||
strcpy(String, "M-SCAN");
|
|
||||||
else
|
|
||||||
sprintf(String, "A-SCAN(%u)", gFM_ChannelPosition + 1);
|
|
||||||
}
|
}
|
||||||
|
} else if (gFM_AutoScan) {
|
||||||
|
sprintf(String, "A-SCAN(%u)", gFM_ChannelPosition + 1);
|
||||||
|
pPrintStr = String;
|
||||||
|
} else {
|
||||||
|
pPrintStr = "M-SCAN";
|
||||||
}
|
}
|
||||||
UI_PrintString(String, 0, 127, 2, 10);
|
|
||||||
|
UI_PrintString(pPrintStr, 0, 127, 3, 10); // memory, vfo, scan
|
||||||
|
|
||||||
memset(String, 0, sizeof(String));
|
memset(String, 0, sizeof(String));
|
||||||
if (gAskToSave || (gEeprom.FM_IsMrMode && gInputBoxIndex > 0))
|
if (gAskToSave || (gEeprom.FM_IsMrMode && gInputBoxIndex > 0)) {
|
||||||
{
|
|
||||||
UI_GenerateChannelString(String, gFM_ChannelPosition);
|
UI_GenerateChannelString(String, gFM_ChannelPosition);
|
||||||
}
|
} else if (gAskToDelete) {
|
||||||
else
|
sprintf(String, "CH-%02u", gEeprom.FM_SelectedChannel + 1);
|
||||||
if (!gAskToDelete)
|
} else {
|
||||||
{
|
if (gInputBoxIndex == 0) {
|
||||||
if (gInputBoxIndex == 0)
|
|
||||||
{
|
|
||||||
sprintf(String, "%3d.%d", gEeprom.FM_FrequencyPlaying / 10, gEeprom.FM_FrequencyPlaying % 10);
|
sprintf(String, "%3d.%d", gEeprom.FM_FrequencyPlaying / 10, gEeprom.FM_FrequencyPlaying % 10);
|
||||||
UI_DisplayFrequency(String, 32, 4, true);
|
} else {
|
||||||
}
|
|
||||||
else {
|
|
||||||
const char * ascii = INPUTBOX_GetAscii();
|
const char * ascii = INPUTBOX_GetAscii();
|
||||||
sprintf(String, "%.3s.%.1s",ascii, ascii + 3);
|
sprintf(String, "%.3s.%.1s",ascii, ascii + 3);
|
||||||
UI_DisplayFrequency(String, 32, 4, false);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
UI_DisplayFrequency(String, 36, 1, gInputBoxIndex == 0); // frequency
|
||||||
ST7565_BlitFullScreen();
|
ST7565_BlitFullScreen();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
else
|
|
||||||
{
|
UI_PrintString(String, 0, 127, 1, 10);
|
||||||
sprintf(String, "CH-%02u", gEeprom.FM_SelectedChannel + 1);
|
|
||||||
}
|
|
||||||
UI_PrintString(String, 0, 127, 4, 10);
|
|
||||||
|
|
||||||
ST7565_BlitFullScreen();
|
ST7565_BlitFullScreen();
|
||||||
}
|
}
|
||||||
|
|||||||
132
ui/helper.c
@@ -46,21 +46,36 @@ void UI_GenerateChannelString(char *pString, const uint8_t Channel)
|
|||||||
|
|
||||||
void UI_GenerateChannelStringEx(char *pString, const bool bShowPrefix, const uint8_t ChannelNumber)
|
void UI_GenerateChannelStringEx(char *pString, const bool bShowPrefix, const uint8_t ChannelNumber)
|
||||||
{
|
{
|
||||||
if (gInputBoxIndex > 0)
|
if (gInputBoxIndex > 0) {
|
||||||
{
|
for (unsigned int i = 0; i < 3; i++) {
|
||||||
unsigned int i;
|
|
||||||
for (i = 0; i < 3; i++)
|
|
||||||
pString[i] = (gInputBox[i] == 10) ? '-' : gInputBox[i] + '0';
|
pString[i] = (gInputBox[i] == 10) ? '-' : gInputBox[i] + '0';
|
||||||
|
}
|
||||||
|
|
||||||
|
pString[3] = 0;
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (bShowPrefix)
|
if (bShowPrefix) {
|
||||||
|
// BUG here? Prefixed NULLs are allowed
|
||||||
sprintf(pString, "CH-%03u", ChannelNumber + 1);
|
sprintf(pString, "CH-%03u", ChannelNumber + 1);
|
||||||
else
|
} else if (ChannelNumber == 0xFF) {
|
||||||
if (ChannelNumber == 0xFF)
|
|
||||||
strcpy(pString, "NULL");
|
strcpy(pString, "NULL");
|
||||||
else
|
} else {
|
||||||
sprintf(pString, "%03u", ChannelNumber + 1);
|
sprintf(pString, "%03u", ChannelNumber + 1);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void UI_PrintStringBuffer(const char *pString, uint8_t * buffer, uint32_t char_width, const uint8_t *font)
|
||||||
|
{
|
||||||
|
const size_t Length = strlen(pString);
|
||||||
|
const unsigned int char_spacing = char_width + 1;
|
||||||
|
for (size_t i = 0; i < Length; i++) {
|
||||||
|
const unsigned int index = pString[i] - ' ' - 1;
|
||||||
|
if (pString[i] > ' ' && pString[i] < 127) {
|
||||||
|
const uint32_t offset = i * char_spacing + 1;
|
||||||
|
memcpy(buffer + offset, font + index * char_width, char_width);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void UI_PrintString(const char *pString, uint8_t Start, uint8_t End, uint8_t Line, uint8_t Width)
|
void UI_PrintString(const char *pString, uint8_t Start, uint8_t End, uint8_t Line, uint8_t Width)
|
||||||
@@ -77,74 +92,57 @@ void UI_PrintString(const char *pString, uint8_t Start, uint8_t End, uint8_t Lin
|
|||||||
if (pString[i] > ' ' && pString[i] < 127)
|
if (pString[i] > ' ' && pString[i] < 127)
|
||||||
{
|
{
|
||||||
const unsigned int index = pString[i] - ' ' - 1;
|
const unsigned int index = pString[i] - ' ' - 1;
|
||||||
memmove(gFrameBuffer[Line + 0] + ofs, &gFontBig[index][0], 7);
|
memcpy(gFrameBuffer[Line + 0] + ofs, &gFontBig[index][0], 7);
|
||||||
memmove(gFrameBuffer[Line + 1] + ofs, &gFontBig[index][7], 7);
|
memcpy(gFrameBuffer[Line + 1] + ofs, &gFontBig[index][7], 7);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void UI_PrintStringSmall(const char *pString, uint8_t Start, uint8_t End, uint8_t Line)
|
void UI_PrintStringSmall(const char *pString, uint8_t Start, uint8_t End, uint8_t Line, uint8_t char_width, const uint8_t *font)
|
||||||
{
|
{
|
||||||
const size_t Length = strlen(pString);
|
const size_t Length = strlen(pString);
|
||||||
size_t i;
|
|
||||||
|
|
||||||
const unsigned int char_width = ARRAY_SIZE(gFontSmall[0]);
|
|
||||||
const unsigned int char_spacing = char_width + 1;
|
const unsigned int char_spacing = char_width + 1;
|
||||||
|
|
||||||
if (End > Start)
|
if (End > Start) {
|
||||||
Start += (((End - Start) - (Length * char_spacing)) + 1) / 2;
|
Start += (((End - Start) - Length * char_spacing) + 1) / 2;
|
||||||
|
|
||||||
|
|
||||||
uint8_t *pFb = gFrameBuffer[Line] + Start;
|
|
||||||
for (i = 0; i < Length; i++)
|
|
||||||
{
|
|
||||||
if (pString[i] > ' ')
|
|
||||||
{
|
|
||||||
const unsigned int index = (unsigned int)pString[i] - ' ' - 1;
|
|
||||||
if (index < ARRAY_SIZE(gFontSmall))
|
|
||||||
memmove(pFb + (i * char_spacing) + 1, &gFontSmall[index], char_width);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
UI_PrintStringBuffer(pString, gFrameBuffer[Line] + Start, char_width, font);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void UI_PrintStringSmallNormal(const char *pString, uint8_t Start, uint8_t End, uint8_t Line)
|
||||||
|
{
|
||||||
|
UI_PrintStringSmall(pString, Start, End, Line, ARRAY_SIZE(gFontSmall[0]), (const uint8_t *)gFontSmall);
|
||||||
|
}
|
||||||
|
|
||||||
|
void UI_PrintStringSmallBold(const char *pString, uint8_t Start, uint8_t End, uint8_t Line)
|
||||||
|
{
|
||||||
#ifdef ENABLE_SMALL_BOLD
|
#ifdef ENABLE_SMALL_BOLD
|
||||||
void UI_PrintStringSmallBold(const char *pString, uint8_t Start, uint8_t End, uint8_t Line)
|
const uint8_t *font = (uint8_t *)gFontSmallBold;
|
||||||
{
|
const uint8_t char_width = ARRAY_SIZE(gFontSmallBold[0]);
|
||||||
const size_t Length = strlen(pString);
|
#else
|
||||||
size_t i;
|
const uint8_t *font = (uint8_t *)gFontSmall;
|
||||||
|
const uint8_t char_width = ARRAY_SIZE(gFontSmall[0]);
|
||||||
if (End > Start)
|
|
||||||
Start += (((End - Start) - (Length * 8)) + 1) / 2;
|
|
||||||
|
|
||||||
const unsigned int char_width = ARRAY_SIZE(gFontSmallBold[0]);
|
|
||||||
const unsigned int char_spacing = char_width + 1;
|
|
||||||
uint8_t *pFb = gFrameBuffer[Line] + Start;
|
|
||||||
for (i = 0; i < Length; i++)
|
|
||||||
{
|
|
||||||
if (pString[i] > ' ')
|
|
||||||
{
|
|
||||||
const unsigned int index = (unsigned int)pString[i] - ' ' - 1;
|
|
||||||
if (index < ARRAY_SIZE(gFontSmallBold))
|
|
||||||
memmove(pFb + (i * char_spacing) + 1, &gFontSmallBold[index], char_width);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
void UI_PrintStringSmallBuffer(const char *pString, uint8_t *buffer)
|
UI_PrintStringSmall(pString, Start, End, Line, char_width, font);
|
||||||
|
}
|
||||||
|
|
||||||
|
void UI_PrintStringSmallBufferNormal(const char *pString, uint8_t * buffer)
|
||||||
{
|
{
|
||||||
size_t i;
|
UI_PrintStringBuffer(pString, buffer, ARRAY_SIZE(gFontSmall[0]), (uint8_t *)gFontSmall);
|
||||||
const unsigned int char_width = ARRAY_SIZE(gFontSmall[0]);
|
}
|
||||||
const unsigned int char_spacing = char_width + 1;
|
|
||||||
for (i = 0; i < strlen(pString); i++)
|
void UI_PrintStringSmallBufferBold(const char *pString, uint8_t * buffer)
|
||||||
{
|
{
|
||||||
if (pString[i] > ' ')
|
#ifdef ENABLE_SMALL_BOLD
|
||||||
{
|
const uint8_t *font = (uint8_t *)gFontSmallBold;
|
||||||
const unsigned int index = (unsigned int)pString[i] - ' ' - 1;
|
const uint8_t char_width = ARRAY_SIZE(gFontSmallBold[0]);
|
||||||
if (index < ARRAY_SIZE(gFontSmall))
|
#else
|
||||||
memmove(buffer + (i * char_spacing) + 1, &gFontSmall[index], char_width);
|
const uint8_t *font = (uint8_t *)gFontSmall;
|
||||||
}
|
const uint8_t char_width = ARRAY_SIZE(gFontSmall[0]);
|
||||||
}
|
#endif
|
||||||
|
UI_PrintStringBuffer(pString, buffer, char_width, font);
|
||||||
}
|
}
|
||||||
|
|
||||||
void UI_DisplayFrequency(const char *string, uint8_t X, uint8_t Y, bool center)
|
void UI_DisplayFrequency(const char *string, uint8_t X, uint8_t Y, bool center)
|
||||||
@@ -228,11 +226,10 @@ void UI_DrawRectangleBuffer(uint8_t (*buffer)[128], int16_t x1, int16_t y1, int1
|
|||||||
UI_DrawLineBuffer(buffer, x1,y2, x2,y2, black);
|
UI_DrawLineBuffer(buffer, x1,y2, x2,y2, black);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
void UI_DisplayPopup(const char *string)
|
void UI_DisplayPopup(const char *string)
|
||||||
{
|
{
|
||||||
for(uint8_t i = 0; i < 7; i++) {
|
UI_DisplayClear();
|
||||||
memset(gFrameBuffer[i], 0x00, 128);
|
|
||||||
}
|
|
||||||
|
|
||||||
// for(uint8_t i = 1; i < 5; i++) {
|
// for(uint8_t i = 1; i < 5; i++) {
|
||||||
// memset(gFrameBuffer[i]+8, 0x00, 111);
|
// memset(gFrameBuffer[i]+8, 0x00, 111);
|
||||||
@@ -249,5 +246,10 @@ void UI_DisplayPopup(const char *string)
|
|||||||
// }
|
// }
|
||||||
// DrawRectangle(9,9, 118,38, true);
|
// DrawRectangle(9,9, 118,38, true);
|
||||||
UI_PrintString(string, 9, 118, 2, 8);
|
UI_PrintString(string, 9, 118, 2, 8);
|
||||||
UI_PrintStringSmall("Press EXIT", 9, 118, 6);
|
UI_PrintStringSmallNormal("Press EXIT", 9, 118, 6);
|
||||||
|
}
|
||||||
|
|
||||||
|
void UI_DisplayClear()
|
||||||
|
{
|
||||||
|
memset(gFrameBuffer, 0, sizeof(gFrameBuffer));
|
||||||
}
|
}
|
||||||
13
ui/helper.h
@@ -23,13 +23,11 @@
|
|||||||
void UI_GenerateChannelString(char *pString, const uint8_t Channel);
|
void UI_GenerateChannelString(char *pString, const uint8_t Channel);
|
||||||
void UI_GenerateChannelStringEx(char *pString, const bool bShowPrefix, const uint8_t ChannelNumber);
|
void UI_GenerateChannelStringEx(char *pString, const bool bShowPrefix, const uint8_t ChannelNumber);
|
||||||
void UI_PrintString(const char *pString, uint8_t Start, uint8_t End, uint8_t Line, uint8_t Width);
|
void UI_PrintString(const char *pString, uint8_t Start, uint8_t End, uint8_t Line, uint8_t Width);
|
||||||
void UI_PrintStringSmall(const char *pString, uint8_t Start, uint8_t End, uint8_t Line);
|
void UI_PrintStringSmallNormal(const char *pString, uint8_t Start, uint8_t End, uint8_t Line);
|
||||||
#ifdef ENABLE_SMALL_BOLD
|
void UI_PrintStringSmallBold(const char *pString, uint8_t Start, uint8_t End, uint8_t Line);
|
||||||
void UI_PrintStringSmallBold(const char *pString, uint8_t Start, uint8_t End, uint8_t Line);
|
void UI_PrintStringSmallBufferNormal(const char *pString, uint8_t *buffer);
|
||||||
#endif
|
void UI_PrintStringSmallBufferBold(const char *pString, uint8_t * buffer);
|
||||||
void UI_PrintStringSmallBuffer(const char *pString, uint8_t *buffer);
|
|
||||||
void UI_DisplayFrequency(const char *string, uint8_t X, uint8_t Y, bool center);
|
void UI_DisplayFrequency(const char *string, uint8_t X, uint8_t Y, bool center);
|
||||||
#endif
|
|
||||||
|
|
||||||
void UI_DisplayPopup(const char *string);
|
void UI_DisplayPopup(const char *string);
|
||||||
|
|
||||||
@@ -37,3 +35,6 @@ void UI_DrawPixelBuffer(uint8_t (*buffer)[128], uint8_t x, uint8_t y, bool black
|
|||||||
void UI_DrawLineBuffer(uint8_t (*buffer)[128], int16_t x1, int16_t y1, int16_t x2, int16_t y2, bool black);
|
void UI_DrawLineBuffer(uint8_t (*buffer)[128], int16_t x1, int16_t y1, int16_t x2, int16_t y2, bool black);
|
||||||
void UI_DrawRectangleBuffer(uint8_t (*buffer)[128], int16_t x1, int16_t y1, int16_t x2, int16_t y2, bool black);
|
void UI_DrawRectangleBuffer(uint8_t (*buffer)[128], int16_t x1, int16_t y1, int16_t x2, int16_t y2, bool black);
|
||||||
|
|
||||||
|
void UI_DisplayClear();
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|||||||
@@ -35,10 +35,9 @@ static void Render(void)
|
|||||||
char String[7];
|
char String[7];
|
||||||
|
|
||||||
memset(gStatusLine, 0, sizeof(gStatusLine));
|
memset(gStatusLine, 0, sizeof(gStatusLine));
|
||||||
memset(gFrameBuffer, 0, sizeof(gFrameBuffer));
|
UI_DisplayClear();
|
||||||
|
|
||||||
strcpy(String, "LOCK");
|
UI_PrintString("LOCK", 0, 127, 1, 10);
|
||||||
UI_PrintString(String, 0, 127, 1, 10);
|
|
||||||
for (i = 0; i < 6; i++)
|
for (i = 0; i < 6; i++)
|
||||||
String[i] = (gInputBox[i] == 10) ? '-' : '*';
|
String[i] = (gInputBox[i] == 10) ? '-' : '*';
|
||||||
String[6] = 0;
|
String[6] = 0;
|
||||||
@@ -143,13 +142,14 @@ void UI_DisplayLock(void)
|
|||||||
gKeyReading0 = Key;
|
gKeyReading0 = Key;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifdef ENABLE_UART
|
||||||
if (UART_IsCommandAvailable())
|
if (UART_IsCommandAvailable())
|
||||||
{
|
{
|
||||||
__disable_irq();
|
__disable_irq();
|
||||||
UART_HandleCommand();
|
UART_HandleCommand();
|
||||||
__enable_irq();
|
__enable_irq();
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
if (gUpdateDisplay)
|
if (gUpdateDisplay)
|
||||||
{
|
{
|
||||||
Render();
|
Render();
|
||||||
|
|||||||
200
ui/main.c
@@ -19,7 +19,7 @@
|
|||||||
|
|
||||||
#include "app/chFrScanner.h"
|
#include "app/chFrScanner.h"
|
||||||
#include "app/dtmf.h"
|
#include "app/dtmf.h"
|
||||||
#ifdef ENABLE_AM_FIX_SHOW_DATA
|
#ifdef ENABLE_AM_FIX
|
||||||
#include "am_fix.h"
|
#include "am_fix.h"
|
||||||
#endif
|
#endif
|
||||||
#include "bitmaps.h"
|
#include "bitmaps.h"
|
||||||
@@ -37,8 +37,6 @@
|
|||||||
#include "ui/main.h"
|
#include "ui/main.h"
|
||||||
#include "ui/ui.h"
|
#include "ui/ui.h"
|
||||||
|
|
||||||
#include "debugging.h"
|
|
||||||
|
|
||||||
center_line_t center_line = CENTER_LINE_NONE;
|
center_line_t center_line = CENTER_LINE_NONE;
|
||||||
|
|
||||||
const int8_t dBmCorrTable[7] = {
|
const int8_t dBmCorrTable[7] = {
|
||||||
@@ -183,7 +181,7 @@ void DisplayRSSIBar(const bool now)
|
|||||||
0b00011000,
|
0b00011000,
|
||||||
};
|
};
|
||||||
|
|
||||||
if (gEeprom.KEY_LOCK && gKeypadLocked > 0)
|
if ((gEeprom.KEY_LOCK && gKeypadLocked > 0) || center_line != CENTER_LINE_RSSI)
|
||||||
return; // display is in use
|
return; // display is in use
|
||||||
|
|
||||||
if (gCurrentFunction == FUNCTION_TRANSMIT ||
|
if (gCurrentFunction == FUNCTION_TRANSMIT ||
|
||||||
@@ -219,7 +217,7 @@ void DisplayRSSIBar(const bool now)
|
|||||||
memcpy(p_line + 2 + 7*5, &plus, ARRAY_SIZE(plus));
|
memcpy(p_line + 2 + 7*5, &plus, ARRAY_SIZE(plus));
|
||||||
}
|
}
|
||||||
|
|
||||||
UI_PrintStringSmall(str, 2, 0, line);
|
UI_PrintStringSmallNormal(str, 2, 0, line);
|
||||||
DrawLevelBar(bar_x, line, s_level + overS9Bars);
|
DrawLevelBar(bar_x, line, s_level + overS9Bars);
|
||||||
if (now)
|
if (now)
|
||||||
ST7565_BlitLine(line);
|
ST7565_BlitLine(line);
|
||||||
@@ -250,7 +248,7 @@ void DisplayRSSIBar(const bool now)
|
|||||||
}
|
}
|
||||||
|
|
||||||
#ifdef ENABLE_AGC_SHOW_DATA
|
#ifdef ENABLE_AGC_SHOW_DATA
|
||||||
static void PrintAGC(bool now)
|
void UI_MAIN_PrintAGC(bool now)
|
||||||
{
|
{
|
||||||
char buf[20];
|
char buf[20];
|
||||||
memset(gFrameBuffer[3], 0, 128);
|
memset(gFrameBuffer[3], 0, 128);
|
||||||
@@ -282,7 +280,7 @@ static void PrintAGC(bool now)
|
|||||||
int16_t agcGain = lnaShortTab[agcGainReg.lnaS] + lnaTab[agcGainReg.lna] + mixerTab[agcGainReg.mixer] + pgaTab[agcGainReg.pga];
|
int16_t agcGain = lnaShortTab[agcGainReg.lnaS] + lnaTab[agcGainReg.lna] + mixerTab[agcGainReg.mixer] + pgaTab[agcGainReg.pga];
|
||||||
|
|
||||||
sprintf(buf, "%d%2d %2d %2d %3d", reg7e.agcEnab, reg7e.gainIdx, -agcGain, reg7e.agcSigStrength, BK4819_GetRSSI());
|
sprintf(buf, "%d%2d %2d %2d %3d", reg7e.agcEnab, reg7e.gainIdx, -agcGain, reg7e.agcSigStrength, BK4819_GetRSSI());
|
||||||
UI_PrintStringSmall(buf, 2, 0, 3);
|
UI_PrintStringSmallNormal(buf, 2, 0, 3);
|
||||||
if(now)
|
if(now)
|
||||||
ST7565_BlitLine(3);
|
ST7565_BlitLine(3);
|
||||||
}
|
}
|
||||||
@@ -292,17 +290,13 @@ void UI_MAIN_TimeSlice500ms(void)
|
|||||||
{
|
{
|
||||||
if(gScreenToDisplay==DISPLAY_MAIN) {
|
if(gScreenToDisplay==DISPLAY_MAIN) {
|
||||||
#ifdef ENABLE_AGC_SHOW_DATA
|
#ifdef ENABLE_AGC_SHOW_DATA
|
||||||
PrintAGC(true);
|
UI_MAIN_PrintAGC(true);
|
||||||
return;
|
return;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
const bool rx = (gCurrentFunction == FUNCTION_RECEIVE ||
|
if(FUNCTION_IsRx()) {
|
||||||
gCurrentFunction == FUNCTION_MONITOR ||
|
|
||||||
gCurrentFunction == FUNCTION_INCOMING);
|
|
||||||
|
|
||||||
|
|
||||||
if(rx)
|
|
||||||
DisplayRSSIBar(true);
|
DisplayRSSIBar(true);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -315,7 +309,7 @@ void UI_DisplayMain(void)
|
|||||||
center_line = CENTER_LINE_NONE;
|
center_line = CENTER_LINE_NONE;
|
||||||
|
|
||||||
// clear the screen
|
// clear the screen
|
||||||
memset(gFrameBuffer, 0, sizeof(gFrameBuffer));
|
UI_DisplayClear();
|
||||||
|
|
||||||
if(gLowBattery && !gLowBatteryConfirmed) {
|
if(gLowBattery && !gLowBatteryConfirmed) {
|
||||||
UI_DisplayPopup("LOW BATTERY");
|
UI_DisplayPopup("LOW BATTERY");
|
||||||
@@ -347,75 +341,71 @@ void UI_DisplayMain(void)
|
|||||||
{
|
{
|
||||||
#ifdef ENABLE_SCAN_RANGES
|
#ifdef ENABLE_SCAN_RANGES
|
||||||
if(gScanRangeStart) {
|
if(gScanRangeStart) {
|
||||||
UI_PrintString("ScnRng", 5, 0, line, 8);
|
UI_PrintString("ScnRng", 5, 0, line, 8);
|
||||||
sprintf(String, "%3u.%05u", gScanRangeStart / 100000, gScanRangeStart % 100000);
|
sprintf(String, "%3u.%05u", gScanRangeStart / 100000, gScanRangeStart % 100000);
|
||||||
UI_PrintStringSmall(String, 56, 0, line);
|
UI_PrintStringSmallNormal(String, 56, 0, line);
|
||||||
uint32_t frq = gEeprom.VfoInfo[vfo_num].pRX->Frequency;
|
sprintf(String, "%3u.%05u", gScanRangeStop / 100000, gScanRangeStop % 100000);
|
||||||
sprintf(String, "%3u.%05u", frq / 100000, frq % 100000);
|
UI_PrintStringSmallNormal(String, 56, 0, line + 1);
|
||||||
UI_PrintStringSmall(String, 56, 0, line + 1);
|
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
if (
|
if (gDTMF_InputMode
|
||||||
#ifdef ENABLE_DTMF_CALLING
|
#ifdef ENABLE_DTMF_CALLING
|
||||||
gDTMF_CallState != DTMF_CALL_STATE_NONE || gDTMF_IsTx ||
|
|| gDTMF_CallState != DTMF_CALL_STATE_NONE || gDTMF_IsTx
|
||||||
#endif
|
#endif
|
||||||
gDTMF_InputMode)
|
) {
|
||||||
{ // show DTMF stuff
|
char *pPrintStr = "";
|
||||||
|
// show DTMF stuff
|
||||||
#ifdef ENABLE_DTMF_CALLING
|
#ifdef ENABLE_DTMF_CALLING
|
||||||
char Contact[16];
|
char Contact[16];
|
||||||
|
if (!gDTMF_InputMode) {
|
||||||
|
if (gDTMF_CallState == DTMF_CALL_STATE_CALL_OUT) {
|
||||||
|
pPrintStr = DTMF_FindContact(gDTMF_String, Contact) ? Contact : gDTMF_String;
|
||||||
|
} else if (gDTMF_CallState == DTMF_CALL_STATE_RECEIVED || gDTMF_CallState == DTMF_CALL_STATE_RECEIVED_STAY){
|
||||||
|
pPrintStr = DTMF_FindContact(gDTMF_Callee, Contact) ? Contact : gDTMF_Callee;
|
||||||
|
}else if (gDTMF_IsTx) {
|
||||||
|
pPrintStr = gDTMF_String;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if (!gDTMF_InputMode)
|
UI_PrintString(pPrintStr, 2, 0, 2 + (vfo_num * 3), 8);
|
||||||
{
|
|
||||||
|
|
||||||
memset(Contact, 0, sizeof(Contact));
|
pPrintStr = "";
|
||||||
if (gDTMF_CallState == DTMF_CALL_STATE_CALL_OUT)
|
if (!gDTMF_InputMode) {
|
||||||
strcpy(String, (gDTMF_State == DTMF_STATE_CALL_OUT_RSP) ? "CALL OUT(RSP)" : "CALL OUT");
|
if (gDTMF_CallState == DTMF_CALL_STATE_CALL_OUT) {
|
||||||
else
|
pPrintStr = (gDTMF_State == DTMF_STATE_CALL_OUT_RSP) ? "CALL OUT(RSP)" : "CALL OUT";
|
||||||
if (gDTMF_CallState == DTMF_CALL_STATE_RECEIVED || gDTMF_CallState == DTMF_CALL_STATE_RECEIVED_STAY)
|
} else if (gDTMF_CallState == DTMF_CALL_STATE_RECEIVED || gDTMF_CallState == DTMF_CALL_STATE_RECEIVED_STAY) {
|
||||||
sprintf(String, "CALL FRM:%s", (DTMF_FindContact(gDTMF_Caller, Contact)) ? Contact : gDTMF_Caller);
|
sprintf(String, "CALL FRM:%s", (DTMF_FindContact(gDTMF_Caller, Contact)) ? Contact : gDTMF_Caller);
|
||||||
else
|
pPrintStr = String;
|
||||||
if (gDTMF_IsTx)
|
} else if (gDTMF_IsTx) {
|
||||||
strcpy(String, (gDTMF_State == DTMF_STATE_TX_SUCC) ? "DTMF TX(SUCC)" : "DTMF TX");
|
pPrintStr = (gDTMF_State == DTMF_STATE_TX_SUCC) ? "DTMF TX(SUCC)" : "DTMF TX";
|
||||||
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
#endif
|
#endif
|
||||||
{
|
{
|
||||||
sprintf(String, ">%s", gDTMF_InputBox);
|
sprintf(String, ">%s", gDTMF_InputBox);
|
||||||
}
|
pPrintStr = String;
|
||||||
UI_PrintString(String, 2, 0, 0 + (vfo_num * 3), 8);
|
|
||||||
#ifdef ENABLE_DTMF_CALLING
|
|
||||||
memset(String, 0, sizeof(String));
|
|
||||||
if (!gDTMF_InputMode) {
|
|
||||||
memset(Contact, 0, sizeof(Contact));
|
|
||||||
if (gDTMF_CallState == DTMF_CALL_STATE_CALL_OUT)
|
|
||||||
sprintf(String, ">%s", (DTMF_FindContact(gDTMF_String, Contact)) ? Contact : gDTMF_String);
|
|
||||||
else
|
|
||||||
if (gDTMF_CallState == DTMF_CALL_STATE_RECEIVED || gDTMF_CallState == DTMF_CALL_STATE_RECEIVED_STAY)
|
|
||||||
sprintf(String, ">%s", (DTMF_FindContact(gDTMF_Callee, Contact)) ? Contact : gDTMF_Callee);
|
|
||||||
else
|
|
||||||
if (gDTMF_IsTx)
|
|
||||||
sprintf(String, ">%s", gDTMF_String);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
UI_PrintString(String, 2, 0, 2 + (vfo_num * 3), 8);
|
UI_PrintString(pPrintStr, 2, 0, 0 + (vfo_num * 3), 8);
|
||||||
#endif
|
|
||||||
center_line = CENTER_LINE_IN_USE;
|
center_line = CENTER_LINE_IN_USE;
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
// highlight the selected/used VFO with a marker
|
// highlight the selected/used VFO with a marker
|
||||||
if (isMainVFO)
|
if (isMainVFO)
|
||||||
memmove(p_line0 + 0, BITMAP_VFO_Default, sizeof(BITMAP_VFO_Default));
|
memcpy(p_line0 + 0, BITMAP_VFO_Default, sizeof(BITMAP_VFO_Default));
|
||||||
}
|
}
|
||||||
else // active TX VFO
|
else // active TX VFO
|
||||||
{ // highlight the selected/used VFO with a marker
|
{ // highlight the selected/used VFO with a marker
|
||||||
if (isMainVFO)
|
if (isMainVFO)
|
||||||
memmove(p_line0 + 0, BITMAP_VFO_Default, sizeof(BITMAP_VFO_Default));
|
memcpy(p_line0 + 0, BITMAP_VFO_Default, sizeof(BITMAP_VFO_Default));
|
||||||
else
|
else
|
||||||
memmove(p_line0 + 0, BITMAP_VFO_NotDefault, sizeof(BITMAP_VFO_NotDefault));
|
memcpy(p_line0 + 0, BITMAP_VFO_NotDefault, sizeof(BITMAP_VFO_NotDefault));
|
||||||
}
|
}
|
||||||
|
|
||||||
if (gCurrentFunction == FUNCTION_TRANSMIT)
|
if (gCurrentFunction == FUNCTION_TRANSMIT)
|
||||||
@@ -430,11 +420,7 @@ void UI_DisplayMain(void)
|
|||||||
if (activeTxVFO == vfo_num)
|
if (activeTxVFO == vfo_num)
|
||||||
{ // show the TX symbol
|
{ // show the TX symbol
|
||||||
mode = VFO_MODE_TX;
|
mode = VFO_MODE_TX;
|
||||||
#ifdef ENABLE_SMALL_BOLD
|
|
||||||
UI_PrintStringSmallBold("TX", 14, 0, line);
|
UI_PrintStringSmallBold("TX", 14, 0, line);
|
||||||
#else
|
|
||||||
UI_PrintStringSmall("TX", 14, 0, line);
|
|
||||||
#endif
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -442,23 +428,19 @@ void UI_DisplayMain(void)
|
|||||||
{ // receiving .. show the RX symbol
|
{ // receiving .. show the RX symbol
|
||||||
mode = VFO_MODE_RX;
|
mode = VFO_MODE_RX;
|
||||||
if (FUNCTION_IsRx() && gEeprom.RX_VFO == vfo_num) {
|
if (FUNCTION_IsRx() && gEeprom.RX_VFO == vfo_num) {
|
||||||
#ifdef ENABLE_SMALL_BOLD
|
|
||||||
UI_PrintStringSmallBold("RX", 14, 0, line);
|
UI_PrintStringSmallBold("RX", 14, 0, line);
|
||||||
#else
|
|
||||||
UI_PrintStringSmall("RX", 14, 0, line);
|
|
||||||
#endif
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (IS_MR_CHANNEL(gEeprom.ScreenChannel[vfo_num]))
|
if (IS_MR_CHANNEL(gEeprom.ScreenChannel[vfo_num]))
|
||||||
{ // channel mode
|
{ // channel mode
|
||||||
const unsigned int x = 2;
|
const unsigned int x = 2;
|
||||||
const bool inputting = (gInputBoxIndex == 0 || gEeprom.TX_VFO != vfo_num) ? false : true;
|
const bool inputting = gInputBoxIndex != 0 && gEeprom.TX_VFO == vfo_num;
|
||||||
if (!inputting)
|
if (!inputting)
|
||||||
sprintf(String, "M%u", gEeprom.ScreenChannel[vfo_num] + 1);
|
sprintf(String, "M%u", gEeprom.ScreenChannel[vfo_num] + 1);
|
||||||
else
|
else
|
||||||
sprintf(String, "M%.3s", INPUTBOX_GetAscii()); // show the input text
|
sprintf(String, "M%.3s", INPUTBOX_GetAscii()); // show the input text
|
||||||
UI_PrintStringSmall(String, x, 0, line + 1);
|
UI_PrintStringSmallNormal(String, x, 0, line + 1);
|
||||||
}
|
}
|
||||||
else if (IS_FREQ_CHANNEL(gEeprom.ScreenChannel[vfo_num]))
|
else if (IS_FREQ_CHANNEL(gEeprom.ScreenChannel[vfo_num]))
|
||||||
{ // frequency mode
|
{ // frequency mode
|
||||||
@@ -466,7 +448,7 @@ void UI_DisplayMain(void)
|
|||||||
const unsigned int x = 2;
|
const unsigned int x = 2;
|
||||||
char * buf = gEeprom.VfoInfo[vfo_num].pRX->Frequency < _1GHz_in_KHz ? "" : "+";
|
char * buf = gEeprom.VfoInfo[vfo_num].pRX->Frequency < _1GHz_in_KHz ? "" : "+";
|
||||||
sprintf(String, "F%u%s", 1 + gEeprom.ScreenChannel[vfo_num] - FREQ_CHANNEL_FIRST, buf);
|
sprintf(String, "F%u%s", 1 + gEeprom.ScreenChannel[vfo_num] - FREQ_CHANNEL_FIRST, buf);
|
||||||
UI_PrintStringSmall(String, x, 0, line + 1);
|
UI_PrintStringSmallNormal(String, x, 0, line + 1);
|
||||||
}
|
}
|
||||||
#ifdef ENABLE_NOAA
|
#ifdef ENABLE_NOAA
|
||||||
else
|
else
|
||||||
@@ -479,7 +461,7 @@ void UI_DisplayMain(void)
|
|||||||
{ // user entering channel number
|
{ // user entering channel number
|
||||||
sprintf(String, "N%u%u", '0' + gInputBox[0], '0' + gInputBox[1]);
|
sprintf(String, "N%u%u", '0' + gInputBox[0], '0' + gInputBox[1]);
|
||||||
}
|
}
|
||||||
UI_PrintStringSmall(String, 7, 0, line + 1);
|
UI_PrintStringSmallNormal(String, 7, 0, line + 1);
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
@@ -509,7 +491,7 @@ void UI_DisplayMain(void)
|
|||||||
#ifdef ENABLE_BIG_FREQ
|
#ifdef ENABLE_BIG_FREQ
|
||||||
if(!isGigaF) {
|
if(!isGigaF) {
|
||||||
// show the remaining 2 small frequency digits
|
// show the remaining 2 small frequency digits
|
||||||
UI_PrintStringSmall(String + 7, 113, 0, line + 1);
|
UI_PrintStringSmallNormal(String + 7, 113, 0, line + 1);
|
||||||
String[7] = 0;
|
String[7] = 0;
|
||||||
// show the main large frequency digits
|
// show the main large frequency digits
|
||||||
UI_DisplayFrequency(String, 32, line, false);
|
UI_DisplayFrequency(String, 32, line, false);
|
||||||
@@ -537,14 +519,14 @@ void UI_DisplayMain(void)
|
|||||||
// show the scan list assigment symbols
|
// show the scan list assigment symbols
|
||||||
const ChannelAttributes_t att = gMR_ChannelAttributes[gEeprom.ScreenChannel[vfo_num]];
|
const ChannelAttributes_t att = gMR_ChannelAttributes[gEeprom.ScreenChannel[vfo_num]];
|
||||||
if (att.scanlist1)
|
if (att.scanlist1)
|
||||||
memmove(p_line0 + 113, BITMAP_ScanList1, sizeof(BITMAP_ScanList1));
|
memcpy(p_line0 + 113, BITMAP_ScanList1, sizeof(BITMAP_ScanList1));
|
||||||
if (att.scanlist2)
|
if (att.scanlist2)
|
||||||
memmove(p_line0 + 120, BITMAP_ScanList2, sizeof(BITMAP_ScanList2));
|
memcpy(p_line0 + 120, BITMAP_ScanList2, sizeof(BITMAP_ScanList2));
|
||||||
|
|
||||||
// compander symbol
|
// compander symbol
|
||||||
#ifndef ENABLE_BIG_FREQ
|
#ifndef ENABLE_BIG_FREQ
|
||||||
if (att.compander)
|
if (att.compander)
|
||||||
memmove(p_line0 + 120 + LCD_WIDTH, BITMAP_compand, sizeof(BITMAP_compand));
|
memcpy(p_line0 + 120 + LCD_WIDTH, BITMAP_compand, sizeof(BITMAP_compand));
|
||||||
#else
|
#else
|
||||||
// TODO: // find somewhere else to put the symbol
|
// TODO: // find somewhere else to put the symbol
|
||||||
#endif
|
#endif
|
||||||
@@ -556,7 +538,7 @@ void UI_DisplayMain(void)
|
|||||||
#ifdef ENABLE_BIG_FREQ
|
#ifdef ENABLE_BIG_FREQ
|
||||||
if(frequency < _1GHz_in_KHz) {
|
if(frequency < _1GHz_in_KHz) {
|
||||||
// show the remaining 2 small frequency digits
|
// show the remaining 2 small frequency digits
|
||||||
UI_PrintStringSmall(String + 7, 113, 0, line + 1);
|
UI_PrintStringSmallNormal(String + 7, 113, 0, line + 1);
|
||||||
String[7] = 0;
|
String[7] = 0;
|
||||||
// show the main large frequency digits
|
// show the main large frequency digits
|
||||||
UI_DisplayFrequency(String, 32, line, false);
|
UI_DisplayFrequency(String, 32, line, false);
|
||||||
@@ -588,14 +570,10 @@ void UI_DisplayMain(void)
|
|||||||
UI_PrintString(String, 32, 0, line, 8);
|
UI_PrintString(String, 32, 0, line, 8);
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
#ifdef ENABLE_SMALL_BOLD
|
|
||||||
UI_PrintStringSmallBold(String, 32 + 4, 0, line);
|
UI_PrintStringSmallBold(String, 32 + 4, 0, line);
|
||||||
#else
|
|
||||||
UI_PrintStringSmall(String, 32 + 4, 0, line);
|
|
||||||
#endif
|
|
||||||
// show the channel frequency below the channel number/name
|
// show the channel frequency below the channel number/name
|
||||||
sprintf(String, "%03u.%05u", frequency / 100000, frequency % 100000);
|
sprintf(String, "%03u.%05u", frequency / 100000, frequency % 100000);
|
||||||
UI_PrintStringSmall(String, 32 + 4, 0, line + 1);
|
UI_PrintStringSmallNormal(String, 32 + 4, 0, line + 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
break;
|
break;
|
||||||
@@ -608,7 +586,7 @@ void UI_DisplayMain(void)
|
|||||||
#ifdef ENABLE_BIG_FREQ
|
#ifdef ENABLE_BIG_FREQ
|
||||||
if(frequency < _1GHz_in_KHz) {
|
if(frequency < _1GHz_in_KHz) {
|
||||||
// show the remaining 2 small frequency digits
|
// show the remaining 2 small frequency digits
|
||||||
UI_PrintStringSmall(String + 7, 113, 0, line + 1);
|
UI_PrintStringSmallNormal(String + 7, 113, 0, line + 1);
|
||||||
String[7] = 0;
|
String[7] = 0;
|
||||||
// show the main large frequency digits
|
// show the main large frequency digits
|
||||||
UI_DisplayFrequency(String, 32, line, false);
|
UI_DisplayFrequency(String, 32, line, false);
|
||||||
@@ -624,9 +602,9 @@ void UI_DisplayMain(void)
|
|||||||
const ChannelAttributes_t att = gMR_ChannelAttributes[gEeprom.ScreenChannel[vfo_num]];
|
const ChannelAttributes_t att = gMR_ChannelAttributes[gEeprom.ScreenChannel[vfo_num]];
|
||||||
if (att.compander)
|
if (att.compander)
|
||||||
#ifdef ENABLE_BIG_FREQ
|
#ifdef ENABLE_BIG_FREQ
|
||||||
memmove(p_line0 + 120, BITMAP_compand, sizeof(BITMAP_compand));
|
memcpy(p_line0 + 120, BITMAP_compand, sizeof(BITMAP_compand));
|
||||||
#else
|
#else
|
||||||
memmove(p_line0 + 120 + LCD_WIDTH, BITMAP_compand, sizeof(BITMAP_compand));
|
memcpy(p_line0 + 120 + LCD_WIDTH, BITMAP_compand, sizeof(BITMAP_compand));
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -661,13 +639,14 @@ void UI_DisplayMain(void)
|
|||||||
// ************
|
// ************
|
||||||
|
|
||||||
String[0] = '\0';
|
String[0] = '\0';
|
||||||
|
const VFO_Info_t *vfoInfo = &gEeprom.VfoInfo[vfo_num];
|
||||||
|
|
||||||
// show the modulation symbol
|
// show the modulation symbol
|
||||||
const char * s = "";
|
const char * s = "";
|
||||||
const ModulationMode_t mod = gEeprom.VfoInfo[vfo_num].Modulation;
|
const ModulationMode_t mod = vfoInfo->Modulation;
|
||||||
switch (mod){
|
switch (mod){
|
||||||
case MODULATION_FM: {
|
case MODULATION_FM: {
|
||||||
const FREQ_Config_t *pConfig = (mode == VFO_MODE_TX) ? gEeprom.VfoInfo[vfo_num].pTX : gEeprom.VfoInfo[vfo_num].pRX;
|
const FREQ_Config_t *pConfig = (mode == VFO_MODE_TX) ? vfoInfo->pTX : vfoInfo->pRX;
|
||||||
const unsigned int code_type = pConfig->CodeType;
|
const unsigned int code_type = pConfig->CodeType;
|
||||||
const char *code_list[] = {"", "CT", "DCS", "DCR"};
|
const char *code_list[] = {"", "CT", "DCS", "DCR"};
|
||||||
if (code_type < ARRAY_SIZE(code_list))
|
if (code_type < ARRAY_SIZE(code_list))
|
||||||
@@ -678,54 +657,43 @@ void UI_DisplayMain(void)
|
|||||||
s = gModulationStr[mod];
|
s = gModulationStr[mod];
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
UI_PrintStringSmall(s, LCD_WIDTH + 24, 0, line + 1);
|
UI_PrintStringSmallNormal(s, LCD_WIDTH + 24, 0, line + 1);
|
||||||
|
|
||||||
if (state == VFO_STATE_NORMAL || state == VFO_STATE_ALARM)
|
if (state == VFO_STATE_NORMAL || state == VFO_STATE_ALARM)
|
||||||
{ // show the TX power
|
{ // show the TX power
|
||||||
const char pwr_list[] = "LMH";
|
const char pwr_list[][2] = {"L","M","H"};
|
||||||
const unsigned int i = gEeprom.VfoInfo[vfo_num].OUTPUT_POWER;
|
int i = vfoInfo->OUTPUT_POWER % 3;
|
||||||
String[0] = (i < ARRAY_SIZE(pwr_list)) ? pwr_list[i] : '\0';
|
UI_PrintStringSmallNormal(pwr_list[i], LCD_WIDTH + 46, 0, line + 1);
|
||||||
String[1] = '\0';
|
|
||||||
UI_PrintStringSmall(String, LCD_WIDTH + 46, 0, line + 1);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (gEeprom.VfoInfo[vfo_num].freq_config_RX.Frequency != gEeprom.VfoInfo[vfo_num].freq_config_TX.Frequency)
|
if (vfoInfo->freq_config_RX.Frequency != vfoInfo->freq_config_TX.Frequency)
|
||||||
{ // show the TX offset symbol
|
{ // show the TX offset symbol
|
||||||
const char dir_list[] = "\0+-";
|
const char dir_list[][2] = {"", "+", "-"};
|
||||||
const unsigned int i = gEeprom.VfoInfo[vfo_num].TX_OFFSET_FREQUENCY_DIRECTION;
|
int i = vfoInfo->TX_OFFSET_FREQUENCY_DIRECTION % 3;
|
||||||
String[0] = (i < sizeof(dir_list)) ? dir_list[i] : '?';
|
UI_PrintStringSmallNormal(dir_list[i], LCD_WIDTH + 54, 0, line + 1);
|
||||||
String[1] = '\0';
|
|
||||||
UI_PrintStringSmall(String, LCD_WIDTH + 54, 0, line + 1);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// show the TX/RX reverse symbol
|
// show the TX/RX reverse symbol
|
||||||
if (gEeprom.VfoInfo[vfo_num].FrequencyReverse)
|
if (vfoInfo->FrequencyReverse)
|
||||||
UI_PrintStringSmall("R", LCD_WIDTH + 62, 0, line + 1);
|
UI_PrintStringSmallNormal("R", LCD_WIDTH + 62, 0, line + 1);
|
||||||
|
|
||||||
{ // show the narrow band symbol
|
if (vfoInfo->CHANNEL_BANDWIDTH == BANDWIDTH_NARROW)
|
||||||
String[0] = '\0';
|
UI_PrintStringSmallNormal("N", LCD_WIDTH + 70, 0, line + 1);
|
||||||
if (gEeprom.VfoInfo[vfo_num].CHANNEL_BANDWIDTH == BANDWIDTH_NARROW)
|
|
||||||
{
|
|
||||||
String[0] = 'N';
|
|
||||||
String[1] = '\0';
|
|
||||||
}
|
|
||||||
UI_PrintStringSmall(String, LCD_WIDTH + 70, 0, line + 1);
|
|
||||||
}
|
|
||||||
|
|
||||||
#ifdef ENABLE_DTMF_CALLING
|
#ifdef ENABLE_DTMF_CALLING
|
||||||
// show the DTMF decoding symbol
|
// show the DTMF decoding symbol
|
||||||
if (gEeprom.VfoInfo[vfo_num].DTMF_DECODING_ENABLE || gSetting_KILLED)
|
if (vfoInfo->DTMF_DECODING_ENABLE || gSetting_KILLED)
|
||||||
UI_PrintStringSmall("DTMF", LCD_WIDTH + 78, 0, line + 1);
|
UI_PrintStringSmallNormal("DTMF", LCD_WIDTH + 78, 0, line + 1);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// show the audio scramble symbol
|
// show the audio scramble symbol
|
||||||
if (gEeprom.VfoInfo[vfo_num].SCRAMBLING_TYPE > 0 && gSetting_ScrambleEnable)
|
if (vfoInfo->SCRAMBLING_TYPE > 0 && gSetting_ScrambleEnable)
|
||||||
UI_PrintStringSmall("SCR", LCD_WIDTH + 106, 0, line + 1);
|
UI_PrintStringSmallNormal("SCR", LCD_WIDTH + 106, 0, line + 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef ENABLE_AGC_SHOW_DATA
|
#ifdef ENABLE_AGC_SHOW_DATA
|
||||||
center_line = CENTER_LINE_IN_USE;
|
center_line = CENTER_LINE_IN_USE;
|
||||||
PrintAGC(false);
|
UI_MAIN_PrintAGC(false);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
if (center_line == CENTER_LINE_NONE)
|
if (center_line == CENTER_LINE_NONE)
|
||||||
@@ -753,7 +721,7 @@ void UI_DisplayMain(void)
|
|||||||
|
|
||||||
center_line = CENTER_LINE_AM_FIX_DATA;
|
center_line = CENTER_LINE_AM_FIX_DATA;
|
||||||
AM_fix_print_data(gEeprom.RX_VFO, String);
|
AM_fix_print_data(gEeprom.RX_VFO, String);
|
||||||
UI_PrintStringSmall(String, 2, 0, 3);
|
UI_PrintStringSmallNormal(String, 2, 0, 3);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
#endif
|
#endif
|
||||||
@@ -782,9 +750,8 @@ void UI_DisplayMain(void)
|
|||||||
|
|
||||||
center_line = CENTER_LINE_DTMF_DEC;
|
center_line = CENTER_LINE_DTMF_DEC;
|
||||||
|
|
||||||
strcpy(String, "DTMF ");
|
sprintf(String, "DTMF %s", gDTMF_RX_live + idx);
|
||||||
strcat(String, gDTMF_RX_live + idx);
|
UI_PrintStringSmallNormal(String, 2, 0, 3);
|
||||||
UI_PrintStringSmall(String, 2, 0, 3);
|
|
||||||
}
|
}
|
||||||
#else
|
#else
|
||||||
if (gSetting_live_DTMF_decoder && gDTMF_RX_index > 0)
|
if (gSetting_live_DTMF_decoder && gDTMF_RX_index > 0)
|
||||||
@@ -798,9 +765,8 @@ void UI_DisplayMain(void)
|
|||||||
|
|
||||||
center_line = CENTER_LINE_DTMF_DEC;
|
center_line = CENTER_LINE_DTMF_DEC;
|
||||||
|
|
||||||
strcpy(String, "DTMF ");
|
sprintf(String, "DTMF %s", gDTMF_RX_live + idx);
|
||||||
strcat(String, gDTMF_RX + idx);
|
UI_PrintStringSmallNormal(String, 2, 0, 3);
|
||||||
UI_PrintStringSmall(String, 2, 0, 3);
|
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
@@ -819,7 +785,7 @@ void UI_DisplayMain(void)
|
|||||||
sprintf(String, "Charge %u.%02uV %u%%",
|
sprintf(String, "Charge %u.%02uV %u%%",
|
||||||
gBatteryVoltageAverage / 100, gBatteryVoltageAverage % 100,
|
gBatteryVoltageAverage / 100, gBatteryVoltageAverage % 100,
|
||||||
BATTERY_VoltsToPercent(gBatteryVoltageAverage));
|
BATTERY_VoltsToPercent(gBatteryVoltageAverage));
|
||||||
UI_PrintStringSmall(String, 2, 0, 3);
|
UI_PrintStringSmallNormal(String, 2, 0, 3);
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -42,4 +42,8 @@ void UI_DisplayAudioBar(void);
|
|||||||
void UI_MAIN_TimeSlice500ms(void);
|
void UI_MAIN_TimeSlice500ms(void);
|
||||||
void UI_DisplayMain(void);
|
void UI_DisplayMain(void);
|
||||||
|
|
||||||
|
#ifdef ENABLE_AGC_SHOW_DATA
|
||||||
|
void UI_MAIN_PrintAGC(bool force);
|
||||||
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
240
ui/menu.c
@@ -15,26 +15,27 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <stdlib.h> // abs()
|
#include <stdlib.h>
|
||||||
|
|
||||||
|
#include "../app/dtmf.h"
|
||||||
|
#include "../app/menu.h"
|
||||||
|
#include "../bitmaps.h"
|
||||||
|
#include "../board.h"
|
||||||
|
#include "../dcs.h"
|
||||||
|
#include "../driver/backlight.h"
|
||||||
|
#include "../driver/bk4819.h"
|
||||||
|
#include "../driver/eeprom.h"
|
||||||
|
#include "../driver/st7565.h"
|
||||||
|
#include "../external/printf/printf.h"
|
||||||
|
#include "../frequencies.h"
|
||||||
|
#include "../helper/battery.h"
|
||||||
|
#include "../misc.h"
|
||||||
|
#include "../settings.h"
|
||||||
|
#include "helper.h"
|
||||||
|
#include "inputbox.h"
|
||||||
|
#include "menu.h"
|
||||||
|
#include "ui.h"
|
||||||
|
|
||||||
#include "app/dtmf.h"
|
|
||||||
#include "app/menu.h"
|
|
||||||
#include "bitmaps.h"
|
|
||||||
#include "board.h"
|
|
||||||
#include "dcs.h"
|
|
||||||
#include "driver/backlight.h"
|
|
||||||
#include "driver/bk4819.h"
|
|
||||||
#include "driver/eeprom.h" // EEPROM_ReadBuffer()
|
|
||||||
#include "driver/st7565.h"
|
|
||||||
#include "external/printf/printf.h"
|
|
||||||
#include "frequencies.h"
|
|
||||||
#include "helper/battery.h"
|
|
||||||
#include "misc.h"
|
|
||||||
#include "settings.h"
|
|
||||||
#include "ui/helper.h"
|
|
||||||
#include "ui/inputbox.h"
|
|
||||||
#include "ui/menu.h"
|
|
||||||
#include "ui/ui.h"
|
|
||||||
|
|
||||||
const t_menu_item MenuList[] =
|
const t_menu_item MenuList[] =
|
||||||
{
|
{
|
||||||
@@ -65,7 +66,6 @@ const t_menu_item MenuList[] =
|
|||||||
#ifdef ENABLE_NOAA
|
#ifdef ENABLE_NOAA
|
||||||
{"NOAA-S", VOICE_ID_INVALID, MENU_NOAA_S },
|
{"NOAA-S", VOICE_ID_INVALID, MENU_NOAA_S },
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
{"F1Shrt", VOICE_ID_INVALID, MENU_F1SHRT },
|
{"F1Shrt", VOICE_ID_INVALID, MENU_F1SHRT },
|
||||||
{"F1Long", VOICE_ID_INVALID, MENU_F1LONG },
|
{"F1Long", VOICE_ID_INVALID, MENU_F1LONG },
|
||||||
{"F2Shrt", VOICE_ID_INVALID, MENU_F2SHRT },
|
{"F2Shrt", VOICE_ID_INVALID, MENU_F2SHRT },
|
||||||
@@ -194,7 +194,7 @@ const char gSubMenu_TOT[][7] =
|
|||||||
"15 min"
|
"15 min"
|
||||||
};
|
};
|
||||||
|
|
||||||
const char* gSubMenu_RXMode[] =
|
const char* const gSubMenu_RXMode[] =
|
||||||
{
|
{
|
||||||
"MAIN\nONLY", // TX and RX on main only
|
"MAIN\nONLY", // TX and RX on main only
|
||||||
"DUAL RX\nRESPOND", // Watch both and respond
|
"DUAL RX\nRESPOND", // Watch both and respond
|
||||||
@@ -218,7 +218,7 @@ const char gSubMenu_SC_REV[][8] =
|
|||||||
"STOP"
|
"STOP"
|
||||||
};
|
};
|
||||||
|
|
||||||
const char* gSubMenu_MDF[] =
|
const char* const gSubMenu_MDF[] =
|
||||||
{
|
{
|
||||||
"FREQ",
|
"FREQ",
|
||||||
"CHANNEL\nNUMBER",
|
"CHANNEL\nNUMBER",
|
||||||
@@ -244,7 +244,7 @@ const char gSubMenu_D_RSP[][11] =
|
|||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
const char* gSubMenu_PTT_ID[] =
|
const char* const gSubMenu_PTT_ID[] =
|
||||||
{
|
{
|
||||||
"OFF",
|
"OFF",
|
||||||
"UP CODE",
|
"UP CODE",
|
||||||
@@ -274,7 +274,7 @@ const char gSubMenu_RESET[][4] =
|
|||||||
"ALL"
|
"ALL"
|
||||||
};
|
};
|
||||||
|
|
||||||
const char * gSubMenu_F_LOCK[] =
|
const char * const gSubMenu_F_LOCK[] =
|
||||||
{
|
{
|
||||||
"DEFAULT+\n137-174\n400-470",
|
"DEFAULT+\n137-174\n400-470",
|
||||||
"FCC HAM\n144-148\n420-450",
|
"FCC HAM\n144-148\n420-450",
|
||||||
@@ -362,6 +362,9 @@ const t_sidefunction gSubMenu_SIDEFUNCTIONS[] =
|
|||||||
#ifdef ENABLE_BLMIN_TMP_OFF
|
#ifdef ENABLE_BLMIN_TMP_OFF
|
||||||
{"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
|
||||||
|
#ifdef ENABLE_SPECTRUM
|
||||||
|
{"SPECTRUM", ACTION_OPT_SPECTRUM}
|
||||||
|
#endif
|
||||||
};
|
};
|
||||||
|
|
||||||
const uint8_t gSubMenu_SIDEFUNCTIONS_size = ARRAY_SIZE(gSubMenu_SIDEFUNCTIONS);
|
const uint8_t gSubMenu_SIDEFUNCTIONS_size = ARRAY_SIZE(gSubMenu_SIDEFUNCTIONS);
|
||||||
@@ -371,8 +374,8 @@ uint8_t gMenuCursor;
|
|||||||
int UI_MENU_GetCurrentMenuId() {
|
int UI_MENU_GetCurrentMenuId() {
|
||||||
if(gMenuCursor < ARRAY_SIZE(MenuList))
|
if(gMenuCursor < ARRAY_SIZE(MenuList))
|
||||||
return MenuList[gMenuCursor].menu_id;
|
return MenuList[gMenuCursor].menu_id;
|
||||||
else
|
|
||||||
return MenuList[ARRAY_SIZE(MenuList)-1].menu_id;
|
return MenuList[ARRAY_SIZE(MenuList)-1].menu_id;
|
||||||
}
|
}
|
||||||
|
|
||||||
uint8_t UI_MENU_GetMenuIdx(uint8_t id)
|
uint8_t UI_MENU_GetMenuIdx(uint8_t id)
|
||||||
@@ -402,52 +405,48 @@ void UI_DisplayMenu(void)
|
|||||||
char Contact[16];
|
char Contact[16];
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// clear the screen buffer
|
UI_DisplayClear();
|
||||||
memset(gFrameBuffer, 0, sizeof(gFrameBuffer));
|
|
||||||
|
|
||||||
#if 0
|
#ifndef ENABLE_CUSTOM_MENU_LAYOUT
|
||||||
// original menu layout
|
// original menu layout
|
||||||
|
for (i = 0; i < 3; i++)
|
||||||
|
if (gMenuCursor > 0 || i > 0)
|
||||||
|
if ((gMenuListCount - 1) != gMenuCursor || i != 2)
|
||||||
|
UI_PrintString(MenuList[gMenuCursor + i - 1].name, 0, 0, i * 2, 8);
|
||||||
|
|
||||||
for (i = 0; i < 3; i++)
|
// invert the current menu list item pixels
|
||||||
if (gMenuCursor > 0 || i > 0)
|
for (i = 0; i < (8 * menu_list_width); i++)
|
||||||
if ((gMenuListCount - 1) != gMenuCursor || i != 2)
|
{
|
||||||
UI_PrintString(MenuList[gMenuCursor + i - 1].name, 0, 0, i * 2, 8);
|
gFrameBuffer[2][i] ^= 0xFF;
|
||||||
|
gFrameBuffer[3][i] ^= 0xFF;
|
||||||
|
}
|
||||||
|
|
||||||
// invert the current menu list item pixels
|
// draw vertical separating dotted line
|
||||||
for (i = 0; i < (8 * menu_list_width); i++)
|
for (i = 0; i < 7; i++)
|
||||||
{
|
gFrameBuffer[i][(8 * menu_list_width) + 1] = 0xAA;
|
||||||
gFrameBuffer[2][i] ^= 0xFF;
|
|
||||||
gFrameBuffer[3][i] ^= 0xFF;
|
|
||||||
}
|
|
||||||
|
|
||||||
// draw vertical separating dotted line
|
// draw the little sub-menu triangle marker
|
||||||
for (i = 0; i < 7; i++)
|
if (gIsInSubMenu)
|
||||||
gFrameBuffer[i][(8 * menu_list_width) + 1] = 0xAA;
|
memcpy(gFrameBuffer[0] + (8 * menu_list_width) + 1, BITMAP_CurrentIndicator, sizeof(BITMAP_CurrentIndicator));
|
||||||
|
|
||||||
// draw the little sub-menu triangle marker
|
// draw the menu index number/count
|
||||||
if (gIsInSubMenu)
|
sprintf(String, "%2u.%u", 1 + gMenuCursor, gMenuListCount);
|
||||||
memmove(gFrameBuffer[0] + (8 * menu_list_width) + 1, BITMAP_CurrentIndicator, sizeof(BITMAP_CurrentIndicator));
|
|
||||||
|
|
||||||
// draw the menu index number/count
|
UI_PrintStringSmallNormal(String, 2, 0, 6);
|
||||||
sprintf(String, "%2u.%u", 1 + gMenuCursor, gMenuListCount);
|
|
||||||
UI_PrintStringSmall(String, 2, 0, 6);
|
|
||||||
|
|
||||||
#else
|
#else
|
||||||
{ // new menu layout .. experimental & unfinished
|
{ // new menu layout .. experimental & unfinished
|
||||||
|
|
||||||
const int menu_index = gMenuCursor; // current selected menu item
|
const int menu_index = gMenuCursor; // current selected menu item
|
||||||
i = 1;
|
i = 1;
|
||||||
|
|
||||||
if (!gIsInSubMenu)
|
if (!gIsInSubMenu) {
|
||||||
{
|
|
||||||
while (i < 2)
|
while (i < 2)
|
||||||
{ // leading menu items - small text
|
{ // leading menu items - small text
|
||||||
const int k = menu_index + i - 2;
|
const int k = menu_index + i - 2;
|
||||||
if (k < 0)
|
if (k < 0)
|
||||||
UI_PrintStringSmall(MenuList[gMenuListCount + k].name, 0, 0, i); // wrap-a-round
|
UI_PrintStringSmallNormal(MenuList[gMenuListCount + k].name, 0, 0, i); // wrap-a-round
|
||||||
else
|
else if (k >= 0 && k < (int)gMenuListCount)
|
||||||
if (k >= 0 && k < (int)gMenuListCount)
|
UI_PrintStringSmallNormal(MenuList[k].name, 0, 0, i);
|
||||||
UI_PrintStringSmall(MenuList[k].name, 0, 0, i);
|
|
||||||
i++;
|
i++;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -460,27 +459,24 @@ void UI_DisplayMenu(void)
|
|||||||
{ // trailing menu item - small text
|
{ // trailing menu item - small text
|
||||||
const int k = menu_index + i - 2;
|
const int k = menu_index + i - 2;
|
||||||
if (k >= 0 && k < (int)gMenuListCount)
|
if (k >= 0 && k < (int)gMenuListCount)
|
||||||
UI_PrintStringSmall(MenuList[k].name, 0, 0, 1 + i);
|
UI_PrintStringSmallNormal(MenuList[k].name, 0, 0, 1 + i);
|
||||||
else
|
else if (k >= (int)gMenuListCount)
|
||||||
if (k >= (int)gMenuListCount)
|
UI_PrintStringSmallNormal(MenuList[gMenuListCount - k].name, 0, 0, 1 + i); // wrap-a-round
|
||||||
UI_PrintStringSmall(MenuList[gMenuListCount - k].name, 0, 0, 1 + i); // wrap-a-round
|
|
||||||
i++;
|
i++;
|
||||||
}
|
}
|
||||||
|
|
||||||
// draw the menu index number/count
|
// draw the menu index number/count
|
||||||
sprintf(String, "%2u.%u", 1 + gMenuCursor, gMenuListCount);
|
sprintf(String, "%2u.%u", 1 + gMenuCursor, gMenuListCount);
|
||||||
UI_PrintStringSmall(String, 2, 0, 6);
|
UI_PrintStringSmallNormal(String, 2, 0, 6);
|
||||||
}
|
}
|
||||||
else
|
else if (menu_index >= 0 && menu_index < (int)gMenuListCount)
|
||||||
if (menu_index >= 0 && menu_index < (int)gMenuListCount)
|
|
||||||
{ // current menu item
|
{ // current menu item
|
||||||
strcpy(String, MenuList[menu_index].name);
|
|
||||||
// strcat(String, ":");
|
// strcat(String, ":");
|
||||||
UI_PrintString(String, 0, 0, 0, 8);
|
UI_PrintString(MenuList[menu_index].name, 0, 0, 0, 8);
|
||||||
// UI_PrintStringSmall(String, 0, 0, 0);
|
// UI_PrintStringSmallNormal(String, 0, 0, 0);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// **************
|
// **************
|
||||||
|
|
||||||
@@ -488,6 +484,12 @@ void UI_DisplayMenu(void)
|
|||||||
|
|
||||||
bool already_printed = false;
|
bool already_printed = false;
|
||||||
|
|
||||||
|
/* Brightness is set to max in some entries of this menu. Return it to the configured brightness
|
||||||
|
level the "next" time we enter here.I.e., when we move from one menu to another.
|
||||||
|
It also has to be set back to max when pressing the Exit key. */
|
||||||
|
|
||||||
|
BACKLIGHT_TurnOn();
|
||||||
|
|
||||||
switch (UI_MENU_GetCurrentMenuId())
|
switch (UI_MENU_GetCurrentMenuId())
|
||||||
{
|
{
|
||||||
case MENU_SQL:
|
case MENU_SQL:
|
||||||
@@ -584,7 +586,8 @@ void UI_DisplayMenu(void)
|
|||||||
|
|
||||||
case MENU_ABR:
|
case MENU_ABR:
|
||||||
strcpy(String, gSubMenu_BACKLIGHT[gSubMenuSelection]);
|
strcpy(String, gSubMenu_BACKLIGHT[gSubMenuSelection]);
|
||||||
BACKLIGHT_SetBrightness(-1);
|
if(BACKLIGHT_GetBrightness() < 4)
|
||||||
|
BACKLIGHT_SetBrightness(4);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case MENU_ABR_MIN:
|
case MENU_ABR_MIN:
|
||||||
@@ -592,8 +595,8 @@ void UI_DisplayMenu(void)
|
|||||||
sprintf(String, "%d", gSubMenuSelection);
|
sprintf(String, "%d", gSubMenuSelection);
|
||||||
if(gIsInSubMenu)
|
if(gIsInSubMenu)
|
||||||
BACKLIGHT_SetBrightness(gSubMenuSelection);
|
BACKLIGHT_SetBrightness(gSubMenuSelection);
|
||||||
else
|
else if(BACKLIGHT_GetBrightness() < 4)
|
||||||
BACKLIGHT_SetBrightness(-1);
|
BACKLIGHT_SetBrightness(4);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case MENU_AM:
|
case MENU_AM:
|
||||||
@@ -649,6 +652,8 @@ void UI_DisplayMenu(void)
|
|||||||
UI_PrintString(String, menu_item_x1, menu_item_x2, 4, 8);
|
UI_PrintString(String, menu_item_x1, menu_item_x2, 4, 8);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
SETTINGS_FetchChannelName(String, gSubMenuSelection);
|
||||||
|
UI_PrintString(String[0] ? String : "--", menu_item_x1, menu_item_x2, 2, 8);
|
||||||
already_printed = true;
|
already_printed = true;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
@@ -667,24 +672,20 @@ void UI_DisplayMenu(void)
|
|||||||
if (!gIsInSubMenu || edit_index < 0)
|
if (!gIsInSubMenu || edit_index < 0)
|
||||||
{ // show the channel name
|
{ // show the channel name
|
||||||
SETTINGS_FetchChannelName(String, gSubMenuSelection);
|
SETTINGS_FetchChannelName(String, gSubMenuSelection);
|
||||||
if (String[0] == 0)
|
char *pPrintStr = String[0] ? String : "--";
|
||||||
strcpy(String, "--");
|
UI_PrintString(pPrintStr, menu_item_x1, menu_item_x2, 2, 8);
|
||||||
UI_PrintString(String, menu_item_x1, menu_item_x2, 2, 8);
|
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{ // show the channel name being edited
|
{ // show the channel name being edited
|
||||||
UI_PrintString(edit, menu_item_x1, 0, 2, 8);
|
UI_PrintString(edit, menu_item_x1, 0, 2, 8);
|
||||||
if (edit_index < 10)
|
if (edit_index < 10)
|
||||||
UI_PrintString( "^", menu_item_x1 + (8 * edit_index), 0, 4, 8); // show the cursor
|
UI_PrintString("^", menu_item_x1 + (8 * edit_index), 0, 4, 8); // show the cursor
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!gAskForConfirmation)
|
if (!gAskForConfirmation)
|
||||||
{ // show the frequency so that the user knows the channels frequency
|
{ // show the frequency so that the user knows the channels frequency
|
||||||
sprintf(String, "%u.%05u", frequency / 100000, frequency % 100000);
|
sprintf(String, "%u.%05u", frequency / 100000, frequency % 100000);
|
||||||
if (!gIsInSubMenu || edit_index < 0)
|
UI_PrintString(String, menu_item_x1, menu_item_x2, 4 + (gIsInSubMenu && edit_index >= 0), 8);
|
||||||
UI_PrintString(String, menu_item_x1, menu_item_x2, 4, 8);
|
|
||||||
else
|
|
||||||
UI_PrintString(String, menu_item_x1, menu_item_x2, 5, 8);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -778,7 +779,7 @@ void UI_DisplayMenu(void)
|
|||||||
if (!gIsDtmfContactValid)
|
if (!gIsDtmfContactValid)
|
||||||
strcpy(String, "NULL");
|
strcpy(String, "NULL");
|
||||||
else
|
else
|
||||||
memmove(String, Contact, 8);
|
memcpy(String, Contact, 8);
|
||||||
break;
|
break;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
@@ -880,7 +881,7 @@ void UI_DisplayMenu(void)
|
|||||||
for (i = 0; i < len && lines > 0; lines--)
|
for (i = 0; i < len && lines > 0; lines--)
|
||||||
{
|
{
|
||||||
if (small)
|
if (small)
|
||||||
UI_PrintStringSmall(String + i, menu_item_x1, menu_item_x2, y);
|
UI_PrintStringSmallNormal(String + i, menu_item_x1, menu_item_x2, y);
|
||||||
else
|
else
|
||||||
UI_PrintString(String + i, menu_item_x1, menu_item_x2, y, 8);
|
UI_PrintString(String + i, menu_item_x1, menu_item_x2, y, 8);
|
||||||
|
|
||||||
@@ -900,70 +901,47 @@ void UI_DisplayMenu(void)
|
|||||||
if (UI_MENU_GetCurrentMenuId() == MENU_SLIST1 || UI_MENU_GetCurrentMenuId() == MENU_SLIST2)
|
if (UI_MENU_GetCurrentMenuId() == MENU_SLIST1 || UI_MENU_GetCurrentMenuId() == MENU_SLIST2)
|
||||||
{
|
{
|
||||||
i = (UI_MENU_GetCurrentMenuId() == MENU_SLIST1) ? 0 : 1;
|
i = (UI_MENU_GetCurrentMenuId() == MENU_SLIST1) ? 0 : 1;
|
||||||
|
char *pPrintStr = String;
|
||||||
|
|
||||||
// if (gSubMenuSelection == 0xFF)
|
if (gSubMenuSelection < 0) {
|
||||||
if (gSubMenuSelection < 0)
|
pPrintStr = "NULL";
|
||||||
strcpy(String, "NULL");
|
} else {
|
||||||
else
|
|
||||||
UI_GenerateChannelStringEx(String, true, gSubMenuSelection);
|
UI_GenerateChannelStringEx(String, true, gSubMenuSelection);
|
||||||
|
pPrintStr = String;
|
||||||
// if (gSubMenuSelection == 0xFF || !gEeprom.SCAN_LIST_ENABLED[i])
|
|
||||||
if (gSubMenuSelection < 0 || !gEeprom.SCAN_LIST_ENABLED[i])
|
|
||||||
{
|
|
||||||
// channel number
|
|
||||||
UI_PrintString(String, menu_item_x1, menu_item_x2, 0, 8);
|
|
||||||
|
|
||||||
// channel name
|
|
||||||
SETTINGS_FetchChannelName(String, gSubMenuSelection);
|
|
||||||
if (String[0] == 0)
|
|
||||||
strcpy(String, "--");
|
|
||||||
UI_PrintString(String, menu_item_x1, menu_item_x2, 2, 8);
|
|
||||||
}
|
}
|
||||||
else
|
|
||||||
{
|
|
||||||
// channel number
|
|
||||||
UI_PrintString(String, menu_item_x1, menu_item_x2, 0, 8);
|
|
||||||
|
|
||||||
// channel name
|
// channel number
|
||||||
SETTINGS_FetchChannelName(String, gSubMenuSelection);
|
UI_PrintString(pPrintStr, menu_item_x1, menu_item_x2, 0, 8);
|
||||||
if (String[0] == 0)
|
|
||||||
strcpy(String, "--");
|
|
||||||
UI_PrintStringSmall(String, menu_item_x1, menu_item_x2, 2);
|
|
||||||
|
|
||||||
if (IS_MR_CHANNEL(gEeprom.SCANLIST_PRIORITY_CH1[i]))
|
SETTINGS_FetchChannelName(String, gSubMenuSelection);
|
||||||
{
|
pPrintStr = String[0] ? String : "--";
|
||||||
sprintf(String, "PRI1:%u", gEeprom.SCANLIST_PRIORITY_CH1[i] + 1);
|
|
||||||
|
// channel name and scan-list
|
||||||
|
if (gSubMenuSelection < 0 || !gEeprom.SCAN_LIST_ENABLED[i]) {
|
||||||
|
UI_PrintString(pPrintStr, menu_item_x1, menu_item_x2, 2, 8);
|
||||||
|
} else {
|
||||||
|
UI_PrintStringSmallNormal(pPrintStr, menu_item_x1, menu_item_x2, 2);
|
||||||
|
|
||||||
|
if (IS_MR_CHANNEL(gEeprom.SCANLIST_PRIORITY_CH1[i])) {
|
||||||
|
sprintf(String, "PRI%d:%u", 1, gEeprom.SCANLIST_PRIORITY_CH1[i] + 1);
|
||||||
UI_PrintString(String, menu_item_x1, menu_item_x2, 3, 8);
|
UI_PrintString(String, menu_item_x1, menu_item_x2, 3, 8);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (IS_MR_CHANNEL(gEeprom.SCANLIST_PRIORITY_CH2[i]))
|
if (IS_MR_CHANNEL(gEeprom.SCANLIST_PRIORITY_CH2[i])) {
|
||||||
{
|
sprintf(String, "PRI%d:%u", 2, gEeprom.SCANLIST_PRIORITY_CH2[i] + 1);
|
||||||
sprintf(String, "PRI2:%u", gEeprom.SCANLIST_PRIORITY_CH2[i] + 1);
|
|
||||||
UI_PrintString(String, menu_item_x1, menu_item_x2, 5, 8);
|
UI_PrintString(String, menu_item_x1, menu_item_x2, 5, 8);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (UI_MENU_GetCurrentMenuId() == MENU_MEM_CH ||
|
|
||||||
UI_MENU_GetCurrentMenuId() == MENU_DEL_CH ||
|
|
||||||
UI_MENU_GetCurrentMenuId() == MENU_1_CALL)
|
|
||||||
{ // display the channel name
|
|
||||||
char s[11];
|
|
||||||
SETTINGS_FetchChannelName(s, gSubMenuSelection);
|
|
||||||
if (s[0] == 0)
|
|
||||||
strcpy(s, "--");
|
|
||||||
UI_PrintString(s, menu_item_x1, menu_item_x2, 2, 8);
|
|
||||||
}
|
|
||||||
|
|
||||||
if ((UI_MENU_GetCurrentMenuId() == MENU_R_CTCS || UI_MENU_GetCurrentMenuId() == MENU_R_DCS) && gCssBackgroundScan)
|
if ((UI_MENU_GetCurrentMenuId() == MENU_R_CTCS || UI_MENU_GetCurrentMenuId() == MENU_R_DCS) && gCssBackgroundScan)
|
||||||
UI_PrintString("SCAN", menu_item_x1, menu_item_x2, 4, 8);
|
UI_PrintString("SCAN", menu_item_x1, menu_item_x2, 4, 8);
|
||||||
|
|
||||||
#ifdef ENABLE_DTMF_CALLING
|
#ifdef ENABLE_DTMF_CALLING
|
||||||
if (UI_MENU_GetCurrentMenuId() == MENU_D_LIST && gIsDtmfContactValid)
|
if (UI_MENU_GetCurrentMenuId() == MENU_D_LIST && gIsDtmfContactValid) {
|
||||||
{
|
|
||||||
Contact[11] = 0;
|
Contact[11] = 0;
|
||||||
memmove(&gDTMF_ID, Contact + 8, 4);
|
memcpy(&gDTMF_ID, Contact + 8, 4);
|
||||||
sprintf(String, "ID:%s", Contact + 8);
|
sprintf(String, "ID:%4s", gDTMF_ID);
|
||||||
UI_PrintString(String, menu_item_x1, menu_item_x2, 4, 8);
|
UI_PrintString(String, menu_item_x1, menu_item_x2, 4, 8);
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
@@ -975,11 +953,9 @@ void UI_DisplayMenu(void)
|
|||||||
#ifdef ENABLE_DTMF_CALLING
|
#ifdef ENABLE_DTMF_CALLING
|
||||||
|| UI_MENU_GetCurrentMenuId() == MENU_D_LIST
|
|| UI_MENU_GetCurrentMenuId() == MENU_D_LIST
|
||||||
#endif
|
#endif
|
||||||
)
|
) {
|
||||||
|
|
||||||
{
|
|
||||||
sprintf(String, "%2d", gSubMenuSelection);
|
sprintf(String, "%2d", gSubMenuSelection);
|
||||||
UI_PrintStringSmall(String, 105, 0, 0);
|
UI_PrintStringSmallNormal(String, 105, 0, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
if ((UI_MENU_GetCurrentMenuId() == MENU_RESET ||
|
if ((UI_MENU_GetCurrentMenuId() == MENU_RESET ||
|
||||||
@@ -987,8 +963,8 @@ void UI_DisplayMenu(void)
|
|||||||
UI_MENU_GetCurrentMenuId() == MENU_MEM_NAME ||
|
UI_MENU_GetCurrentMenuId() == MENU_MEM_NAME ||
|
||||||
UI_MENU_GetCurrentMenuId() == MENU_DEL_CH) && gAskForConfirmation)
|
UI_MENU_GetCurrentMenuId() == MENU_DEL_CH) && gAskForConfirmation)
|
||||||
{ // display confirmation
|
{ // display confirmation
|
||||||
strcpy(String, (gAskForConfirmation == 1) ? "SURE?" : "WAIT!");
|
char *pPrintStr = (gAskForConfirmation == 1) ? "SURE?" : "WAIT!";
|
||||||
UI_PrintString(String, menu_item_x1, menu_item_x2, 5, 8);
|
UI_PrintString(pPrintStr, menu_item_x1, menu_item_x2, 5, 8);
|
||||||
}
|
}
|
||||||
|
|
||||||
ST7565_BlitFullScreen();
|
ST7565_BlitFullScreen();
|
||||||
|
|||||||
@@ -135,24 +135,24 @@ extern const char gSubMenu_W_N[2][7];
|
|||||||
extern const char gSubMenu_OFF_ON[2][4];
|
extern const char gSubMenu_OFF_ON[2][4];
|
||||||
extern const char gSubMenu_SAVE[5][4];
|
extern const char gSubMenu_SAVE[5][4];
|
||||||
extern const char gSubMenu_TOT[11][7];
|
extern const char gSubMenu_TOT[11][7];
|
||||||
extern const char* gSubMenu_RXMode[4];
|
extern const char* const gSubMenu_RXMode[4];
|
||||||
|
|
||||||
#ifdef ENABLE_VOICE
|
#ifdef ENABLE_VOICE
|
||||||
extern const char gSubMenu_VOICE[3][4];
|
extern const char gSubMenu_VOICE[3][4];
|
||||||
#endif
|
#endif
|
||||||
extern const char gSubMenu_SC_REV[3][8];
|
extern const char gSubMenu_SC_REV[3][8];
|
||||||
extern const char* gSubMenu_MDF[4];
|
extern const char* const gSubMenu_MDF[4];
|
||||||
#ifdef ENABLE_ALARM
|
#ifdef ENABLE_ALARM
|
||||||
extern const char gSubMenu_AL_MOD[2][5];
|
extern const char gSubMenu_AL_MOD[2][5];
|
||||||
#endif
|
#endif
|
||||||
#ifdef ENABLE_DTMF_CALLING
|
#ifdef ENABLE_DTMF_CALLING
|
||||||
extern const char gSubMenu_D_RSP[4][11];
|
extern const char gSubMenu_D_RSP[4][11];
|
||||||
#endif
|
#endif
|
||||||
extern const char* gSubMenu_PTT_ID[5];
|
extern const char* const gSubMenu_PTT_ID[5];
|
||||||
extern const char gSubMenu_PONMSG[4][8];
|
extern const char gSubMenu_PONMSG[4][8];
|
||||||
extern const char gSubMenu_ROGER[3][6];
|
extern const char gSubMenu_ROGER[3][6];
|
||||||
extern const char gSubMenu_RESET[2][4];
|
extern const char gSubMenu_RESET[2][4];
|
||||||
extern const char* gSubMenu_F_LOCK[F_LOCK_LEN];
|
extern const char* const gSubMenu_F_LOCK[F_LOCK_LEN];
|
||||||
extern const char gSubMenu_BACKLIGHT[8][7];
|
extern const char gSubMenu_BACKLIGHT[8][7];
|
||||||
extern const char gSubMenu_RX_TX[4][6];
|
extern const char gSubMenu_RX_TX[4][6];
|
||||||
extern const char gSubMenu_BAT_TXT[3][8];
|
extern const char gSubMenu_BAT_TXT[3][8];
|
||||||
|
|||||||
66
ui/scanner.c
@@ -26,56 +26,58 @@
|
|||||||
|
|
||||||
void UI_DisplayScanner(void)
|
void UI_DisplayScanner(void)
|
||||||
{
|
{
|
||||||
char String[16];
|
char String[16] = {0};
|
||||||
bool bCentered;
|
char *pPrintStr = String;
|
||||||
|
bool bCentered;
|
||||||
uint8_t Start;
|
uint8_t Start;
|
||||||
|
|
||||||
memset(gFrameBuffer, 0, sizeof(gFrameBuffer));
|
UI_DisplayClear();
|
||||||
|
|
||||||
memset(String, 0, sizeof(String));
|
if (gScanSingleFrequency || (gScanCssState != SCAN_CSS_STATE_OFF && gScanCssState != SCAN_CSS_STATE_FAILED)) {
|
||||||
if (gScanSingleFrequency || (gScanCssState != SCAN_CSS_STATE_OFF && gScanCssState != SCAN_CSS_STATE_FAILED))
|
|
||||||
sprintf(String, "FREQ:%u.%05u", gScanFrequency / 100000, gScanFrequency % 100000);
|
sprintf(String, "FREQ:%u.%05u", gScanFrequency / 100000, gScanFrequency % 100000);
|
||||||
else
|
pPrintStr = String;
|
||||||
strcpy(String, "FREQ:**.*****");
|
} else {
|
||||||
UI_PrintString(String, 2, 0, 1, 8);
|
pPrintStr = "FREQ:**.*****";
|
||||||
|
}
|
||||||
|
|
||||||
memset(String, 0, sizeof(String));
|
UI_PrintString(pPrintStr, 2, 0, 1, 8);
|
||||||
if (gScanCssState < SCAN_CSS_STATE_FOUND || !gScanUseCssResult)
|
|
||||||
strcpy(String, "CTC:******");
|
if (gScanCssState < SCAN_CSS_STATE_FOUND || !gScanUseCssResult) {
|
||||||
else
|
pPrintStr = "CTC:******";
|
||||||
if (gScanCssResultType == CODE_TYPE_CONTINUOUS_TONE)
|
} else if (gScanCssResultType == CODE_TYPE_CONTINUOUS_TONE) {
|
||||||
sprintf(String, "CTC:%u.%uHz", CTCSS_Options[gScanCssResultCode] / 10, CTCSS_Options[gScanCssResultCode] % 10);
|
sprintf(String, "CTC:%u.%uHz", CTCSS_Options[gScanCssResultCode] / 10, CTCSS_Options[gScanCssResultCode] % 10);
|
||||||
else
|
pPrintStr = String;
|
||||||
|
} else {
|
||||||
sprintf(String, "DCS:D%03oN", DCS_Options[gScanCssResultCode]);
|
sprintf(String, "DCS:D%03oN", DCS_Options[gScanCssResultCode]);
|
||||||
UI_PrintString(String, 2, 0, 3, 8);
|
pPrintStr = String;
|
||||||
|
}
|
||||||
|
|
||||||
|
UI_PrintString(pPrintStr, 2, 0, 3, 8);
|
||||||
memset(String, 0, sizeof(String));
|
memset(String, 0, sizeof(String));
|
||||||
if (gScannerSaveState == SCAN_SAVE_CHANNEL)
|
if (gScannerSaveState == SCAN_SAVE_CHANNEL) {
|
||||||
{
|
pPrintStr = "SAVE?";
|
||||||
strcpy(String, "SAVE?");
|
|
||||||
|
|
||||||
Start = 0;
|
Start = 0;
|
||||||
bCentered = 1;
|
bCentered = 1;
|
||||||
}
|
} else {
|
||||||
else
|
Start = 2;
|
||||||
{
|
bCentered = 0;
|
||||||
|
|
||||||
if (gScannerSaveState == SCAN_SAVE_CHAN_SEL) {
|
if (gScannerSaveState == SCAN_SAVE_CHAN_SEL) {
|
||||||
strcpy(String, "SAVE:");
|
strcpy(String, "SAVE:");
|
||||||
UI_GenerateChannelStringEx(String + 5, gShowChPrefix, gScanChannel);
|
UI_GenerateChannelStringEx(String + 5, gShowChPrefix, gScanChannel);
|
||||||
}
|
pPrintStr = String;
|
||||||
else if (gScanCssState < SCAN_CSS_STATE_FOUND) {
|
} else if (gScanCssState < SCAN_CSS_STATE_FOUND) {
|
||||||
strcpy(String, "SCAN");
|
strcpy(String, "SCAN");
|
||||||
memset(String + 4, '.', (gScanProgressIndicator & 7) + 1);
|
memset(String + 4, '.', (gScanProgressIndicator & 7) + 1);
|
||||||
|
pPrintStr = String;
|
||||||
|
} else if (gScanCssState == SCAN_CSS_STATE_FOUND) {
|
||||||
|
pPrintStr = "SCAN CMP.";
|
||||||
|
} else {
|
||||||
|
pPrintStr = "SCAN FAIL.";
|
||||||
}
|
}
|
||||||
else if (gScanCssState == SCAN_CSS_STATE_FOUND)
|
|
||||||
strcpy(String, "SCAN CMP.");
|
|
||||||
else
|
|
||||||
strcpy(String, "SCAN FAIL.");
|
|
||||||
|
|
||||||
Start = 2;
|
|
||||||
bCentered = 0;
|
|
||||||
}
|
}
|
||||||
UI_PrintString(String, Start, bCentered ? 127 : 0, 5, 8);
|
|
||||||
|
UI_PrintString(pPrintStr, Start, bCentered ? 127 : 0, 5, 8);
|
||||||
|
|
||||||
ST7565_BlitFullScreen();
|
ST7565_BlitFullScreen();
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -91,7 +91,7 @@ void UI_DisplayStatus()
|
|||||||
else { // frequency mode
|
else { // frequency mode
|
||||||
s = "S";
|
s = "S";
|
||||||
}
|
}
|
||||||
UI_PrintStringSmallBuffer(s, line + x + 1);
|
UI_PrintStringSmallBufferNormal(s, line + x + 1);
|
||||||
x1 = x + 10;
|
x1 = x + 10;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -168,7 +168,7 @@ void UI_DisplayStatus()
|
|||||||
|
|
||||||
unsigned int space_needed = (7 * strlen(s));
|
unsigned int space_needed = (7 * strlen(s));
|
||||||
if (x2 >= (x1 + space_needed))
|
if (x2 >= (x1 + space_needed))
|
||||||
UI_PrintStringSmallBuffer(s, line + x2 - space_needed);
|
UI_PrintStringSmallBufferNormal(s, line + x2 - space_needed);
|
||||||
}
|
}
|
||||||
|
|
||||||
// move to right side of the screen
|
// move to right side of the screen
|
||||||
|
|||||||
19
ui/welcome.c
@@ -30,7 +30,7 @@
|
|||||||
void UI_DisplayReleaseKeys(void)
|
void UI_DisplayReleaseKeys(void)
|
||||||
{
|
{
|
||||||
memset(gStatusLine, 0, sizeof(gStatusLine));
|
memset(gStatusLine, 0, sizeof(gStatusLine));
|
||||||
memset(gFrameBuffer, 0, sizeof(gFrameBuffer));
|
UI_DisplayClear();
|
||||||
|
|
||||||
UI_PrintString("RELEASE", 0, 127, 1, 10);
|
UI_PrintString("RELEASE", 0, 127, 1, 10);
|
||||||
UI_PrintString("ALL KEYS", 0, 127, 3, 10);
|
UI_PrintString("ALL KEYS", 0, 127, 3, 10);
|
||||||
@@ -45,19 +45,11 @@ void UI_DisplayWelcome(void)
|
|||||||
char WelcomeString1[16];
|
char WelcomeString1[16];
|
||||||
|
|
||||||
memset(gStatusLine, 0, sizeof(gStatusLine));
|
memset(gStatusLine, 0, sizeof(gStatusLine));
|
||||||
memset(gFrameBuffer, 0, sizeof(gFrameBuffer));
|
UI_DisplayClear();
|
||||||
|
|
||||||
if (gEeprom.POWER_ON_DISPLAY_MODE == POWER_ON_DISPLAY_MODE_NONE)
|
if (gEeprom.POWER_ON_DISPLAY_MODE == POWER_ON_DISPLAY_MODE_NONE || gEeprom.POWER_ON_DISPLAY_MODE == POWER_ON_DISPLAY_MODE_FULL_SCREEN) {
|
||||||
{
|
|
||||||
ST7565_FillScreen(0xFF);
|
ST7565_FillScreen(0xFF);
|
||||||
}
|
} else {
|
||||||
else
|
|
||||||
if (gEeprom.POWER_ON_DISPLAY_MODE == POWER_ON_DISPLAY_MODE_FULL_SCREEN)
|
|
||||||
{
|
|
||||||
ST7565_FillScreen(0xFF);
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
memset(WelcomeString0, 0, sizeof(WelcomeString0));
|
memset(WelcomeString0, 0, sizeof(WelcomeString0));
|
||||||
memset(WelcomeString1, 0, sizeof(WelcomeString1));
|
memset(WelcomeString1, 0, sizeof(WelcomeString1));
|
||||||
|
|
||||||
@@ -77,10 +69,9 @@ void UI_DisplayWelcome(void)
|
|||||||
|
|
||||||
UI_PrintString(WelcomeString0, 0, 127, 0, 10);
|
UI_PrintString(WelcomeString0, 0, 127, 0, 10);
|
||||||
UI_PrintString(WelcomeString1, 0, 127, 2, 10);
|
UI_PrintString(WelcomeString1, 0, 127, 2, 10);
|
||||||
UI_PrintStringSmall(Version, 0, 128, 6);
|
UI_PrintStringSmallNormal(Version, 0, 128, 6);
|
||||||
|
|
||||||
ST7565_BlitStatusLine(); // blank status line
|
ST7565_BlitStatusLine(); // blank status line
|
||||||
ST7565_BlitFullScreen();
|
ST7565_BlitFullScreen();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||