Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/lib/support/drivers/boot.lua
blob: 2471ab9d260fc66497fdbfbb21e06a2cdf17f716 (plain)
1
2
3
4
5
6
7
8
9
10
11
local device = _G
local RESET = string.char(0xFF)

api={}
api.reset = {}
api.reset.parameters = {} --no parameters
api.reset.returns = {} --no returns
api.reset.call = function ()
	device:send(RESET)
end