Air202 - ril.regUrc(prefix, handler)

欢迎
我正在使用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.

attachments-2019-11-paAmXbz85ddaacd98b207.PNG

请先 登录 后评论

最佳答案 2019-11-26 16:23

ril.regUrc("*PSUTTZ",setTime)

改成这样试试

请先 登录 后评论

其它 0 个回答