1
0
mirror of https://github.com/kepler155c/opus synced 2025-07-25 05:12:51 +00:00
opus/sys/services/gpshost.lua
kepler155c@gmail.com fc8d44b60d transition tot kernel
2018-01-11 20:53:32 -05:00

15 lines
367 B
Lua

if _G.device.wireless_modem then
_G.requireInjector()
local Config = require('config')
local config = { }
Config.load('gps', config)
if config.host and type(config.host) == 'table' then
_ENV._APP_TITLE = 'GPS Daemon'
os.run(_ENV, '/rom/programs/gps', 'host', config.host.x, config.host.y, config.host.z)
print('GPS daemon stopped')
end
end