kamilsss655/README.md

245 lines
15 KiB
Markdown
Raw Normal View History

2023-11-29 07:09:48 +00:00
# Open re-implementation of the Quansheng UV-K5 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.
All is a cloned and customized version of DualTachyon's open firmware found here ..
https://github.com/DualTachyon/uv-k5-firmware .. a cool achievement !
> [!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.
Anyway, have fun.
## Table of Contents
* [Main Features](#main-features)
* [Manual](#manual)
* [Radio Performance](#radio-performance)
* [User Customization](#user-customization)
* [Compiler](#compiler)
* [Building](#building)
* [Credits](#credits)
* [License](#license)
* [Example changes/updates](#example-changesupdates)
## Main features:
2023-11-06 14:57:22 +00:00
* many of OneOfEleven mods:
2023-11-07 16:09:07 +00:00
* AM fix, huge improvement in reception quality
2023-11-29 07:09:48 +00:00
* long press buttons functions replicating F+ action
2023-11-06 14:57:22 +00:00
* fast scanning
* channel name editing in the menu
* channel name + frequency display option
2023-11-29 07:09:48 +00:00
* shortcut for scan-list assignment (long press `5 NOAA`)
* scan-list toggle (long press `* Scan` while scanning)
2023-11-06 14:57:22 +00:00
* configurable button function selectable from menu
* battery percentage/voltage on status bar, selectable from menu
2023-11-06 14:57:22 +00:00
* longer backlight times
* mic bar
* RSSI s-meter
* more frequency steps
* squelch more sensitive
* fagci spectrum analyzer (**F+5** to turn on)
2023-12-09 16:02:53 +00:00
* some other mods introduced by egzumer:
2023-11-06 14:57:22 +00:00
* SSB demodulation (adopted from fagci)
* backlight dimming
2023-11-29 07:09:48 +00:00
* battery voltage calibration from menu
2023-11-07 20:49:20 +00:00
* better battery percentage calculation, selectable for 1600mAh or 2200mAh
2023-11-06 14:57:22 +00:00
* more configurable button functions
2023-11-29 07:09:48 +00:00
* long press MENU as another configurable button
2023-11-06 14:57:22 +00:00
* better DCS/CTCSS scanning in the menu (`* SCAN` while in RX DCS/CTCSS menu item)
* Piotr022 s-meter style
* restore initial freq/channel when scanning stopped with EXIT, remember last found transmission with MENU button
* reordered and renamed menu entries
* LCD interference crash fix
2023-12-09 16:02:53 +00:00
* some mods introduced by me:
2023-12-17 15:58:05 +00:00
* `RxOff` menu setting offsets the receive frequency by any specified amount in the range of `0-150Mhz` for use with upconverters. Allows to fine tune frequency (in `1kHz` steps) as opposed to other implementations that use hardcoded offsets. (**IMPORTANT: Make sure you set this value to 0 if not using an upconverter, when used for the first time. Otherwise it might load some random offset from EEPROM.**)
2023-12-22 11:05:02 +00:00
* `ENABLE_SPECTRUM_COPY_VFO` allowing to exit the spectrum and fine tuning screen with PTT button and copy current peak frequency, modulation, step, bandwidth to VFO. Also entering spectrum will carry these settings from VFO (full integration). Now to enter fine tuning screen in spectrum press MENU button. This allows you to save and respond to the frequencies found much faster.
2023-12-17 15:58:05 +00:00
* `ENABLE_SPECTRUM_SHOW_CHANNEL_NAME` shows channel number and channel name of the peak frequency in spectrum
2023-12-21 18:42:20 +00:00
* `ENABLE_ULTRA_LOW_POWER_TX` flag allows to transmit with ultra low power (thanks to egzumer work) for local testing of communication between radios.
2023-12-25 22:19:48 +00:00
* `ENABLE_ADJUSTABLE_RX_GAIN_SETTINGS` keeps the rx gain settings set in spectrum mode after exit (otherwise these are always overwritten to default value), this makes much more sense considering that we have a radio with user adjustable gain so why not use it to adjust to current radio conditions, maximum gain allows to greatly increase reception in scan memory channels mode (in this configuration default gain settings are only set at boot and when exiting AM modulation mode to set it to sane value after am fix)
* `ENABLE_SPECTRUM_CHANNEL_SCAN` this enables spectrum channel scan mode (enter by going into memory mode and press F+5, this allows SUPER fast channel scanning (4.5x faster than regular scanning), regular scan of 200 memory channels takes roughly 18 seconds, spectrum memory scan takes roughly 4 seconds, if you have less channels stored i.e 50 - the spectrum memory scan will take only **1 second**
* `VOXSen` fixed and improved VOX sensitivity setting from menu. Added `VoxDel` - VOX delay setting allowing to set value to `0` for no VOX delay which might be useful for packet radio enthusiasts (APRS etc.).
2023-10-19 23:35:11 +00:00
2023-12-22 10:54:05 +00:00
## Keyboard shortcuts
2023-12-22 11:01:57 +00:00
* In `VFO mode` long press `5` to enter `scan range mode`
2023-12-22 17:25:01 +00:00
* In `VFO mode` long press `5` then press `F+5` to enter `spectrum scan range mode`
2023-12-25 22:19:48 +00:00
* In `Memory Channel mode` press `F+5` to enter **SUPER FAST** `spectrum channel mode`
2023-12-22 11:01:57 +00:00
* Press `F+5` to enter `spectrum mode`
* While in `spectrum mode` press `MENU` to enter `fine tuning mode`
* While in `spectrum mode` or `fine tuning mode` short press `PTT` to copy current modulation, step, frequency, bw and enter `VFO mode`
* While in `spectrum channel mode` press `4` to toggle scan lists.
2023-12-22 10:54:05 +00:00
2023-11-29 07:09:48 +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-11-29 07:09:48 +00:00
## Radio performance
2023-09-25 17:08:21 +00:00
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
2023-11-29 07:09:48 +00:00
non-existent (just like Quansheng's firmware).
2023-10-05 16:38:25 +00:00
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-11-29 07:09:48 +00:00
## User customization
2023-09-09 07:03:56 +00:00
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
```
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 := 0 DTMF calling fuctionality, sending calls, receiving calls, group calls, contacts list etc.
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
2023-12-27 12:09:04 +00:00
ENABLE_SQUELCH_MORE_SENSITIVE := 0 make squelch levels a little bit more sensitive - this has been reported to cause radio freeze in presence of strong signals
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`
2023-12-30 17:20:57 +00:00
ENABLE_REDUCE_LOW_POWER := 1 makes low power settings even lower (L=0.6W M=3.56W H=4.67W (f=147Mhz))
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)
ENABLE_SPECTRUM_COPY_VFO := 1 pressing MENU in spectrum mode will exit and copy current peak frequency, bw, step, modulation to current VFO, also entering spectrum will carry these settings from VFO (full integration)
ENABLE_SPECTRUM_SHOW_CHANNEL_NAME := 1 shows channel number and channel name of the peak frequency in spectrum
ENABLE_ULTRA_LOW_POWER_TX := 0 transmits with ultra low power. useful for dev/testing
ENABLE_ADJUSTABLE_RX_GAIN_SETTINGS := 1 keeps the rx gain settings set in spectrum mode after exit (otherwise these are always overwritten to default value), this makes much more sense considering that we have a radio with user adjustable gain so why not use it to adjust to current radio conditions, maximum gain allows to greatly increase reception in scan memory channels mode (in this configuration default gain settings are only set at boot and when exiting AM modulation mode to set it to sane value after am fix)
2023-12-25 22:19:48 +00:00
ENABLE_SPECTRUM_CHANNEL_SCAN := 1 this enables spectrum channel scan mode (enter by going into memory mode and press F+5, this allows SUPER fast channel scanning (4.5x faster than regular scanning), regular scan of 200 memory channels takes roughly 18 seconds, spectrum memory scan takes roughly 4 seconds, if you have less channels stored i.e 50 - the spectrum memory scan will take only **1 second**
2023-09-14 19:43:02 +00:00
```
2023-09-14 08:56:30 +00:00
2023-09-09 10:36:09 +00:00
2023-11-29 07:09:48 +00:00
## Compiler
2023-09-09 07:03:56 +00:00
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-11-29 07:09:48 +00:00
## Building
2023-09-09 07:03:56 +00:00
2023-11-29 07:09:48 +00:00
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.
2023-10-06 09:47:02 +00:00
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-11-29 07:09:48 +00:00
## Credits
2023-09-09 07:03:56 +00:00
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
2023-11-29 07:09:48 +00:00
## License
2023-09-09 07:03:56 +00:00
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-11-29 07:09:48 +00:00
## Example changes/updates
2023-09-16 06:55:09 +00:00
<p float="left">
<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 ..
<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>