欢迎!
我正在使用script_LuaTask。
我有一个剧本。
Hello!
I am using script_LuaTask.
I have a script.
require "misc"
require"ril"
module(...,package.seeall)
local function print(...)
_G.print("test",...)
end
ril.request("AT+CLTS=1")
-------------------------------------------------------------------------
local function setTime(prefix,data)
if prefix == "PSUTTZ" then
print("Hallo!")
end
end
ril.regUrc("PSUTTZ",setTime)
-------------------------------------------------------------------------
为什么该功能不打印“ Hallo!”?
感谢您的帮助。
Why the function does not print "Hallo!" ?
Thank you for your help.