Go to file
2023-09-04 19:06:37 +01:00
.github/workflows Update main.yaml 2023-09-02 21:29:21 +01:00
app Several cleanups. 2023-09-04 17:43:16 +01:00
bsp/dp32g030
driver Several cleanups. 2023-09-04 17:43:16 +01:00
external
hardware/dp32g030 Added AES definition file. 2023-09-01 20:21:28 +01:00
helper Some fixes and improvements. 2023-09-04 01:15:42 +01:00
ui More scan renames. 2023-09-04 15:26:28 +01:00
.gitattributes
.gitignore
.gitmodules
audio.c Various renames/cleanups. 2023-09-03 17:47:48 +01:00
audio.h Fixed some missing beeps. 2023-09-02 16:57:57 +01:00
bitmaps.c
bitmaps.h
board.c For consistency. 2023-09-02 14:42:44 +01:00
board.h
compile-with-docker.sh
dcs.c
dcs.h
Dockerfile
dp32g030.cfg
firmware.ld
font.c
font.h
frequencies.c Improved the frequency check code. 2023-09-03 02:07:08 +01:00
frequencies.h
functions.c State machine fix and readability improvements. 2023-09-04 12:44:29 +01:00
functions.h
init.c Optimised BSS_Init. 2023-09-01 19:41:53 +01:00
LICENSE
main.c Some fixes and improvements. 2023-09-04 01:15:42 +01:00
Makefile Show version over UART and boot. 2023-09-02 23:02:42 +01:00
misc.c Restored variable to its previous type. 2023-09-04 19:06:37 +01:00
misc.h Restored variable to its previous type. 2023-09-04 19:06:37 +01:00
printf_config.h
radio.c Some fixes and improvements. 2023-09-04 01:15:42 +01:00
radio.h Various renames/cleanups. 2023-09-03 17:47:48 +01:00
README.md
scheduler.c More scan renames. 2023-09-04 15:26:28 +01:00
settings.c
settings.h
sram-overlay.c Workaround for arm-none-eabi-gcc 12.3. 2023-09-01 19:40:10 +01:00
sram-overlay.h
start.S
version.c Show version over UART and boot. 2023-09-02 23:02:42 +01:00
version.h Show version over UART and boot. 2023-09-02 23:02:42 +01:00

Open reimplementation of the Quan Sheng UV K5 v2.1.27 firmware

This currently works for me, but use at your own risk.

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 a correct 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

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.