Rename Voxless to Basic

This commit is contained in:
Armel FAUVEAU
2025-02-20 03:56:05 +01:00
parent 7f146a5857
commit 9a312c3526
2 changed files with 10 additions and 10 deletions

View File

@@ -60,8 +60,8 @@ broadcast() {
&& cp f4hwn.broadcast* compiled-firmware/" && cp f4hwn.broadcast* compiled-firmware/"
} }
voxless() { basic() {
echo "Voxless compilation..." echo "Basic compilation..."
docker run --rm -v "${PWD}/compiled-firmware:/app/compiled-firmware" $IMAGE_NAME /bin/bash -c "cd /app && make -s \ docker run --rm -v "${PWD}/compiled-firmware:/app/compiled-firmware" $IMAGE_NAME /bin/bash -c "cd /app && make -s \
ENABLE_SPECTRUM=1 \ ENABLE_SPECTRUM=1 \
ENABLE_FMRADIO=1 \ ENABLE_FMRADIO=1 \
@@ -78,9 +78,9 @@ voxless() {
ENABLE_FEAT_F4HWN_CTR=0 \ ENABLE_FEAT_F4HWN_CTR=0 \
ENABLE_FEAT_F4HWN_NARROWER=0 \ ENABLE_FEAT_F4HWN_NARROWER=0 \
ENABLE_FEAT_F4HWN_RESCUE_OPS=0 \ ENABLE_FEAT_F4HWN_RESCUE_OPS=0 \
EDITION_STRING=Voxless \ EDITION_STRING=Basic \
TARGET=f4hwn.voxless \ TARGET=f4hwn.basic \
&& cp f4hwn.voxless* compiled-firmware/" && cp f4hwn.basic* compiled-firmware/"
} }
rescueops() { rescueops() {
@@ -111,8 +111,8 @@ case "$1" in
broadcast) broadcast)
broadcast broadcast
;; ;;
voxless) basic)
voxless basic
;; ;;
rescueops) rescueops)
rescueops rescueops
@@ -121,10 +121,10 @@ case "$1" in
bandscope bandscope
broadcast broadcast
rescueops rescueops
voxless basic
;; ;;
*) *)
echo "Usage: $0 {custom|bandscope|broadcast|voxless|standard|all}" echo "Usage: $0 {custom|bandscope|broadcast|basic|standard|all}"
exit 1 exit 1
;; ;;
esac esac

View File

@@ -1226,7 +1226,7 @@ void UI_DisplayMenu(void)
UI_PrintStringSmallNormal(edit, 54, 127, 1); UI_PrintStringSmallNormal(edit, 54, 127, 1);
#if defined(ENABLE_SPECTRUM) && defined(ENABLE_FMRADIO) #if defined(ENABLE_SPECTRUM) && defined(ENABLE_FMRADIO)
UI_PrintStringSmallNormal("Voxless", 54, 127, 6); UI_PrintStringSmallNormal("Basic", 54, 127, 6);
#elif defined(ENABLE_SPECTRUM) #elif defined(ENABLE_SPECTRUM)
UI_PrintStringSmallNormal("Bandscope", 54, 127, 6); UI_PrintStringSmallNormal("Bandscope", 54, 127, 6);
#elif defined(ENABLE_FMRADIO) #elif defined(ENABLE_FMRADIO)