1
0
Fork 0
forked from len0rd/rockbox

hwstub: add delay function

Change-Id: Iab208ed59a9a2540a64b190357411d3de28f288e
This commit is contained in:
Amaury Pouly 2013-12-24 15:24:40 +01:00
parent 1dc91b4560
commit 5b865de73a
2 changed files with 21 additions and 0 deletions

View file

@ -108,4 +108,11 @@ end
--
DEV = hwstub.dev
--
-- Misc
--
function hwstub.mdelay(msec)
hwstub.udelay(msec * 1000)
end
require "lua/load"