summaryrefslogtreecommitdiff
path: root/run.lua
blob: e5a7627858e5f84125ae2babb6873dd0d105eb4e (plain)
1
2
3
4
5
6
7
8
9
10
11
local wakeup = require("wakeup")

return function ()
	tmr.create():alarm(
		500,
		tmr.ALARM_AUTO,
		function (timer)
			wakeup:step(timer)
			collectgarbage()
		end)
end