2023-09-30 09:44:33 +00:00
# Main features:
2023-10-19 23:35:11 +00:00
- many of OneOfEleven mods, including AM fix
2023-09-30 14:05:13 +00:00
- fagci spectrum analyzer (**F+5** to turn on)
2023-11-01 19:36:19 +00:00
- some other mods introduced by me
2023-10-19 23:35:11 +00:00
2023-11-01 19:36:19 +00:00
# Manual
2023-09-30 09:44:33 +00:00
2023-11-01 19:36:19 +00:00
* [Radio operation ](https://github.com/egzumer/uv-k5-firmware-custom/wiki/Radio-operation )
* [Menu ](https://github.com/egzumer/uv-k5-firmware-custom/wiki/Menu )
2023-09-30 09:44:33 +00:00
2023-11-01 19:36:19 +00:00
* [Button functions ](https://github.com/egzumer/uv-k5-firmware-custom/wiki/Button-functions )
2023-10-01 12:12:37 +00:00
2023-11-01 19:36:19 +00:00
* [Spectrum analyzer ](https://github.com/egzumer/uv-k5-firmware-custom/wiki/Spectrum-analyzer )
2023-10-01 12:12:37 +00:00
2023-11-01 19:36:19 +00:00
* [Flashing the firmware ](https://github.com/egzumer/uv-k5-firmware-custom/wiki/Flashing-the-firmware )
2023-10-01 12:12:37 +00:00
2023-11-01 19:36:19 +00:00
< 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 / >
2023-10-01 12:12:37 +00:00
2023-09-30 09:44:33 +00:00
2023-09-16 06:55:09 +00:00
# Open reimplementation of the Quan Sheng UV-K5 v2.1.27 firmware
2023-09-09 07:03:56 +00:00
2023-09-30 09:44:33 +00:00
This repository is a merge of OneOfEleven custom firmware with fagci spectrum analizer plus my few changes.
https://github.com/OneOfEleven/uv-k5-firmware-custom< br >
https://github.com/fagci/uv-k5-firmware-fagci-mod/tree/refactor
All is a cloned and customized version of DualTachyon's open firmware found here ..
2023-09-09 07:03:56 +00:00
2023-09-30 16:14:48 +00:00
https://github.com/DualTachyon/uv-k5-firmware .. a cool achievement !
2023-09-09 07:03:56 +00:00
2023-09-30 16:14:48 +00:00
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.
Anyway, have fun.
2023-09-09 07:18:49 +00:00
2023-09-25 17:08:21 +00:00
# Radio performance
2023-10-05 16:38:25 +00:00
Please note that the Quansheng UV-Kx radios are not professional quality transceivers, their
performance is strictly limited. The RX front end has no track-tuned band pass filtering
at all, and so are wide band/wide open to any and all signals over a large frequency range.
2023-09-25 17:08:21 +00:00
2023-10-05 16:38:25 +00:00
Using the radio in high intensity RF environments will most likely make reception anything but
easy (AM mode will suffer far more than FM ever will), the receiver simply doesn't have a
great dynamic range, which results in distorted AM audio with stronger RX'ed signals.
There is nothing more anyone can do in firmware/software to improve that, once the RX gain
adjustment I do (AM fix) reaches the hardwares limit, your AM RX audio will be all but
non-existant (just like Quansheng's firmware).
On the other hand, FM RX audio will/should be fine.
But, they are nice toys for the price, fun to play with.
2023-09-25 17:08:21 +00:00
2023-09-09 07:03:56 +00:00
# User customization
2023-10-05 16:38:25 +00:00
You can customize the firmware by enabling/disabling various compile options, this allows
us to remove certain firmware features in order to make room in the flash for others.
2023-09-16 13:53:55 +00:00
You'll find the options at the top of "Makefile" ('0' = disable, '1' = enable) ..
2023-09-14 10:16:45 +00:00
2023-09-14 19:43:02 +00:00
```
2023-10-05 12:42:14 +00:00
ENABLE_CLANG := 0 **experimental, builds with clang instead of gcc (LTO will be disabled if you enable this)
2023-09-16 09:08:39 +00:00
ENABLE_SWD := 0 only needed if using CPU's SWD port (debugging/programming)
2023-10-03 10:32:04 +00:00
ENABLE_OVERLAY := 0 cpu FLASH stuff, not needed
2023-10-05 12:42:14 +00:00
ENABLE_LTO := 0 **experimental, reduces size of compiled firmware but might break EEPROM reads (OVERLAY will be disabled if you enable this)
2023-10-03 10:32:04 +00:00
ENABLE_UART := 1 without this you can't configure radio via PC !
ENABLE_AIRCOPY := 0 easier to just enter frequency with butts
2023-10-03 23:45:03 +00:00
ENABLE_FMRADIO := 0 WBFM VHF broadcast band receiver
2023-10-03 10:32:04 +00:00
ENABLE_NOAA := 0 everything NOAA (only of any use in the USA)
2023-09-16 06:55:09 +00:00
ENABLE_VOICE := 0 want to hear voices ?
2023-10-04 10:57:34 +00:00
ENABLE_VOX := 0
2023-09-14 19:43:02 +00:00
ENABLE_ALARM := 0 TX alarms
2023-10-03 10:32:04 +00:00
ENABLE_1750HZ := 0 side key 1750Hz TX tone (older style repeater access)
2023-10-05 23:19:21 +00:00
ENABLE_PWRON_PASSWORD := 1 power-on password stuff
2023-10-03 10:32:04 +00:00
ENABLE_BIG_FREQ := 0 big font frequencies (like original QS firmware)
2023-09-25 12:27:52 +00:00
ENABLE_SMALL_BOLD := 1 bold channel name/no. (when name + freq channel display mode)
2023-09-16 09:08:39 +00:00
ENABLE_KEEP_MEM_NAME := 1 maintain channel name when (re)saving memory channel
2023-10-03 10:32:04 +00:00
ENABLE_WIDE_RX := 1 full 18MHz to 1300MHz RX (though front-end/PA not designed for full range)
2023-09-16 06:55:09 +00:00
ENABLE_TX_WHEN_AM := 0 allow TX (always FM) when RX is set to AM
2023-10-02 19:52:18 +00:00
ENABLE_F_CAL_MENU := 0 enable/disable the radios hidden frequency calibration menu
2023-09-17 03:58:27 +00:00
ENABLE_CTCSS_TAIL_PHASE_SHIFT := 1 standard CTCSS tail phase shift rather than QS's own 55Hz tone method
2023-10-03 10:32:04 +00:00
ENABLE_BOOT_BEEPS := 0 gives user audio feedback on volume knob position at boot-up
2023-09-25 12:27:52 +00:00
ENABLE_SHOW_CHARGE_LEVEL := 0 show the charge level when the radio is on charge
2023-09-19 13:48:09 +00:00
ENABLE_REVERSE_BAT_SYMBOL := 1 mirror the battery symbol on the status bar (+ pole on the right)
2023-10-03 10:32:04 +00:00
ENABLE_CODE_SCAN_TIMEOUT := 0 enable/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 helo prevent AM demodulator saturation, ignore the on-screen RSSI level (for now)
ENABLE_AM_FIX_SHOW_DATA := 1 show debug data for the AM fix (still tweaking it)
2023-10-03 23:45:03 +00:00
ENABLE_SQUELCH_MORE_SENSITIVE := 0 make squelch levels a little bit more sensitive - I plan to let user adjust the values themselves
2023-10-05 21:44:44 +00:00
ENABLE_FASTER_CHANNEL_SCAN := 0 increases the channel scan speed, but the squelch is also made more twitchy
2023-10-03 10:32:04 +00:00
ENABLE_RSSI_BAR := 1 enable a dBm/Sn RSSI bar graph level inplace of the little antenna symbols
2023-09-21 06:43:54 +00:00
ENABLE_AUDIO_BAR := 0 experimental, display an audo bar level when TX'ing
2023-10-03 22:33:28 +00:00
ENABLE_COPY_CHAN_TO_VFO := 1 copy current channel into the other VFO. Long press Menu key ('M')
2023-09-16 06:55:09 +00:00
#ENABLE_SINGLE_VFO_CHAN := 1 not yet implemented - single VFO on display when possible
#ENABLE_BAND_SCOPE := 1 not yet implemented - spectrum/pan-adapter
2023-11-06 14:51:40 +00:00
ENABLE_BLMIN_TMP_OFF := 0 additional function for configurable buttons that toggles `BLMin` on and off wihout saving it to the EEPROM
2023-09-14 19:43:02 +00:00
```
2023-09-14 08:56:30 +00:00
2023-10-04 21:56:54 +00:00
# New/modified function keys
2023-10-05 11:42:40 +00:00
* Long-press 'M' .. Copy selected channel into same VFO, then switch VFO to frequency mode
2023-10-05 09:03:07 +00:00
*
2023-10-05 11:42:40 +00:00
* Long-press '7' .. Toggle selected channel scanlist setting .. if VOX is disabled in Makefile
2023-10-05 13:40:34 +00:00
* or
2023-10-05 11:42:40 +00:00
* Long-press '5' .. Toggle selected channel scanlist setting .. if NOAA is disabled in Makefile
2023-10-05 09:03:07 +00:00
*
2023-10-05 16:38:25 +00:00
* Long-press '*' .. Start scanning, then toggles the scanning between scanlists 1, 2 or ALL channels
2023-10-04 21:56:54 +00:00
2023-09-24 16:17:04 +00:00
# Some changes made from the Quansheng firmware
2023-09-09 07:03:56 +00:00
2023-09-16 09:08:39 +00:00
* Various Quansheng firmware bugs fixed
2023-09-11 08:10:11 +00:00
* Added new bugs
2023-09-16 07:21:19 +00:00
* Mic menu includes max gain possible
2023-09-24 16:17:04 +00:00
* AM RX everywhere (left the TX as is)
2023-09-25 12:27:52 +00:00
* An attempt to improve the AM RX audio (demodulator getting saturated/overloaded in Quansheng firmware)
2023-09-24 16:17:04 +00:00
* keypad-5/NOAA button now toggles scanlist-1 on/off for current channel when held down - IF NOAA not used
2023-09-16 07:21:19 +00:00
* Better backlight times (inc always on)
2023-09-19 09:41:31 +00:00
* Live DTMF decoder option, though the decoder needs some coeff tuning changes to decode other radios it seems
2023-09-16 07:21:19 +00:00
* Various menu re-wordings (trying to reduce 'WTH does that mean ?')
2023-09-24 16:17:04 +00:00
* ..
2023-09-09 10:36:09 +00:00
2023-09-09 07:03:56 +00:00
# Compiler
arm-none-eabi GCC version 10.3.1 is recommended, which is the current version on Ubuntu 22.04.03 LTS.
Other versions may generate a flash file that is too big.
You can get an appropriate version from: https://developer.arm.com/downloads/-/gnu-rm
2023-10-05 11:22:09 +00:00
clang may be used but isn't fully supported. Resulting binaries may also be bigger.
You can get it from: https://releases.llvm.org/download.html
2023-09-09 07:03:56 +00:00
# Building
2023-10-06 09:47:02 +00:00
If you have docker installed you can use `compile-with-docker.bat` , 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 challange can be (or not) installing the docker itself.
To compile directly in windows:
1. Open windows command line and run:
```
winget install -e -h git.git Python.Python.3.8 GnuWin32.Make
winget install -e -h Arm.GnuArmEmbeddedToolchain -v "10 2021.10"
```
2. Close command line, open a new one and run:
```
pip install --user --upgrade pip
pip install crcmod
mkdir c:\projects & cd /D c:/projects
git clone https://github.com/egzumer/uv-k5-firmware-custom.git
```
3. From now on you can build the firmware by going to `c:\projects\uv-k5-firmware-custom` and running `win_make.bat` or by running a command line:
```
cd /D c:\projects\uv-k5-firmware-custom
win_make.bat
```
4. To reset the repository and pull new changes run (!!! it will delete all your changes !!!):
```
cd /D c:\projects\uv-k5-firmware-custom
git reset --hard & git clean -fd & git pull
```
2023-09-11 08:10:11 +00:00
2023-09-18 13:31:14 +00:00
I've left some notes in the win_make.bat file to maybe help with stuff.
2023-09-09 07:03:56 +00:00
# Credits
Many thanks to various people on Telegram for putting up with me during this effort and helping:
2023-10-06 09:47:02 +00:00
* [OneOfEleven ](https://github.com/OneOfEleven )
2023-09-11 08:10:11 +00:00
* [DualTachyon ](https://github.com/DualTachyon )
* [Mikhail ](https://github.com/fagci )
2023-09-09 07:03:56 +00:00
* [Andrej ](https://github.com/Tunas1337 )
2023-09-11 08:10:11 +00:00
* [Manuel ](https://github.com/manujedi )
2023-09-09 07:03:56 +00:00
* @wagner
* @Lohtse Shar
* [@Matoz ](https://github.com/spm81 )
* @Davide
* @Ismo OH2FTG
2023-09-11 08:10:11 +00:00
* [OneOfEleven ](https://github.com/OneOfEleven )
2023-09-17 03:58:27 +00:00
* @d1ced95
2023-09-09 07:03:56 +00:00
* and others I forget
# License
Copyright 2023 Dual Tachyon
https://github.com/DualTachyon
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
2023-09-16 09:08:39 +00:00
# Example changes/updates
2023-09-16 06:55:09 +00:00
< p float = "left" >
2023-10-06 06:48:45 +00:00
< img src = "/images/image1.png" width = 300 / >
< img src = "/images/image2.png" width = 300 / >
< img src = "/images/image3.png" width = 300 / >
2023-09-16 06:55:09 +00:00
< / p >
2023-09-25 17:53:02 +00:00
Video showing the AM fix working ..
2023-10-06 06:48:45 +00:00
< video src = "/images/AM_fix.mp4" > < / video >
2023-09-25 17:56:37 +00:00
2023-09-25 17:53:02 +00:00
< video src = "https://github.com/OneOfEleven/uv-k5-firmware-custom/assets/51590168/2a3a9cdc-97da-4966-bf0d-1ce6ad09779c" > < / video >