Skip to content

Commit 8787b4d

Browse files
added dedicated horus start script
As the Horus does not have telemetry scripts the way the taranis series has, we need to run as a one-time script, which means that background processes are not executed, and we need to go through the sd card explorer, so basically every click counts, which is why the directory is at the base of the SD card, just like the SxR and CROSSFIRE scripts.
1 parent fc0dd3d commit 8787b4d

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

src/BF/bf.lua

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
SCRIPT_HOME = "/SCRIPTS/BF"
2+
3+
protocol = assert(loadScript(SCRIPT_HOME.."/protocols.lua"))()
4+
radio = assert(loadScript(SCRIPT_HOME.."/radios.lua"))()
5+
6+
assert(loadScript(radio.preLoad))()
7+
assert(loadScript(protocol.transport))()
8+
assert(loadScript(SCRIPT_HOME.."/MSP/common.lua"))()
9+
10+
local run_ui = assert(loadScript(SCRIPT_HOME.."/ui.lua"))()
11+
12+
return { run=run_ui }

0 commit comments

Comments
 (0)