Skip to content

Commit 9a312c3

Browse files
committed
Rename Voxless to Basic
1 parent 7f146a5 commit 9a312c3

2 files changed

Lines changed: 10 additions & 10 deletions

File tree

compile-with-docker.sh

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,8 @@ broadcast() {
6060
&& cp f4hwn.broadcast* compiled-firmware/"
6161
}
6262

63-
voxless() {
64-
echo "Voxless compilation..."
63+
basic() {
64+
echo "Basic compilation..."
6565
docker run --rm -v "${PWD}/compiled-firmware:/app/compiled-firmware" $IMAGE_NAME /bin/bash -c "cd /app && make -s \
6666
ENABLE_SPECTRUM=1 \
6767
ENABLE_FMRADIO=1 \
@@ -78,9 +78,9 @@ voxless() {
7878
ENABLE_FEAT_F4HWN_CTR=0 \
7979
ENABLE_FEAT_F4HWN_NARROWER=0 \
8080
ENABLE_FEAT_F4HWN_RESCUE_OPS=0 \
81-
EDITION_STRING=Voxless \
82-
TARGET=f4hwn.voxless \
83-
&& cp f4hwn.voxless* compiled-firmware/"
81+
EDITION_STRING=Basic \
82+
TARGET=f4hwn.basic \
83+
&& cp f4hwn.basic* compiled-firmware/"
8484
}
8585

8686
rescueops() {
@@ -111,8 +111,8 @@ case "$1" in
111111
broadcast)
112112
broadcast
113113
;;
114-
voxless)
115-
voxless
114+
basic)
115+
basic
116116
;;
117117
rescueops)
118118
rescueops
@@ -121,10 +121,10 @@ case "$1" in
121121
bandscope
122122
broadcast
123123
rescueops
124-
voxless
124+
basic
125125
;;
126126
*)
127-
echo "Usage: $0 {custom|bandscope|broadcast|voxless|standard|all}"
127+
echo "Usage: $0 {custom|bandscope|broadcast|basic|standard|all}"
128128
exit 1
129129
;;
130130
esac

ui/menu.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1226,7 +1226,7 @@ void UI_DisplayMenu(void)
12261226
UI_PrintStringSmallNormal(edit, 54, 127, 1);
12271227

12281228
#if defined(ENABLE_SPECTRUM) && defined(ENABLE_FMRADIO)
1229-
UI_PrintStringSmallNormal("Voxless", 54, 127, 6);
1229+
UI_PrintStringSmallNormal("Basic", 54, 127, 6);
12301230
#elif defined(ENABLE_SPECTRUM)
12311231
UI_PrintStringSmallNormal("Bandscope", 54, 127, 6);
12321232
#elif defined(ENABLE_FMRADIO)

0 commit comments

Comments
 (0)