opus/sys/services/gpshost.lua

15 lines
367 B
Lua
Raw Normal View History

2018-01-12 01:53:32 +00:00
if _G.device.wireless_modem then
2016-12-11 19:24:52 +00:00
2017-10-08 21:45:01 +00:00
_G.requireInjector()
2016-12-11 19:24:52 +00:00
local Config = require('config')
local config = { }
2016-12-11 19:24:52 +00:00
Config.load('gps', config)
2017-09-14 00:02:26 +00:00
if config.host and type(config.host) == 'table' then
2018-01-12 01:53:32 +00:00
_ENV._APP_TITLE = 'GPS Daemon'
os.run(_ENV, '/rom/programs/gps', 'host', config.host.x, config.host.y, config.host.z)
2016-12-11 19:24:52 +00:00
print('GPS daemon stopped')
end
end