app | ||
bsp/dp32g030 | ||
driver | ||
external | ||
hardware/dp32g030 | ||
helper | ||
ui | ||
audio.c | ||
audio.h | ||
bitmaps.c | ||
bitmaps.h | ||
board.c | ||
board.h | ||
dcs.c | ||
dcs.h | ||
dp32g030.cfg | ||
firmware | ||
firmware.bin | ||
firmware.ld | ||
firmware.packed.bin | ||
font5x7.png | ||
font.c | ||
font.h | ||
frequencies.c | ||
frequencies.h | ||
functions.c | ||
functions.h | ||
fw-pack.py | ||
init.c | ||
LICENSE | ||
main.c | ||
Makefile | ||
misc.c | ||
misc.h | ||
printf_config.h | ||
radio.c | ||
radio.h | ||
README.md | ||
scheduler.c | ||
settings.c | ||
settings.h | ||
sram-overlay.c | ||
sram-overlay.h | ||
start.S | ||
version.c | ||
version.h | ||
win_make.bat |
Open reimplementation of the Quan Sheng UV K5 v2.1.27 firmware
This repository is a cloned and customized version of DualTachyon's open firmware found here ..
https://github.com/DualTachyon/uv-k5-firmware
Am amazing achievement if you ask me !
User customization
This version you can customize at compile time by making various changes to the makefile. You can edit those changes by (currently) editing the MakeFile, look for these lines ..
- CFLAGS += -DDISABLE_BIG_FREQ .. show frequencies using smaller font
- CFLAGS += -DDISABLE_NOAA .. remove NOAA channels option from the firmware
- CFLAGS += -DDISABLE_VOICE .. remove spoken VOICES option from the firmware
- CFLAGS += -DDISABLE_AIRCOPY .. remove AIRCOPY option
- CFLAGS += -DDISABLE_ALARM .. remove the ALARM transmit option from the firmware
- CFLAGS += -DKEEP_MEM_NAME .. keep the memory channels name when re-saving a channel
- CFLAGS += -DCHAN_NAME_FREQ .. show the channel frequency (as well as channel number/name)
- CFLAGS += -DRX_ANY_FREQ .. allow RX on any frequency from 18MHz to 1300MHz
- #CFLAGS += -DENABLE_TX_WHEN_AM .. enable TX when radio set to AM (radio does NOT do AM, the adverts are false)
- #CFLAGS += -DSINGLE_VFO_CHAN .. (not yet implemented) show a single VFO/CHANNEL if dual-watch/cross-band are disabled
- #CFLAGS += -DBAND_SCOPE .. (not yet implemented) add a band scope/spectrum/panadapter option
To enable the custom option just uncomment the line by removing the starting '#'.
Other changes made
- Various bugs fixed that the QS firmware had (TX tail, Menu confimation etc)
- Added new bugs
- Battery voltage boot screen now includes percentage
- Slightly less intense menu style
- AM RX now allowed everywhere, although the radio really doesn't do AM, the adverts are a con !
- Finer RSSI bar steps
- Nicer/cleaner big numeric font than original QS big numeric font
- Various menu re-wordings - to try and reduce 'WTH does that mean ?'
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
Building
To build the firmware, you need to fetch the submodules and then run make:
git submodule update --init --recursive --depth=1
make
To compile directly in windows without the need of a linux virtual machine:
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
3. You may (or may not) need to reboot your PC after installing the above
Then you can run 'win_make.bat' from the directory you saved this source code too. You may need to edit the bat file (path to make.exe) depending on where you installed 'gnu_make' too.
Credits
Many thanks to various people on Telegram for putting up with me during this effort and helping:
- DualTachyon
- Mikhail
- Andrej
- Manuel
- @wagner
- @Lohtse Shar
- @Matoz
- @Davide
- @Ismo OH2FTG
- OneOfEleven
- 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.