Skip to content
This repository was archived by the owner on Oct 26, 2025. It is now read-only.

Commit 17c40a3

Browse files
committed
add config.lua file
1 parent b7fd1a5 commit 17c40a3

1 file changed

Lines changed: 33 additions & 0 deletions

File tree

LTM/config.lua

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
--[[
2+
-- inav FrSky / CRSF Telemetry to LTM
3+
-- Designed for the Radiomaster TX16S UART set to 'LUA' and invoked via
4+
-- either a Global or Special Function
5+
--
6+
-- LTM can be used in INAV compatible ground stations such as mwp, ezgui or
7+
-- mission planner for inav, as well as antenna trackers e.g u360gts
8+
--
9+
-- Licence : GPL 3 or later
10+
--
11+
-- (c) Jonathan Hudson 2020
12+
-- https://github.com/stronnag/LTM-lua/
13+
--
14+
]]--
15+
16+
local S={}
17+
18+
-- Functionality
19+
-- If you're just using this for an antenna tracker (vice GCS), then you probably don't
20+
-- need the S, O and X frames. So change the line below from
21+
--
22+
-- S.onlyTracker = false
23+
-- to
24+
-- S.onlyTracker = true
25+
--
26+
S.onlyTracker = false
27+
28+
-- Debugging
29+
-- Don't touch this unless you appreciate the consequences, particularly when not
30+
-- in the simulator
31+
S.LOGGER = false
32+
33+
return S

0 commit comments

Comments
 (0)