Skip to content

Commit ac13a82

Browse files
committed
Update build scripts, update README.md
1 parent 6d92e76 commit ac13a82

File tree

5 files changed

+141
-42
lines changed

5 files changed

+141
-42
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
all:
2-
bin/build.sh
2+
bin/build.sh min

README.md

+21-26
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
11
# betaflight-tx-lua-scripts-mod
2-
32
*based on release [1.3.0](https://github.com/betaflight/betaflight-tx-lua-scripts/releases/tag/1.3.0)*
43

54
## Changes
6-
75
**+ Display external telemetry templates beside betaflight screens**
86

97
**+ Configurable navigation controls, radio type independent**
@@ -18,8 +16,7 @@
1816
**+ Minified script files, shrinked down to 75% the size of 1.3.0** (thanks to [mathiasbynens/luamin](https://github.com/mathiasbynens/luamin))
1917

2018
## Notes
21-
22-
I wanted to explore the potential of the popular betaflight-tx-lua-scripts a bit, as I wasn't quit satisfied with a few things. Came up with this mod and it upgraded the UX for me so well, that I decided to share it with the community. Runs nique smooth on my FrSky Taranis Q X7, but I wasn't able to do tests with any *Horus* or other model than *FrSky Taranis* so far.
19+
Wanted to explore the potential of the popular betaflight-tx-lua-scripts a bit, as I wasn't quit satisfied with a few things. Came up with this mod and it upgraded the UX for me so well, that I decided to share it with the community. Runs nique smooth on my FrSky Taranis Q X7, but I wasn't able to do tests with any other models than FrSky so far.
2320

2421
Install and use this modified version just the way you're used to. First time users should have a glimpse at the [install instructions](#installing).
2522

@@ -35,31 +32,37 @@ Prepend `-- ` to the line to hide a page (e.g. rescue.lua and gps.lua, if you do
3532
Use relative pathnames to refer external templates.
3633
If you add or edit pages, keep in mind that the radios internal memory isn't endless.
3734

38-
### Navigation controls
39-
The code wich handles the user events was extracted from `ui.lua` into a table `ctrlSchema = { ... }` and placed in each `SCRIPTS/BF/[platform]/[platform]pre.lua` file.
35+
> *If you have TBS Crossfire, you can try* `../../../CROSSFIRE/crossfire.lua`*. The Page seems to load, but tell me if it's actually working.*
36+
37+
### Mapping navigation controls
38+
The code wich handles the user events was abstracted from `ui.lua` into a table `ctrlSchema = { ... }` and placed in each `SCRIPTS/BF/[platform]/[platform]pre.lua` file.
4039
The assignment of radio inputs to script actions depends now on this platform specific config.
4140

4241
For instance: if you want to have switching pages on the [DIAL WHEEL] input, change the condition of `ctrlSchema.display.prevPage` to `dial.left` and `ctrlSchema.display.nextPage` to `dial.right`.
4342

44-
To add a radio control schema based on its platform, just overwrite the affected table fields below the schema table (see overrides for X9E in `SCRIPTS/BF/X9/x9pre.lua` for example).
43+
To add a transmitter control schema based on its platform, just overwrite the affected table fields below the schema table (see overrides for X9E in `SCRIPTS/BF/X9/x9pre.lua` [for example](https://github.com/Matze-Jung/betaflight-tx-lua-scripts-mod/blob/7c4463aec29757763e8eb7aea49905e677711ef7/src/SCRIPTS/BF/X9/x9pre.lua#L101)).
4544

46-
### Memory warning
47-
If you just copied the files, launched the script and a `not enough memory` warning appears, probably restarting the radio is the only thing to do here. If OpenTX still complains, try to delete all `.luac` files (compiled them with LUAC 5.3, don't know if that's a problem with some radios).
45+
This concept should have the potential to implement new coming radios much easier and be handled separately from the core ui code.
4846

49-
### Test environment
50-
* OpenTX v2.2.3 on FrSky Taranis Q X7 Hardware
51-
* Betaflight 4.0.3 on OmnibusF4 FC
52-
* Companion v2.2.3 Simulator (*all FrSky, **except Horus***)
47+
### Memory warning
48+
If you just copied the files, launched the script and a `not enough memory` warning appears, probably restarting the radio is the only thing to do here. If OpenTX still complains, try to delete all `.luac` files (compiled with LUAC 5.3.5, don't know if that's a problem with some devices).
5349

54-
> *Any feedback about testing on different hardware welcome.*
50+
## Test environment
51+
* OpenTX v2.2.3 on Taranis Q X7, Betaflight 4.0.3 on OmnibusF4, R-XSR
52+
* Companion Sim v2.2.3 & 2.3.0N34 (*FrSky radios only*)
5553

56-
### Download
54+
> *Any [feedback](https://github.com/Matze-Jung/betaflight-tx-lua-scripts-mod/issues/new/choose) about testing on different hardware welcome.*
5755
56+
## Download
5857
Please go to the [releases page](https://github.com/Matze-Jung/betaflight-tx-lua-scripts-mod/releases) to download the latest files.
5958

59+
## Building from source
60+
- Be sure to have `LUA 5.2`and `Node.js` installed
61+
- Run `npm install` from the root folder to install node modules
62+
- Run `npm start`, `make` or `./bin/build.sh min` from the root folder with appropriate privileges (omit the `min` switch to build without minifying)
63+
- Compiled/minified files will be created at the `obj` folder. Copy the files to your transmitter as instructed in the [Installing section](#installing) below as if you unzipped from a downloaded file.
6064

6165
## Control schema layout
62-
6366
| State | Action | Condition (X7) |
6467
| - | - | - |
6568
| display | prevPage | *longPress.page* |
@@ -77,10 +80,9 @@ Please go to the [releases page](https://github.com/Matze-Jung/betaflight-tx-lua
7780
| | next | *dial.right* |
7881
| | cnfrm | *release.enter* |
7982
| | exit | *release.exit* or *release.menu* |
80-
83+
> *Action `func()` is fired when condition is true and in application state.*
8184
8285
## User events
83-
8486
| Action | Name |
8587
| - | - |
8688
| press | minus |
@@ -102,11 +104,9 @@ Please go to the [releases page](https://github.com/Matze-Jung/betaflight-tx-lua
102104
| | left |
103105
| | right |
104106

105-
106107
---
107108

108-
109-
# betaflight-tx-lua-scripts
109+
# betaflight-tx-lua-scripts 1.3.0
110110

111111
### Important:
112112

@@ -119,11 +119,6 @@ For now, the recommendation is for users wanting to update OpenTX from 2.2.0 to
119119
- Crossfire - v2.11 or greater
120120
- FrSky - While most receivers work fine, it's recommended to update the XSR family of receivers to their most recent firmware version to correct any known bugs in SmartPort telemetry.
121121

122-
## Building from source
123-
- Be sure to have `LUA 5.2` installed in the path
124-
- Run `./bin/build.sh` from the root folder
125-
- Compiled files will be created a the `obj` in the root folder. Copy the files to your transmitter as instructed in the `Installing` section below as if you unzipped from a downloaded file.
126-
127122
## Installing
128123

129124
!! IMPORTANT: DON'T COPY THE CONTENTS OF THIS REPOSITORY ONTO YOUR SDCARD !!

bin/build.sh

+85-15
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,105 @@
11
#!/bin/bash
22

3+
MINIFY=$1
4+
ERRCNT=0
5+
36
if [ -d obj ]; then
47
rm -fR obj/*
58
else
69
mkdir obj
710
fi
811

9-
cp -fR src/* obj
12+
if [ -d tmp ]; then
13+
rm -dfR tmp
14+
fi
15+
16+
mkdir -p tmp/SCRIPTS/BF
17+
echo
18+
luac -v
1019

11-
MANIFEST=(`find obj/ -name *.lua -type f`);
12-
LAST_FAILURE=0
20+
if [[ $MINIFY == "min" ]]; then
21+
echo
22+
echo luamin $(npm view luamin version)" "Copyright Mathias Bynens [https://github.com/mathiasbynens/luamin]
23+
fi
24+
25+
echo
26+
echo "duplicating ..."
27+
## backup minify excludes
28+
EXCLUDE=(`find src/SCRIPTS/BF/* -name *pre.lua -type f`);
29+
for x in ${EXCLUDE[@]};
30+
do
31+
mkdir -p $(dirname ${x/src/tmp})
32+
cp -fR $x ${x/src/tmp}
33+
done
34+
cp -fR src/SCRIPTS/BF/X7/exmpl1.lua tmp/SCRIPTS/BF/X7/exmpl1.lua
35+
36+
MANIFEST=(`find src/* -name *.lua -type f`);
1337

1438
if [ ${#MANIFEST[@]} -eq 0 ]; then
15-
echo -e "\e[1m\e[39m[\e[31mTEST FAILED\e[39m]\e[21m No scripts could be found!."
39+
echo -e "\e[1m\e[39m[\e[31mTEST FAILED\e[39m] \e[21mNo scripts could be found\e[21m!"
1640
exit 1
1741
fi
1842

19-
for f in ${MANIFEST[@]};
43+
rm -f tmp/tmperr
44+
touch tmp/tmperr
45+
46+
echo "building ..."
47+
48+
for file in ${MANIFEST[@]};
2049
do
21-
SRC_NAME=$f
22-
OBJ_NAME=$(dirname ${f})/$(basename ${f} .lua).luac
23-
echo -e "Compiling file \e[1m${SRC_NAME}\e[21m..."
24-
luac -s -o ${OBJ_NAME} ${SRC_NAME}
50+
SRC_PATH=$(dirname ${file})/
51+
OBJ_PATH=${SRC_PATH/src/obj}
52+
OBJ_LUA=$(basename ${file})
53+
OBJ_LUAC=${OBJ_LUA/.lua/.luac}
54+
55+
echo
56+
echo -ne "\e[1m\e[37m${file}\e[39m\e[1m\e[0m ...\e[0m"
57+
58+
mkdir -p ${OBJ_PATH}
59+
60+
if [[ $MINIFY == "min" ]]; then
61+
echo -n " minify ..."
62+
node node_modules/luamin/bin/luamin -f "$file" > "${OBJ_PATH}${OBJ_LUA}"
63+
cp -f "${file/src/tmp}" "${OBJ_PATH}${OBJ_LUA}" >/dev/null >tmp/null 2>tmp/null
64+
else
65+
cp -f "$file" "${OBJ_PATH}${OBJ_LUA}"
66+
fi
67+
68+
echo -n " compile ..."
69+
luac -s -o "${OBJ_PATH}${OBJ_LUAC}" "$file" >tmp/tmpvar 2>tmp/tmpvar
70+
STDOUT=$(<tmp/tmpvar)
71+
rm -f tmp/tmpvar
72+
2573
_fail=$?
26-
if [[ $_fail -ne 0 ]]; then
27-
LAST_FAILURE=$_fail
28-
echo -e "\e[1m\e[39m[\e[31mBUILD FAILED\e[39m]\e[21m Compilation error in file ${SRC_NAME}\e[1m"
74+
if [[ $_fail -ne 0 || $STDOUT ]]; then
75+
((ERRCNT++))
76+
echo
77+
echo `date +"%Y-%m-%d %T"` "$file $STDOUT"$'\r' >>tmp/tmperr
78+
echo -e "\e[1m\e[39m[\e[31mBUILD FAILED\e[39m] \e[1m \e[0m\e[37mCompilation error:\e[0m"
79+
echo -e "\e[1m\e[37m${STDOUT}\e[39m\e[1m\e[0m \e[0m"
80+
else
81+
echo -ne " \e[1m\e[39m[\e[32mok\e[39m]\e[1m\e[0m\e[0m"
2982
fi
3083
done
84+
echo
3185

32-
if [[ $LAST_FAILURE -eq 0 ]]; then
33-
echo -e "\e[1m\e[39m[\e[32mTEST SUCCESSFUL\e[39m]\e[21m All lua files built successfully!"
86+
LAST_FAILURES=$(<tmp/tmperr)
87+
88+
rm -dfR tmp
89+
90+
if [[ $LAST_FAILURES == '' ]]; then
91+
echo
92+
echo "copying attachments..."
93+
cp -fvR src/SOUNDS obj/SOUNDS
94+
95+
echo
96+
echo -e "\e[1m\e[39m[\e[32mSUCCESSFUL\e[39m] \e[21mAll lua files built successfully!\e[21m\e[1m\e[0m\e[0m"
97+
else
98+
echo "$LAST_FAILURES"$'\r' >> ".builderr"
99+
echo
100+
echo -e "\e[1m\e[39m[\e[31mBUILD FAILED\e[39m] \e[1m \e[0m\e[37mCompilation error(s):\e[0m"
101+
echo -e "\e[1m\e[37m${LAST_FAILURES}\e[39m\e[1m\e[0m \e[0m"$'\r'
34102
fi
35-
exit $LAST_FAILURE
103+
104+
echo
105+
exit $ERRCNT

package-lock.json

+23
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"name": "betaflight-tx-lua-scripts",
3+
"version": "1.3.0",
4+
"scripts": {
5+
"start": "bash bin/build.sh min",
6+
},
7+
"description": "",
8+
"devDependencies": {
9+
"luamin": "^1.0.4"
10+
}
11+
}

0 commit comments

Comments
 (0)