2023-09-16 07:55:09 +01:00
# Open reimplementation of the Quan Sheng UV-K5 v2.1.27 firmware
2023-09-09 08:03:56 +01:00
2023-09-09 08:18:49 +01:00
This repository is a cloned and customized version of DualTachyon's open firmware found here ..
2023-09-09 08:03:56 +01:00
2023-09-30 17:14:48 +01:00
https://github.com/DualTachyon/uv-k5-firmware .. a cool achievement !
2023-09-09 08:03:56 +01:00
2023-11-09 12:38:23 +00:00
Use this firmware/code ENTIRELY at your own risk. This firmware is totally experimental, and at times will go completely tits up (break your radio).
2023-09-09 08:18:49 +01:00
2023-11-09 12:38:23 +00:00
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).
2023-10-12 00:00:50 +01:00
2023-11-08 11:27:26 +00:00
You're on your own.
2023-11-08 17:05:08 +00:00
2023-11-08 11:27:26 +00:00
NO REFUNDS, ever !
2023-11-08 17:05:08 +00:00
## Observed radio boot problems
2023-11-09 12:38:23 +00:00
After having two UV-K5(8) radios for a while now, and I don't know how many programming lead insertions/deinsertions (lots n lots!) both radios are now having trouble booting up into either the bootloader and/or the firmware.
2023-11-08 17:05:08 +00:00
2023-11-09 12:39:22 +00:00
I suspect the reason being something to do with the the 3.5mm/2.5mm mic jack sockets or the volume control pot, either that or broken thru-hole plating in the PCB or such like.
2023-11-08 17:05:08 +00:00
2023-11-09 09:26:54 +00:00
Need to find matching replacements to confirm this though (or just temp short the terminals that are suppose to be shorted at power on).
2023-11-08 17:05:08 +00:00
2023-11-08 17:17:16 +00:00
< p float = "left" >
2023-11-09 09:25:30 +00:00
< img src = "/images/top.png" height = 500 / >
< img src = "/images/bot.png" height = 500 / >
2023-11-08 17:17:16 +00:00
< / p >
2023-11-08 17:05:08 +00:00
# Radio performance
2023-09-25 18:08:21 +01:00
2023-11-09 12:38:23 +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 18:08:21 +01:00
2023-10-05 17:38:25 +01:00
But, they are nice toys for the price, fun to play with.
2023-09-25 18:08:21 +01:00
2023-09-09 08:03:56 +01:00
# User customization
2023-11-09 12:38:23 +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-10-18 11:31:30 +01:00
You'll find the options at the top of "Makefile" ('0' = remove code, '1' = include code) ..
2023-09-14 11:16:45 +01:00
2023-09-14 20:43:02 +01:00
```
2023-10-16 10:47:43 +01:00
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
2023-10-20 21:40:17 +08:00
ENABLE_LTO := 1 **experimental, reduces size of compiled firmware but might break EEPROM reads (OVERLAY will be disabled if you enable this)
2023-10-16 10:47:43 +01:00
ENABLE_UART := 1 without this you can't configure radio via PC
ENABLE_UART_DEBUG := 0 just for code debugging, it sends debug info along the USB serial connection (programming lead)
ENABLE_AIRCOPY := 1 clone radio-to-radio via RF
2023-10-18 11:31:30 +01:00
ENABLE_AIRCOPY_REMEMBER_FREQ := 1 remember the aircopy frequency
2023-10-16 10:47:43 +01:00
ENABLE_AIRCOPY_RX_REBOOT := 0 auto reboot on an aircopy successful RX completion
2023-10-28 14:07:41 +01:00
ENABLE_FMRADIO_64_76 := 0 enable FM radio 64MHz ~ 76MHz
2023-10-24 11:47:49 +01:00
ENABLE_FMRADIO_76_90 := 0 enable FM radio 76MHz ~ 90MHz
ENABLE_FMRADIO_76_108 := 0 enable FM radio 76MHz ~ 108MHz
2023-10-22 23:59:47 +01:00
ENABLE_FMRADIO_875_108 := 1 enable FM radio 87.5MHz ~ 108MHz
2023-10-30 11:23:56 +00:00
ENABLE_FMRADIO_64_108 := 0 enable the FM radios full frequency range
2023-10-20 21:40:17 +08:00
ENABLE_NOAA := 0 everything NOAA (only of any use in the USA)
2023-10-16 10:47:43 +01:00
ENABLE_VOICE := 0 want to hear voices ?
ENABLE_MUTE_RADIO_FOR_VOICE := 1 mute the radios audio when a voice is playing
2023-10-20 21:40:17 +08:00
ENABLE_VOX := 0 voice operated transmission
2023-11-02 14:38:03 +00:00
ENABLE_VOX_MORE_SENSITIVE := 1 make VOX more sensitive
2023-10-18 11:31:30 +01:00
ENABLE_REDUCE_LOW_MID_TX_POWER := 1 reduce the low and mid TX power levels (high remains unchanged)
2023-10-20 21:40:17 +08:00
ENABLE_ALARM := 0 TX alarms
ENABLE_1750HZ := 0 side key 1750Hz TX tone (older style repeater access)
2023-10-31 22:02:54 +00:00
ENABLE_MDC1200 := 0 enable MDC1200 TX/RX + menu TX option
ENABLE_MDC1200_SHOW_OP_ARG := 1 show RX opcode and argument values when MDC1200 is RX'ed
2023-11-05 23:20:38 +00:00
ENABLE_MDC1200_SIDE_BEEP := 1 enable short side tone/beep when MDC1200 is sent - so user knows when they can start taking after PTT pressed
2023-10-18 11:31:30 +01:00
ENABLE_PWRON_PASSWORD := 0 include power-on password code
2023-10-16 10:47:43 +01:00
ENABLE_RESET_AES_KEY := 1 '1' = reset/clear the AES key stored in the eeprom (only if it's set)
ENABLE_BIG_FREQ := 0 big font frequencies (like original QS firmware)
2023-11-06 16:20:02 +00:00
ENABLE_SHOW_FREQS_CHAN := 1 show the channel name under the frequency if the frequency is found in a channel
2023-10-16 10:47:43 +01:00
ENABLE_SMALL_BOLD := 1 bold channel name/no. (when name + freq channel display mode)
2023-10-23 11:46:51 +01:00
ENABLE_TRIM_TRAILING_ZEROS := 1 trim away any trailing zeros on frequencies
2023-10-16 10:47:43 +01:00
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/disable the radios hidden frequency calibration menu
2023-10-22 22:57:47 +01:00
ENABLE_TX_UNLOCK := 0 allow TX everywhere EXCEPT airband (108~137) .. TX harmonic content will cause interference to other services, do so entirely at your own risk !
2023-10-18 11:31:30 +01:00
ENABLE_CTCSS_TAIL_PHASE_SHIFT := 0 standard CTCSS tail phase shift rather than QS's own 55Hz tone method
ENABLE_CONTRAST := 0 add contrast menu
2023-10-16 10:47:43 +01:00
ENABLE_BOOT_BEEPS := 0 gives user audio feedback on volume knob position at boot-up
2023-10-18 00:27:52 +01:00
ENABLE_DTMF_CALL_FLASH_LIGHT := 1 flash the flash light LED when a DTMF call is received
2023-10-29 22:33:38 +00:00
ENABLE_FLASH_LIGHT_SOS_TONE := 1 also do SOS in morse
2023-10-16 10:47:43 +01:00
ENABLE_SHOW_CHARGE_LEVEL := 0 show the charge level when the radio is on charge
ENABLE_REVERSE_BAT_SYMBOL := 1 mirror the battery symbol on the status bar (+ pole on the right)
2023-11-05 23:16:19 +00:00
ENABLE_FREQ_SEARCH_LNA := 0 keep this disabled
2023-10-20 21:40:17 +08:00
ENABLE_FREQ_SEARCH_TIMEOUT := 0 timeout if FREQ not found when using F+4 search function
2023-10-16 10:47:43 +01:00
ENABLE_CODE_SEARCH_TIMEOUT := 0 timeout if CTCSS/CDCSS not found when using F+* search function
2023-11-10 07:31:50 +00:00
ENABLE_SCAN_IGNORE_LIST := 1 ignore selected frequencies when scanning - add freqs to list with short */scan button when freq scanning, remove freq from list with long press MENU when not scanning
2023-11-09 12:38:23 +00:00
ENABLE_SCAN_RANGES := 0 adds menu option to auto select frequency scan range/step depending on your initial frequency
2023-10-18 11:31:30 +01:00
ENABLE_KILL_REVIVE := 0 include kill and revive code
2023-10-20 21:40:17 +08:00
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 := 1 show debug data for the AM fix (still tweaking it)
2023-10-16 10:47:43 +01:00
ENABLE_SQUELCH_MORE_SENSITIVE := 1 make squelch levels a little bit more sensitive - I plan to let user adjust the values themselves
ENABLE_SQ_OPEN_WITH_UP_DN_BUTTS := 1 open the squelch when holding down UP or DN buttons when in frequency mode
2023-10-20 21:40:17 +08:00
ENABLE_FASTER_CHANNEL_SCAN := 1 increase the channel scan speed, but also make the squelch more twitchy
ENABLE_COPY_CHAN_TO_VFO_TO_CHAN := 1 long press M, copy channel to VFO, or VFO to channel
2023-10-23 14:02:54 +01:00
ENABLE_RX_SIGNAL_BAR := 1 enable a menu option for showing an RSSI bar graph
ENABLE_TX_AUDIO_BAR := 1 enable a menu option for showing a TX audio level bar
ENABLE_SIDE_BUTT_MENU := 1 enable menu option for configuring the programmable side buttons
2023-10-24 11:47:49 +01:00
ENABLE_KEYLOCK := 1 enable keylock menu option + keylock code
2023-11-19 10:45:46 +00:00
ENABLE_PANADAPTER := 1 centered on the selected VFO RX frequency, only shows if dual-watch is disabled
ENABLE_PANADAPTER_PEAK_FREQ := 0 show the peak panadapter frequency
2023-10-16 10:47:43 +01:00
#ENABLE_SINGLE_VFO_CHAN := 0 not yet implemented - single VFO on display when possible
2023-09-14 20:43:02 +01:00
```
2023-09-14 09:56:30 +01:00
2023-10-04 22:56:54 +01:00
# New/modified function keys
2023-11-10 07:31:50 +00:00
* Long-press 'M' ... Remove current frequency from ignore list (only if it's in the ignore frequency list)
* Long-press 'M' ... Copy current frequency into a channel (takes you into the channel save menu)
* Long-press 'M' ... Copy current channel into the same VFO, then switch the VFO to frequency mode
2023-10-05 10:03:07 +01:00
*
2023-11-10 07:31:50 +00:00
* Long-press '5' ... Toggle selected channel scanlist setting (if NOAA is disabled in Makefile)
2023-10-05 14:40:34 +01:00
* or
2023-11-10 07:31:50 +00:00
* Long-press '7' ... Toggle selected channel scanlist setting (if VOX is disabled in Makefile)
2023-10-05 10:03:07 +01:00
*
2023-11-10 07:31:50 +00:00
* Long-press '*' ... Start scanning, then toggles the scanning between scanlists 1, 2 or ALL channels
*
* Short-press '*' .. Add current frequency to the frequency ignore list (only if in frequency scan mode)
2023-10-04 22:56:54 +01:00
2023-10-06 19:31:29 +01:00
# Edit channel/memory name
1. Press Menu button
2. Scroll to "CH NAM" (around number 17)
3. Press the Menu button to enter
4. Use up/down keys to choose the desired channel to edit
5. Press the Menu button again to enter edit name mode
6. Use the up/down keys to cycle through the letters etc
7. Press the Menu button again to move to the next character position
8. Repeat steps 6 and/or 7 till you reach the end
9. When it pops up the "Sure?" text, press Menu button to save, or Exit to cancel
Press the Exit button at any time to cancel the edit and return to the main menu.
2023-11-10 07:31:50 +00:00
Sounds complicated but once you done it a couple of times you'll be fine.
2023-10-06 19:31:29 +01:00
2023-11-09 12:38:23 +00:00
When you're editing the name, you can enter digits (0 ~ 9) directly without having to use the up/down buttons to find them.
2023-10-06 19:31:29 +01:00
2023-09-24 17:17:04 +01:00
# Some changes made from the Quansheng firmware
2023-09-09 08:03:56 +01:00
2023-09-16 10:08:39 +01:00
* Various Quansheng firmware bugs fixed
2023-09-11 09:10:11 +01:00
* Added new bugs
2023-09-16 08:21:19 +01:00
* Mic menu includes max gain possible
2023-09-24 17:17:04 +01:00
* AM RX everywhere (left the TX as is)
2023-09-25 13:27:52 +01:00
* An attempt to improve the AM RX audio (demodulator getting saturated/overloaded in Quansheng firmware)
2023-09-24 17:17:04 +01:00
* keypad-5/NOAA button now toggles scanlist-1 on/off for current channel when held down - IF NOAA not used
2023-09-16 08:21:19 +01:00
* Better backlight times (inc always on)
2023-09-19 10:41:31 +01:00
* Live DTMF decoder option, though the decoder needs some coeff tuning changes to decode other radios it seems
2023-09-16 08:21:19 +01:00
* Various menu re-wordings (trying to reduce 'WTH does that mean ?')
2023-10-15 11:29:26 +01:00
* AIRCOPY RX'ing radio now requests packet resends from TX'ing radio if RX'ed packet is lost/corrupted
2023-09-24 17:17:04 +01:00
* ..
2023-09-09 11:36:09 +01:00
2023-10-19 14:37:01 +01:00
# Symbol information
< img src = "/images/symbols.png" / >
2023-09-09 08:03:56 +01: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 12:22:09 +01: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 08:03:56 +01:00
# Building
To build the firmware, you need to fetch the submodules and then run make:
```
git submodule update --init --recursive --depth=1
make
```
2023-09-11 08:57:48 +01:00
To compile directly in windows without the need of a linux virtual machine:
2023-09-11 08:54:27 +01:00
```
2023-09-11 11:56:59 +01:00
1. Download and install "gcc-arm-none-eabi-10.3-2021.10-win32.exe" from https://developer.arm.com/downloads/-/gnu-rm
2. Download and install "gnu_make-3.81.exe" from https://gnuwin32.sourceforge.net/packages/make.htm
2023-11-06 09:28:36 +00:00
3. If need be (probably not), also download Dependency.zip that includes the library files from https://gnuwin32.sourceforge.net/packages/make.htm
2023-09-25 07:12:08 +01:00
2023-10-05 09:17:38 +01:00
3. You may need to (I didn't) manualy add gcc path to your OS environment PATH.
2023-09-25 07:12:08 +01:00
ie add C:\Program Files (x86)\GNU Arm Embedded Toolchain\10 2021.10\bin
2023-10-05 09:17:38 +01:00
4. You may need to reboot your PC after installing the above
2023-09-11 08:54:27 +01:00
```
2023-09-09 08:03:56 +01:00
2023-09-11 11:56:59 +01:00
Then you can run 'win_make.bat' from the directory you saved this source code too.
2023-09-16 07:55:09 +01:00
You may need to edit the bat file (path to make.exe) depending on where you installed the above two packages too.
2023-09-11 09:10:11 +01:00
2023-09-18 14:31:14 +01:00
I've left some notes in the win_make.bat file to maybe help with stuff.
2023-09-09 08:03:56 +01:00
# Credits
Many thanks to various people on Telegram for putting up with me during this effort and helping:
2023-09-11 09:10:11 +01:00
* [DualTachyon ](https://github.com/DualTachyon )
* [Mikhail ](https://github.com/fagci )
2023-09-09 08:03:56 +01:00
* [Andrej ](https://github.com/Tunas1337 )
2023-09-11 09:10:11 +01:00
* [Manuel ](https://github.com/manujedi )
2023-09-09 08:03:56 +01:00
* @wagner
* @Lohtse Shar
* [@Matoz ](https://github.com/spm81 )
* @Davide
* @Ismo OH2FTG
2023-09-11 09:10:11 +01:00
* [OneOfEleven ](https://github.com/OneOfEleven )
2023-09-17 04:58:27 +01:00
* @d1ced95
2023-09-09 08:03:56 +01: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 10:08:39 +01:00
# Example changes/updates
2023-09-16 07:55:09 +01:00
< p float = "left" >
2023-10-06 07:48:45 +01:00
< img src = "/images/image1.png" width = 300 / >
2023-11-19 08:06:20 +00:00
< img src = "/images/image4.png" width = 300 / >
2023-09-16 07:55:09 +01:00
< / p >
2023-09-25 18:53:02 +01:00
2023-11-22 12:46:24 +00:00
< video src = "https://github.com/OneOfEleven/uv-k5-firmware-custom/assets/3120d0fe-6c82-48f1-9f4a-2cf0fb9a1190" > < / video >
2023-11-22 12:44:05 +00:00
< video src = "https://github.com/OneOfEleven/uv-k5-firmware-custom/assets/51590168/2a3a9cdc-97da-4966-bf0d-1ce6ad09779c" > < / video >
2023-10-14 11:01:08 +01:00
# WARNING if trying to use K5/K6 to TX out of band ..
2023-10-14 14:25:31 +01:00
Most of the radios TX energy is concentrated into the harmonics and other spurious carriers rather than within the fundamental ..
2023-10-14 11:01:08 +01:00
2023-10-14 11:02:53 +01:00
< img src = "/images/TX_51MHz.png" / >
< img src = "/images/TX_70MHz.png" / >
2023-10-14 14:19:23 +01:00
You have been warned !