-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathinit2.lua
61 lines (53 loc) · 2.02 KB
/
init2.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
if node.flashindex() == nil then
-- no LFS image. Perhaps it failed to flash?
if file.exists("luac.out.stage") and not file.exists("luac.out") then
-- Looks like we tried once before, indeed. Try again.
node.flashreload("luac.out.stage")
end
end
file.remove("luac.out.stage") -- remove stage file from last attempt
-- Do we have a new LFS blob? If so, install it.
if file.exists("luac.out") then
print("INIT2","Updating LFS image. Will reboot if things go well.")
file.rename("luac.out", "luac.out.stage")
node.flashreload("luac.out.stage")
error("INIT2", "Failed to update LFS!")
end
-- Kick the GC over to a less hyperactive mode of operation;
-- limit the Lua heap to 24KiB so as to leave room for TLS.
node.egc.setmode(node.egc.ON_MEM_LIMIT, 24576)
-- It's early in boot, so we have plenty of RAM. Compile
-- the rest of the firmware from source if it's there.
OVL.compileall()
-- Grab some configuration parameters we might need,
-- notably, the LCD address
local ctfwshw = {}
if file.open("ctfws-misc.conf","r") then
local conf = sjson.decode(file.read() or "")
if type(conf) == "table"
then ctfwshw = conf
else print("INIT2", "ctfws-misc.conf malformed")
end
end
-- While we're getting configuration, go ahead and build our MQTT client
-- and set the global holding our name
mqc, mqttUser = OVL.nwfmqtt().mkclient("nwfmqtt.conf")
if mqc == nil then
print("INIT2", "You forgot your MQTT configuration file")
end
-- Game logic modules
ctfws = OVL.ctfws()
ctfws:setFlags(0,0)
-- Hardware initialization
print("INIT2", "hw")
wifi.sta.sleeptype(wifi.NONE_SLEEP) -- don't power down radio
gpio.mode(5,gpio.OUTPUT) -- beeper on GPIO14
gpio.write(5,gpio.HIGH)
i2c.setup(0,2,1,i2c.SLOW) -- init i2c on GPIO4 and GPIO5
if ctfwshw.lcd then
print("LCD ADDR", ctfwshw.lcd)
lcd = OVL.lcd1602()(ctfwshw.lcd)
ctfws_lcd = OVL["ui-lcd-ctrl"]()(require "nwfnet", ctfws, lcd, mqc)
end
-- give the LCD time to initialize properly
tmr.create():alarm(125, tmr.ALARM_SINGLE, function() print("INIT2", "main") OVL.main() end)