11 lines
496 B
Lua
11 lines
496 B
Lua
|
|
-- ap.lua -- launcher for v3 observer-autopiloten i autopilot/.
|
||
|
|
-- ap -> meny
|
||
|
|
-- ap setup -> foerstegangs-wizard (wiring + sign test)
|
||
|
|
-- ap fly -> full lukket sloyfe
|
||
|
|
-- ap standby -> vent paa ENGAGE fra pilot-konsollen
|
||
|
|
-- ap boot -> oppstartsvalg (wizard hvis profil mangler, ellers standby)
|
||
|
|
-- ap monitor / manual / cal / observe / signtest / wiring
|
||
|
|
local args = { ... }
|
||
|
|
local unpack = table.unpack or unpack
|
||
|
|
shell.run("autopilot/main", unpack(args))
|