cmd.lua 40 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466
  1. --- A simple command line arguments parser
  2. -- The command line parser supports both long options (--foobar) and short
  3. -- options (-f)
  4. --
  5. -- Strings of form '--OPTION=VALUE' are parsed to { OPTION = 'VALUE' }.
  6. -- Strings of form '--OPTION' are parsed to { OPTION = true }.
  7. -- Multiple '--OPTION=VALUE' are merged into { OPTION = { 'VALUE', 'VALUE', ... } }.
  8. --
  9. -- Strings of form '-O=VALUE' are parsed to { O = 'VALUE' }.
  10. -- Strings of form '-O' are parsed to { O = true }.
  11. -- Multiple '-O=VALUE' are merged into { O = { 'VALUE', 'VALUE', ... } }.
  12. --
  13. -- The argument '--' terminates all options; any following arguments are treated
  14. -- as non-option arguments, even if they begin with a hyphen.
  15. --
  16. -- Based on the luvit-cmdline parser from https://github.com/dvv/luvit-cmdline
  17. -- Modifications by Björn Ritzl, https://github.com/britzl/cmdline
  18. -- @module cmdline
  19. module(..., package.seeall)
  20. require"sim"
  21. require"net"
  22. require"misc"
  23. require "nvm"
  24. require "funlib"
  25. require "ntp"
  26. --[[
  27. 命令行数据及函数
  28. --历史命令行,可以通过组合按键"[+ A" 或者[+B 商贩或者下翻
  29. ---命令行注册数据,包含命令字,help,执行函数
  30. --命令输出数组
  31. --命令上输入数组
  32. --命令行提示符
  33. --命令行tab键补充完整
  34. --命令行注册函数
  35. --命令行注销函数
  36. --命令行输入函数
  37. --命令行处理函数
  38. ]]
  39. pm.wake("modbusrtu")
  40. local cmd_uart_id = 1
  41. --local uart_baud = 9600
  42. local uart_baud = 57600
  43. -- 设置tr_en
  44. pmd.ldoset(2,pmd.LDO_VMMC)
  45. local CLI_MAX_COMMANDS = 100
  46. local CLI_INBUF_SIZE = 256
  47. local PROMPT = '#'
  48. -- history 命令行使用环形缓存区存储,表示最大多少字节
  49. local MAX_HISTORY = 256
  50. local cli={
  51. inited = 0,
  52. num = 0,
  53. echo_disabled = 1,
  54. msg = "",
  55. his_idx = 1,
  56. his_cur = 1,
  57. history={},
  58. cmds = {},
  59. cmd_in_options = {},
  60. outbuf = {},
  61. }
  62. -- 命令行输入数组
  63. local inbuf={}
  64. --920数据流缓存
  65. local inbuf920 = ""
  66. --[[
  67. cli_register_command
  68. 功能 :注册命令行函数
  69. 参数 :输入cmda,命令行关键字字符串,helpa 帮助信息 funca 命令执行函数
  70. 返回值:成功为1,失败为0
  71. ]]
  72. function cli_register_command(cmda,helpa,funca)
  73. if not cmda or not helpa or not funca then
  74. --print( "cmd",cmd,help,func)
  75. log.error("cmd.cli_register_command","cmda/helpa/funca not existed!")
  76. return 0
  77. end
  78. local command = {key=cmda,help=helpa,func= funca}
  79. table.insert(cli.cmds,{key=cmda,help=helpa,func= funca})
  80. cli.num = cli.num +1
  81. return true
  82. end
  83. --[[
  84. cli_register_command
  85. 功能 :注册命令行函数
  86. 参数 cmdin,命令行输入函数
  87. 返回值:成功为1,失败为0
  88. ]]
  89. function cli_unregister_command(cmdin)
  90. if not cmdin then
  91. log.error("cmd.cli_unregister_command","cmd is nil!")
  92. return 0
  93. end
  94. for i = #cli.cmds, 1, -1 do
  95. if cli.cmds[i].key == cmdin then
  96. log.debug("cmd.cli_unregister_command","find the cmd",cmdin)
  97. table.remove(cli.cmds,i)
  98. cli.num = cli.num -1
  99. return 1
  100. end
  101. end
  102. log.info("cmd.cli_unregister_command","can't find the cmd",cmdin)
  103. return 1
  104. end
  105. --向串口发送数据
  106. local function send_uart_data(data)
  107. if not data then
  108. log.error("cmd.send_uart_data","data empty!")
  109. return false
  110. end
  111. --pins.setup(pio.P0_24,1)
  112. uart.write(cmd_uart_id,data)
  113. --sys.wait(50)
  114. --pins.setup(pio.P0_24,0)
  115. return true
  116. end
  117. --[[
  118. 厂测命令执行函数:
  119. ]]
  120. --是否已发握手包
  121. local isHandshake = false
  122. local foundRfid = false
  123. local foundRfidRssi = ""
  124. local function factory_test_command(options)
  125. if not options then
  126. log.error("cmd.factory_test_command","options not existed,do nothing!")
  127. return false
  128. end
  129. if type(options) ~= "table" then
  130. log.error("cmd.factory_test_command","options type error!")
  131. return false
  132. end
  133. if not options.type then
  134. log.error("cmd.factory_test_command","options.type not existed! options:",json.encode(options))
  135. return false
  136. end
  137. log.info("cmd.factory_test_command","options.type=",options.type)
  138. local devId = nvm.get("devId")
  139. local devSn = nvm.get("devSn")
  140. --厂测握手包
  141. if options.type == "E7A55AE1" then
  142. local data = ""
  143. if not devId or not devSn then
  144. --新设备
  145. data = "E65AA1"
  146. elseif devId ~= "" and devSn ~= "" then
  147. --已编程设备
  148. data = "EC61F1"
  149. end
  150. local dataBin,errMsg = funlib.hex2bin(data)
  151. if not dataBin then
  152. log.error("cmd.factory_test_command",errMsg)
  153. return false
  154. end
  155. if not send_uart_data(dataBin) then
  156. log.error("cmd.factory_test_command","send_uart_data failed! data:",dataBin:toHex())
  157. return false
  158. end
  159. log.info("cmd.factory_test_command","handshake success")
  160. --厂测开始后,如果ntp没有完成,强制开始厂测
  161. if not ntp.isEnd() then
  162. log.warn("cmd.factory_test_command","ntp sync have not success,force start factory test!")
  163. sys.publish("TIMER_SYNC_SUCCESS","factory_test_start")
  164. end
  165. isHandshake = true
  166. return true
  167. end
  168. --写入设备id和序列号包
  169. if options.type == "E5E5A6" then
  170. if not isHandshake then
  171. log.error("cmd.factory_test_command","forbiden write devId and devSn, handshake please!")
  172. return false
  173. end
  174. local data = "E5E5A6"
  175. if not options.devId then
  176. log.error("cmd.factory_test_command","options.devId not existed!")
  177. data = "E6E6A6"
  178. elseif type(options.devId) ~= "string" then
  179. log.error("cmd.factory_test_command","options.devId type error!")
  180. data = "E6E6A6"
  181. elseif not options.devSn then
  182. log.error("cmd.factory_test_command","options.devSn not existed!")
  183. data = "E6E6A6"
  184. elseif type(options.devSn) ~= "string" then
  185. log.error("cmd.factory_test_command","options.devSn type error!")
  186. data = "E6E6A6"
  187. else
  188. if devId ~= options.devId then
  189. if not nvm.set("devId",options.devId) then
  190. log.error("cmd.factory_test_command","devId write failed! options.devId:",options.devId)
  191. data = "E6E6A6"
  192. else
  193. log.info("cmd.factory_test_command","devId:", nvm.get("devId"))
  194. end
  195. end
  196. if devSn ~= options.devSn then
  197. if not nvm.set("devSn",options.devSn) then
  198. log.error("cmd.factory_test_command","devSn write failed! options.devSn:",options.devSn)
  199. data = "E6E6A6"
  200. else
  201. log.info("cmd.factory_test_command","devSn:", nvm.get("devSn"))
  202. end
  203. end
  204. end
  205. local dataBin,errMsg = funlib.hex2bin(data)
  206. if not dataBin then
  207. log.error("cmd.factory_test_command",errMsg)
  208. return false
  209. end
  210. if not send_uart_data(dataBin) then
  211. log.error("cmd.factory_test_command","send_uart_data failed!")
  212. return false
  213. end
  214. return true
  215. end
  216. --读取设备id和序列号包
  217. if options.type == "E5E5A1" then
  218. if not isHandshake then
  219. log.error("cmd.factory_test_command","forbiden read devId and devSn, handshake please!")
  220. return false
  221. end
  222. local data = "E6E6A1"
  223. if not devId then
  224. log.error("cmd.factory_test_command","devId not existed!")
  225. data = "E6E6A0"
  226. elseif type(devId) ~= "string" then
  227. log.error("cmd.factory_test_command","devId type error!")
  228. data = "E6E6A0"
  229. elseif not devSn then
  230. log.error("cmd.factory_test_command","devSn not existed!")
  231. data = "E6E6A0"
  232. elseif type(devSn) ~= "string" then
  233. log.error("cmd.factory_test_command","devSn type error!")
  234. data = "E6E6A0"
  235. end
  236. local dataBin,errMsg = funlib.hex2bin(data)
  237. if not dataBin then
  238. log.error("cmd.factory_test_command",errMsg)
  239. return false
  240. end
  241. if data == "E6E6A1" then
  242. dataBin = dataBin..devId..devSn
  243. log.info("cmd.factory_test_command","dataBin:",dataBin:toHex())
  244. end
  245. if not send_uart_data(dataBin) then
  246. log.error("cmd.factory_test_command","send_uart_data failed! dataBin:",dataBin:toHex())
  247. return false
  248. end
  249. return true
  250. end
  251. --读取sim卡iccid
  252. if options.type == "E1E1A3" then
  253. if not isHandshake then
  254. log.error("cmd.factory_test_command","forbiden read simIccid, handshake please!")
  255. return false
  256. end
  257. log.info("cmd.factory_test_command","read simIccid")
  258. local timer
  259. local maxRetryCount = 40
  260. local retryCount = 0
  261. timer = sys.timerLoopStart(function ()
  262. local data = ""
  263. local simIccid = sim.getIccid()
  264. if simIccid then
  265. data = "E2E2A1"
  266. log.info("cmd.factory_test_command","timer:",timer,"data:",data)
  267. local dataBin,errMsg = funlib.hex2bin(data)
  268. if not dataBin then
  269. log.error("cmd.factory_test_command",errMsg)
  270. return false
  271. end
  272. dataBin = dataBin..simIccid.."#"
  273. log.info("cmd.factory_test_command","dataBin:",dataBin:toHex())
  274. if not send_uart_data(dataBin) then
  275. log.error("cmd.factory_test_command","send_uart_data failed! dataBin:",dataBin:toHex())
  276. return false
  277. end
  278. sys.timerStop(timer)
  279. return
  280. end
  281. retryCount = retryCount + 1
  282. log.info("cmd.factory_test_command","sim status:",sim.getStatus(),"retryCount:",retryCount)
  283. if retryCount >= maxRetryCount then
  284. log.info("cmd.factory_test_command","wait sim ready timeout")
  285. data = "E1E1A1"
  286. local dataBin,errMsg = funlib.hex2bin(data)
  287. if not dataBin then
  288. log.error("cmd.factory_test_command",errMsg)
  289. return false
  290. end
  291. if not send_uart_data(dataBin) then
  292. log.error("cmd.factory_test_command","send_uart_data failed! dataBin:",dataBin:toHex())
  293. return false
  294. end
  295. sys.timerStop(timer)
  296. end
  297. end, 100)
  298. return true
  299. end
  300. --读取sim卡imsi
  301. if options.type == "E2E2A7" then
  302. if not isHandshake then
  303. log.error("cmd.factory_test_command","forbiden read imsi, handshake please!")
  304. return false
  305. end
  306. local timer
  307. local maxRetryCount = 40
  308. local retryCount = 0
  309. timer = sys.timerLoopStart(function ()
  310. local data = ""
  311. local simImsi = sim.getImsi()
  312. if simImsi then
  313. simImsi = sim.getImsi()
  314. data = "E3E3A1"
  315. log.info("cmd.factory_test_command","sim ready, simImsi:",simImsi,"timer:",timer,"data:",data)
  316. local dataBin,errMsg = funlib.hex2bin(data)
  317. if not dataBin then
  318. log.error("cmd.factory_test_command",errMsg)
  319. return false
  320. end
  321. dataBin = dataBin..simImsi.."#"
  322. log.info("cmd.factory_test_command","dataBin:",dataBin:toHex())
  323. if not send_uart_data(dataBin) then
  324. log.error("cmd.factory_test_command","send_uart_data failed! dataBin:",dataBin:toHex())
  325. return false
  326. end
  327. sys.timerStop(timer)
  328. return
  329. end
  330. retryCount = retryCount + 1
  331. if retryCount >= maxRetryCount then
  332. log.info("cmd.factory_test_command","wait sim ready timeout")
  333. sys.timerStop(timer)
  334. data = "E3E2A1"
  335. local dataBin,errMsg = funlib.hex2bin(data)
  336. if not dataBin then
  337. log.error("cmd.factory_test_command",errMsg)
  338. return false
  339. end
  340. if not send_uart_data(dataBin) then
  341. log.error("cmd.factory_test_command","send_uart_data failed! dataBin:",dataBin:toHex())
  342. return false
  343. end
  344. end
  345. end, 100)
  346. return true
  347. end
  348. --获取网络rssi
  349. if options.type == "E9E9A5" then
  350. if not isHandshake then
  351. log.error("cmd.factory_test_command","forbiden read netRssi, handshake please!")
  352. return false
  353. end
  354. local timer
  355. local maxRetryCount = 150
  356. local retryCount = 0
  357. timer = sys.timerLoopStart(function ()
  358. local data = ""
  359. local netRssi = net.getRssi()
  360. if net.getNetMode() > 0 and netRssi > 0 then
  361. data = "E9E0A1"
  362. log.info("cmd.factory_test_command","net registed, netMode:",net.getNetMode(),"netRssi:",netRssi)
  363. local dataBin,errMsg = funlib.hex2bin(data)
  364. if not dataBin then
  365. log.error("cmd.factory_test_command",errMsg)
  366. return false
  367. end
  368. dataBin = dataBin..string.char(netRssi)
  369. log.info("cmd.factory_test_command","dataBin:",dataBin:toHex())
  370. if not send_uart_data(dataBin) then
  371. log.error("cmd.factory_test_command","send_uart_data failed! dataBin:",dataBin:toHex())
  372. return false
  373. end
  374. sys.timerStop(timer)
  375. return
  376. end
  377. retryCount = retryCount + 1
  378. if retryCount >= maxRetryCount then
  379. log.info("cmd.factory_test_command","wait net registed timeout, neRssi:",net.getRssi(),"netMode:",net.getNetMode())
  380. data = "E9E0A0"
  381. local dataBin,errMsg = funlib.hex2bin(data)
  382. if not dataBin then
  383. log.error("cmd.factory_test_command",errMsg)
  384. return false
  385. end
  386. if not send_uart_data(dataBin) then
  387. log.error("cmd.factory_test_command","send_uart_data failed! dataBin:",dataBin:toHex())
  388. return false
  389. end
  390. sys.timerStop(timer)
  391. end
  392. end, 100)
  393. return true
  394. end
  395. --写入设备型号
  396. if options.type == "E3E3A6" then
  397. if not isHandshake then
  398. log.error("cmd.factory_test_command","forbiden write devId and devSn, handshake please!")
  399. return false
  400. end
  401. local data = "E3E0A1"
  402. local devModel = nvm.get("devModel")
  403. if not options.devModel then
  404. log.error("cmd.factory_test_command","options.devModel not existed!")
  405. data = "E3E2A0"
  406. elseif type(options.devModel) ~= "string" then
  407. log.error("cmd.factory_test_command","options.devModel type error!")
  408. data = "E3E2A0"
  409. else
  410. if devModel ~= options.devModel then
  411. if not nvm.set("devModel",options.devModel) then
  412. log.error("cmd.factory_test_command","devId write failed! options.devModel:",options.devModel)
  413. data = "E3E2A0"
  414. else
  415. log.info("cmd.factory_test_command","devModel:", nvm.get("devModel"))
  416. end
  417. end
  418. end
  419. local dataBin,errMsg = funlib.hex2bin(data)
  420. if not dataBin then
  421. log.error("cmd.factory_test_command",errMsg)
  422. return false
  423. end
  424. if data == "E3E0A1" then
  425. dataBin = dataBin..options.devModel
  426. end
  427. log.info("cmd.factory_test_command","--------> ",dataBin:toHex())
  428. if not send_uart_data(dataBin) then
  429. log.error("cmd.factory_test_command","send_uart_data failed!")
  430. return false
  431. end
  432. return true
  433. end
  434. --获取模块imei号
  435. if options.type == "E4E4A6" then
  436. if not isHandshake then
  437. log.error("cmd.factory_test_command","forbiden read iccid, handshake please!")
  438. return false
  439. end
  440. local data = "E4E0A1"
  441. local moduleImei = misc.getImei()
  442. if not moduleImei then
  443. log.error("cmd.factory_test_command","moduleImei not existed!")
  444. data = "E4E2A0"
  445. end
  446. local dataBin,errMsg = funlib.hex2bin(data)
  447. if not dataBin then
  448. log.error("cmd.factory_test_command",errMsg)
  449. return false
  450. end
  451. if data == "E4E0A1" then
  452. dataBin = dataBin..moduleImei
  453. log.info("cmd.factory_test_command","dataBin:",dataBin:toHex())
  454. end
  455. if not send_uart_data(dataBin) then
  456. log.error("cmd.factory_test_command","send_uart_data failed! dataBin:",dataBin:toHex())
  457. return false
  458. end
  459. return true
  460. end
  461. --获取指定rifd标签的信号
  462. if options.type == "E8E8A2" then
  463. if not isHandshake then
  464. log.error("cmd.factory_test_command","forbiden read rfid, handshake please!")
  465. return false
  466. end
  467. local data = "E8E3A1"
  468. if not options.rfid then
  469. log.error("cmd.factory_test_command","options.rfid not existed!")
  470. data = "E8E0A0"
  471. end
  472. if #options.rfid ~= 8 then
  473. log.error("cmd.factory_test_command","options.rfid length != 8!")
  474. data = "E8E0A0"
  475. end
  476. --通知开始读取指定的rfid标签信号
  477. sys.publish("factory_test_start_read_rfid",{rfid=options.rfid})
  478. --等待读取结果
  479. local timer
  480. local maxRetryCount = 150
  481. local retryCount = 0
  482. timer = sys.timerLoopStart(function ()
  483. if foundRfid then
  484. data = "E8E3A1"
  485. log.info("cmd.factory_test_command","stop timer loop, rfid.rssi:",foundRfidRssi,"rfid:",options.rfid)
  486. local dataBin,errMsg = funlib.hex2bin(data)
  487. if not dataBin then
  488. log.error("cmd.factory_test_command",errMsg)
  489. foundRfid = false
  490. foundRfidRssi = ""
  491. return false
  492. end
  493. dataBin = dataBin..string.char(foundRfidRssi)
  494. log.info("cmd.factory_test_command","dataBin:",dataBin:toHex())
  495. --初始化参数
  496. foundRfid = false
  497. foundRfidRssi = ""
  498. if not send_uart_data(dataBin) then
  499. log.error("cmd.factory_test_command","send_uart_data failed! dataBin:",dataBin:toHex())
  500. return false
  501. end
  502. sys.timerStop(timer)
  503. return
  504. end
  505. retryCount = retryCount + 1
  506. if retryCount >= maxRetryCount then
  507. log.info("cmd.factory_test_command","wait read rifd timeout,stop timer loop!")
  508. data = "E8E0A0"
  509. local dataBin,errMsg = funlib.hex2bin(data)
  510. if not dataBin then
  511. log.error("cmd.factory_test_command",errMsg)
  512. foundRfid = false
  513. foundRfidRssi = ""
  514. return false
  515. end
  516. --初始化参数
  517. foundRfid = false
  518. foundRfidRssi = ""
  519. if not send_uart_data(dataBin) then
  520. log.error("cmd.factory_test_command","send_uart_data failed! dataBin:",dataBin:toHex())
  521. return false
  522. end
  523. sys.timerStop(timer)
  524. end
  525. end, 100)
  526. return true
  527. end
  528. end
  529. cli_register_command("factory","factory test command\r\nUsage: factory --type=xxxx [--devId=630001] [--devSn=xxxxx] [--rfid=xxxx]",factory_test_command)
  530. local isTaskEnd = true
  531. local cmdFoundRfid = false
  532. local cmdFoundRfidRssi = ""
  533. local function cmd_command(options)
  534. if not options then
  535. log.error("cmd.cmd_command","options not existed,do nothing!")
  536. return false
  537. end
  538. if type(options) ~= "table" then
  539. log.error("cmd.cmd_command","options type error!")
  540. return false
  541. end
  542. if not options.type then
  543. log.error("cmd.cmd_command","options.type not existed! options:",json.encode(options))
  544. return false
  545. end
  546. log.info("cmd.cmd_command","options.type=",options.type)
  547. --获取指定rifd标签的信号
  548. if options.type == "read_rfid" then
  549. local data = ""
  550. if not options.rfid then
  551. log.error("cmd.cmd_command","options.rfid not existed!")
  552. return false
  553. end
  554. --通知开始读取指定的rfid标签信号
  555. sys.publish("cmd_start_read_rfid",{rfid=options.rfid})
  556. --等待读取结果
  557. local timer
  558. local maxRetryCount = 150
  559. local retryCount = 0
  560. timer = sys.timerLoopStart(function ()
  561. if cmdFoundRfid then
  562. data = "rfid:"..options.rfid..", rfid.rssi:"..cmdFoundRfidRssi.."\r\n"
  563. log.info("cmd.cmd_command","stop timer loop, rfid.rssi:",cmdFoundRfidRssi,"rfid:",options.rfid)
  564. --初始化参数
  565. cmdFoundRfid = false
  566. cmdFoundRfidRssi = ""
  567. if not send_uart_data(data) then
  568. log.error("cmd.cmd_command","send_uart_data failed! data:",data)
  569. return false
  570. end
  571. sys.timerStop(timer)
  572. return
  573. end
  574. retryCount = retryCount + 1
  575. if retryCount >= maxRetryCount then
  576. log.info("cmd.cmd_command","wait read rifd timeout,stop timer loop!")
  577. data = "wait read rifd timeout,stop timer loop!\r\n"
  578. --初始化参数
  579. cmdFoundRfid = false
  580. cmdFoundRfidRssi = ""
  581. if not send_uart_data(data) then
  582. log.error("cmd.cmd_command","send_uart_data failed! data:",data)
  583. return false
  584. end
  585. sys.timerStop(timer)
  586. end
  587. end, 100)
  588. return true
  589. end
  590. end
  591. cli_register_command("cmd","cmd command\r\nUsage: cmd --type=xxxx [--rfid=xxxx]",cmd_command)
  592. --[[
  593. 测试函数:
  594. 注册函数和注销函数
  595. ]]
  596. --[[
  597. --注册函数测试
  598. function dis_systime()
  599. print("2021-3-26:19:27")
  600. end
  601. function dis_ver()
  602. print("1.0.0")
  603. end
  604. log.debug(#cli.cmds)
  605. cli_register_command("version","device version",dis_ver)
  606. log.debug(#cli.cmds)
  607. cli_register_command("systime","display system time",dis_systime)
  608. log.debug(#cli.cmds)
  609. for i = #cli.cmds, 1, -1 do
  610. print(cli.cmds[i].func())
  611. if cli.cmds[i].key == "systime" then
  612. --print("find systime cmd")
  613. --print(cmds[i].func())
  614. end
  615. if cli.cmds[i].key == "version" then
  616. --print("find version")
  617. --print(cmds[i].func())
  618. end
  619. end
  620. --注销函数测试
  621. table.remove(cmds, 1)
  622. cli_unregister_command("systime")
  623. print(#cli.cmds)
  624. table.remove(cmds, 1)
  625. cli_unregister_command("version")
  626. print(#cli.cmds)
  627. ]]
  628. --补齐命令行---
  629. --[[
  630. cli_tab_complete
  631. 功能 补齐命令行
  632. 参数 无
  633. 返回值:0 失败 1 成功
  634. ]]
  635. local function cli_tab_complete(input)
  636. local n =1
  637. local m=0
  638. local fm = ""
  639. local instring = ""
  640. local bp1 = #inbuf
  641. print("\r\n");
  642. if type(input) ~= 'table' or input == nil then
  643. log.error("cmd.cli_tab_complete","input is not table or nil")
  644. return 0
  645. end
  646. instring = table.concat(input,nil)
  647. log.debug("cmd.cli_tab_complete","input string: ",instring,"cli num "..cli.num)
  648. --show matching commands
  649. for i=1,CLI_MAX_COMMANDS do
  650. if n <= cli.num then
  651. if cli.cmds[i].key ~= nil then
  652. --log.debug("key: "..cli.cmds[i].key,"in: "..instring)
  653. if string.sub(cli.cmds[i].key,1,bp1)== instring then
  654. m = m+1
  655. if m == 1 then
  656. fm = cli.cmds[i].key;
  657. elseif m == 2 then
  658. print("%s"..fm," %s"..cli.cmds[i].key)
  659. else
  660. print("%s "..cli.cmds[i].key)
  661. end
  662. end
  663. n = n+1
  664. end
  665. end
  666. end
  667. --log.debug("fefkj",fm)
  668. --there's only one match, so complete the line
  669. if m == 1 and fm then
  670. bp1 = bp1+1
  671. local cmd_len = string.len(fm)
  672. local concat_fm = string.sub(fm,bp1,-1)
  673. --log.debug("fm : "..fm,"concat "..concat_fm, "len "..cmd_len,"bp "..bp1)
  674. if cmd_len< CLI_INBUF_SIZE then
  675. table.insert(inbuf,bp1,concat_fm)
  676. table.insert(inbuf," \0")
  677. --log.debug("inbuf "..table.concat(inbuf,nil))
  678. end
  679. end
  680. if m >= 2 then
  681. printf("\r\n");
  682. end
  683. --just redraw input line
  684. print(PROMPT..table.concat(inbuf,nil))
  685. return 1
  686. end
  687. ---测试函数 test complete
  688. -- inbuf ={'v','e'}
  689. -- cli_tab_complete(inbuf)
  690. -- inbuf ={'s','y','s'}
  691. -- cli_tab_complete(inbuf)
  692. --[[
  693. cli_get_input
  694. 功能 :接收串口命令行数据
  695. 参数 c 输入字符
  696. 返回值:成功为1,失败为0,\r\n 收到为2,表示命令行输入结束
  697. ]]
  698. --输入字符当前位置
  699. local bp = 1
  700. --输入转义字符
  701. local esc,key1,key2=0
  702. local function cli_get_input(c)
  703. if c == '\n' or c == '\r' then
  704. -- get whole commands,so process it later
  705. --inbuf[bp] = '\0'
  706. --cli.msg = table.concat(inbuf,nil)
  707. local cmd_str = table.concat(inbuf)
  708. if string.find(cmd_str,"\r\n") then
  709. bp = 1
  710. key1 = 0
  711. key2 = 0
  712. esc = 0
  713. return 2
  714. end
  715. end
  716. -- escape char
  717. if c == 0x1b then
  718. esc = 1;
  719. key1 = -1;
  720. key2 = -1;
  721. return 1;
  722. end
  723. if esc== 1 then
  724. if key1 < 0 then
  725. key1 = c
  726. --* not '['
  727. if key1 ~= 0x5b then
  728. inbuf[bp] = 0x1b
  729. bp = bp+1
  730. inbuf[bp] = key1;
  731. bp = bp+1
  732. if cli.echo_disabled ~= 0 then
  733. -- tmp = g_cli_tag_len;
  734. -- g_cli_tag_len = 0;
  735. print(string.format("\x1b%c", key1))
  736. end
  737. esc = 0;
  738. end
  739. return 1;
  740. end
  741. if key2 < 0 then
  742. key2 = c;
  743. end
  744. if key2 ~= 0x41 and key2 ~= 0x42 and key2 ~= 't' then
  745. inbuf[bp] = 0x1b
  746. bp = bp+1
  747. inbuf[bp] = key1
  748. bp = bp+1
  749. inbuf[bp] = key2
  750. bp = bp+1
  751. esc = 0
  752. print(string.format("\x1b%c",key1, key2))
  753. return 1
  754. end
  755. if key2 == 0x41 then
  756. log.debug("cli up history")
  757. bp = #inbuf;
  758. esc = 0
  759. print("\r\n#"..table.concat(inbuf))
  760. return 1;
  761. end
  762. if key2 == 0x42 then
  763. log.debug("cli_down_history---")
  764. bp = #inbuf
  765. esc = 0;
  766. print("\r\n#"..table.concat(inbuf))
  767. return 1
  768. end
  769. end
  770. inbuf[bp] = c;
  771. if c == 0x08 or c == 0x7f then
  772. if bp > 1 then
  773. bp = bp-1
  774. if (cli.echo_disabled ~= 1) then
  775. -- 删除键
  776. print(string.format("%0x %0x", 0x08, 0x08))
  777. end
  778. end
  779. return 1
  780. end
  781. if c == '\t' then
  782. inbuf[bp] = '\0';
  783. log.debug("cli_tab_complte ")
  784. cli_tab_complete(inbuf, bp);
  785. return 1
  786. end
  787. if cli.echo_disabled ~= 1 then
  788. print(c)
  789. end
  790. bp = bp +1
  791. if bp >= 256 then
  792. log.error("Error: input buffer overflow\r\n");
  793. print("#")
  794. bp = 0
  795. return 0
  796. end
  797. end
  798. --[[
  799. 输入测试函数
  800. ]]
  801. -- cli_get_input('a')
  802. -- cli_get_input('A')
  803. -- cli_get_input('c')
  804. -- cli_get_input(0x1b)
  805. -- cli_get_input(0x5b)
  806. -- cli_get_input(0x41)
  807. -- --cli_get_input(' ')
  808. -- cli_get_input('d')
  809. -- cli_get_input('\t')
  810. -- cli_get_input('d')
  811. -- cli_get_input(0x1b)
  812. -- cli_get_input(0x5b)
  813. -- cli_get_input(0x42)
  814. -- cli_get_input('f')
  815. -- cli_get_input('\r')
  816. -- print(cli.msg)
  817. -- print(string.len(cli.msg))
  818. --[[
  819. cli_history_input
  820. 功能 历史命令存入函数
  821. 参数 无
  822. 返回值:成功为1,失败为0,\r 或者\n 收到为2,表示命令行输入结束
  823. ]]
  824. local function cli_history_input()
  825. local his_inbuf = inbuf
  826. local charnum = #inbuf
  827. local his_cur = cli.his_cur
  828. local left_num = MAX_HISTORY - his_cur+1
  829. local lastchar = '\0'
  830. local tmp_idx
  831. if charnum >MAX_HISTORY then
  832. log.error("cmd.cli_history_input","cmd.cli_history_input","cli too long :",charnum,"> "..MAX_HISTORY)
  833. return 0
  834. end
  835. cli.his_idx = his_cur
  836. log.debug("cmd.cli_history_input","his-cur ",his_cur,"input =",#inbuf,"left_num:",left_num,"charnum:",charnum)
  837. if left_num >= charnum then
  838. tmp_idx = his_cur + charnum-1
  839. local j = 1
  840. for i=his_cur,tmp_idx do
  841. cli.history[i] = inbuf[j]
  842. --log.debug("cmd.cli_history_input",cli.history[i])
  843. j = j+1
  844. end
  845. lastchar = cli.history[tmp_idx]
  846. --table.insert(cli.history, his_cur, inbuf)
  847. log.debug("history count:",#cli.history,"fist char:",cli.history[1],"last char:",lastchar,"tmp_idx:",tmp_idx)
  848. else
  849. tmp_idx = (his_cur + charnum-1) % MAX_HISTORY
  850. local j = 1
  851. for i=his_cur,left_num+his_cur-1 do
  852. cli.history[i] = inbuf[j]
  853. --log.debug("cmd.cli_history_input",cli.history[i])
  854. j = j+1
  855. end
  856. --strncpy(&(g_cli->history[his_cur]), inbuf, left_num);
  857. print(" first time :his_cur",his_cur,"finished char: ",left_num,"unfinished:",(charnum-left_num),"last char:",lastchar,"last_idx:",tmp_idx)
  858. --local j = left_num+1
  859. for i=1,charnum-left_num do
  860. cli.history[i] = inbuf[j]
  861. --log.debug("cmd.cli_history_input",cli.history[i])
  862. j = j+1
  863. end
  864. lastchar = cli.history[tmp_idx];
  865. print("second time::his_cur ",tmp_idx,"finished char: ",(charnum-left_num),"unfinished: 0","last char:",lastchar,"last_idx:",tmp_idx)
  866. --strncpy(&(g_cli->history[0]), inbuf + left_num, charnum - left_num);
  867. end
  868. tmp_idx = (tmp_idx+1) % MAX_HISTORY;
  869. cli.his_cur = tmp_idx;
  870. --overwrite
  871. if '\0' ~= lastchar then
  872. while cli.history[tmp_idx] ~= '\0'
  873. do
  874. cli.history[tmp_idx] = '\0';
  875. tmp_idx = (tmp_idx + 1) % MAX_HISTORY;
  876. end
  877. end
  878. return 1
  879. end
  880. --[[
  881. 历史命令行测试函数
  882. ]]
  883. --cli.his_cur =1
  884. ---为了测试需要
  885. -- MAX_HISTORY = 19
  886. -- inbuf ={'a','b','c','d','e','f','\0'}
  887. -- cli_history_input()
  888. -- log.debug("history content: "..table.concat(cli.history,nil))
  889. -- inbuf ={'1','2','3','4','5','6','7','8','9','a','b','\0'}
  890. -- cli_history_input()
  891. -- log.debug("history content: "..table.concat(cli.history,nil))
  892. -- inbuf ={'b','p','m','f','\0'}
  893. -- cli_history_input()
  894. -- log.debug("history content: "..table.concat(cli.history,nil))
  895. --local inaddr = {}
  896. --[[
  897. 函数名:cli_history_input
  898. 功能 上翻命令行
  899. 参数 无
  900. 返回值:无
  901. ]]
  902. local function cli_up_history()
  903. local index
  904. local lastindex = 0
  905. local history_max_used = #cli.history
  906. local inaddr = {}
  907. lastindex = cli.his_idx;
  908. index = (cli.his_idx - 1 + history_max_used) % (history_max_used+1);
  909. log.debug("u1:lastindex: "..lastindex,"index: "..index,"max_used: "..history_max_used)
  910. while cli.history[index] == '\0' and index ~= cli.his_idx
  911. do
  912. index = (index - 1 + history_max_used) % history_max_used;
  913. end
  914. log.debug("u2:lastindex: "..lastindex,"index: "..index)
  915. if index ~= cli.his_idx then
  916. while (cli.history[index] ~= '\0')
  917. do
  918. index = (index - 1 + MAX_HISTORY) % MAX_HISTORY;
  919. end
  920. log.debug("u3:lastindex: "..lastindex,"index: "..index)
  921. index = (index+1) % history_max_used;
  922. end
  923. cli.his_idx = index;
  924. local i=1
  925. while cli.history[lastindex] ~= '\0'
  926. do
  927. inaddr[i] = cli.history[lastindex];
  928. i= i+1
  929. lastindex = (lastindex + 1) % MAX_HISTORY;
  930. end
  931. log.debug("u4:lastindex: "..lastindex,"index: "..index)
  932. inaddr[i] = '\0';
  933. inbuf = inaddr;
  934. end
  935. --[[
  936. 测试函数
  937. ]]
  938. -- cli_up_history()
  939. -- print("history up cmd: "..table.concat(inbuf,nil))
  940. -- --inaddr = {}
  941. -- cli_up_history()
  942. -- print("history up cmd: "..table.concat(inbuf,nil))
  943. -- --inaddr = {}
  944. -- cli_up_history()
  945. -- print("history up cmd: "..table.concat(inbuf,nil))
  946. -- --inaddr = {}
  947. -- cli_up_history()
  948. -- print("history up cmd: "..table.concat(inbuf,nil))
  949. --[[
  950. cli_down_history
  951. 功能 下翻命令行
  952. 参数 无
  953. 返回值:无
  954. ]]
  955. function cli_down_history()
  956. local index
  957. local lastindex = 0
  958. lastindex = cli.his_idx;
  959. index = cli.his_idx;
  960. local inaddr = {}
  961. local history_max_used = #cli.history
  962. log.debug("d0:lastindex: "..lastindex,"index: "..index)
  963. while cli.history[index] ~= '\0'
  964. do
  965. index = (index + 1) % (history_max_used +1)
  966. end
  967. log.debug("d1:lastindex: "..lastindex,"index: "..index)
  968. if index ~= cli.his_idx then
  969. while cli.history[index] == '\0'
  970. do
  971. index = (index + 1) % history_max_used;
  972. end
  973. log.debug("d2:lastindex: "..lastindex,"index: "..index)
  974. end
  975. cli.his_idx = index;
  976. local i = 1
  977. while cli.history[lastindex] ~= '\0'
  978. do
  979. inaddr[i] = cli.history[lastindex]
  980. i= i+1
  981. lastindex = (lastindex + 1) % (history_max_used+1);
  982. end
  983. log.debug("d3:lastindex: "..lastindex,"index: "..index)
  984. inaddr[i] = '\0'
  985. inbuf = inaddr
  986. return
  987. end
  988. --[[
  989. 下翻测试函数
  990. ]]
  991. -- cli_down_history()
  992. -- print("history down cmd: "..table.concat(inbuf,nil))
  993. -- cli_down_history()
  994. -- print("history down cmd: "..table.concat(inbuf,nil))
  995. -- cli_down_history()
  996. -- print("history down cmd: "..table.concat(inbuf,nil))
  997. --[[
  998. Parse command line arguments string,解析命令行
  999. @param argv Command line arguments to parse
  1000. @return options Options (ie anything),表示参数,如serverip=192.168.1.1,等号两边不能有空格
  1001. @return args Arguments,表示命令行关键字,如network
  1002. ]]
  1003. function parse(argv)
  1004. local options = { }
  1005. local arguments = { }
  1006. if not argv then
  1007. return options, arguments
  1008. end
  1009. for i,arg in ipairs(argv) do
  1010. local long_opt = arg:match("^%-%-(.*)")
  1011. local short_opt = arg:match("^%-(.*)")
  1012. if long_opt or short_opt then
  1013. log.info("cmd.parse","long_opt:",long_opt,"short_opt:",short_opt)
  1014. local key, value
  1015. if long_opt then
  1016. key, value = long_opt:match("([a-zA-Z_%-]*)=(.*)")
  1017. else
  1018. key, value = short_opt:match("([a-zA-Z])=(.*)")
  1019. end
  1020. key = key or long_opt or short_opt
  1021. log.info("cmd.parse","key:",key,"value:",value)
  1022. key = key:gsub("\r\n", "")
  1023. value = value:gsub("\r\n", "")
  1024. if value then
  1025. -- option seen once? transform option to array of values
  1026. if type(options[key]) == 'string' then
  1027. options[key] = { options[key], value }
  1028. -- options seen many times? append value
  1029. elseif type(options[key]) == 'table' then
  1030. table.insert(options[key], value)
  1031. -- options was not seen. assign value
  1032. else
  1033. options[key] = value
  1034. end
  1035. -- no value provided. just set option to true
  1036. elseif key and key ~= "" then
  1037. options[key] = true
  1038. -- options stop. copy left arguments
  1039. elseif long_opt then
  1040. for i = i + 1, #argv do
  1041. table.insert(arguments, argv[i])
  1042. end
  1043. break
  1044. end
  1045. else
  1046. table.insert(arguments, arg)
  1047. end
  1048. end
  1049. return options, arguments
  1050. end
  1051. --[[
  1052. 测试函数
  1053. ]]
  1054. -- local options={}
  1055. -- local arguments = {}
  1056. -- local cmd_str = string.split("config --serverip=192.168.1.1", ' ')
  1057. -- options, arguments =parse(cmd_str)
  1058. -- log.info("main.cmd", "options:", json.encode(options), "arguments:", json.encode(arguments))
  1059. --[[
  1060. lookup_command
  1061. 功能 命令行关键字查找命令行
  1062. 参数 无
  1063. 返回值:0 失败 命令行内容 成功
  1064. ]]
  1065. local function lookup_command(key_name)
  1066. local i = 1
  1067. local n = 0
  1068. local len = string.len(key_name)
  1069. while i <= CLI_MAX_COMMANDS and n < cli.num
  1070. do
  1071. if cli.cmds[i].key ~= nil then
  1072. --See if partial or full match is expected
  1073. if len ~= 0 then
  1074. if string.sub(cli.cmds[i].key, 1, len) ==key_name then
  1075. log.debug("cmd.lookup_command","find cmd :"..cli.cmds[i].key)
  1076. return cli.cmds[i]
  1077. end
  1078. end
  1079. end
  1080. i = i+1
  1081. n = n+1
  1082. end
  1083. return nil
  1084. end
  1085. --[[
  1086. 命令行补齐函数测试
  1087. ]]
  1088. local cmd_tmp = {}
  1089. local function dis_server_info()
  1090. log.debug("server_info cmd callback")
  1091. if cli.cmd_in_options ~= nil then
  1092. log.info("cmd.lookup_command","options",json.encode(cli.cmd_in_options))
  1093. cli.outbuf = "cmd dis_server_info finished"
  1094. end
  1095. end
  1096. -- cli_register_command("config","config server info ",dis_server_info)
  1097. -- cmd_tmp = lookup_command("confi")
  1098. --[[
  1099. proc_onecmd
  1100. 功能 命令行处理函数
  1101. 参数 cmd,一条命令行字符数组
  1102. 返回值:0 失败 1 成功
  1103. ]]
  1104. local function cli_proc_onecmd(cmd)
  1105. local cmd_key ={}
  1106. local options = {}
  1107. local command = {}
  1108. if cmd == nil then
  1109. log.error("cmd.cli_proc_onecmd", " invalid cmd")
  1110. return 0
  1111. end
  1112. cli.cmd_in_options,cmd_key= parse(string.split(cmd,' '))
  1113. if cmd_key == nil then
  1114. log.error("cmd.cli_proc_onecmd", "cmd is not found")
  1115. print("bad command!")
  1116. return 0
  1117. end
  1118. options = cli.cmd_in_options
  1119. log.info("cmd.cli_proc_onecmd", "options:", json.encode(options), "cmd key:", json.encode(cmd_key))
  1120. command = lookup_command(table.concat(cmd_key,nil))
  1121. if command == nil then return 0 end
  1122. log.info("cmd.cli_proc_onecmd", "found cmd: "..command.key)
  1123. command.func(options)
  1124. print(cli.outbuf)
  1125. cli.outbuf = ""
  1126. return 1
  1127. end
  1128. --[[
  1129. 命令行测试函数
  1130. ]]
  1131. -- local cmds = "config --serverip=192.168.1.1"
  1132. -- cli_proc_onecmd(cmds)
  1133. -- --命令行打印函数
  1134. -- cli_print(cmd_output)
  1135. -- if cmd_output ~= "" then
  1136. -- pins.setup(pio.P0_24,1)
  1137. -- uart.write(cmd_uart_id,cmd_output)
  1138. -- sys.wait(10)
  1139. -- pins.setup(pio.P0_24,0)
  1140. -- end
  1141. -- 命令行处理完后处理变量
  1142. local function cli_pro_after_process()
  1143. inbuf ={}
  1144. cli.outbuf = ""
  1145. bp = 1
  1146. esc = 0
  1147. key1 = 0
  1148. key2=0
  1149. inbuf920 = ""
  1150. end
  1151. --注册串口的数据发送通知函数
  1152. uart.on(cmd_uart_id,"receive",function() sys.publish("CMD_UART_RECEIVE") end)
  1153. --配置并且打开串口
  1154. --uart.setup(cmd_uart_id,uart_baud,8,uart.PAR_NONE,uart.STOP_1)
  1155. uart.setup(cmd_uart_id,uart_baud,8,uart.PAR_NONE,uart.STOP_1,nil,1) --必须先使用setup,并且最后一个参数是1(打开发送完成后的通知功能)
  1156. uart.set_rs485_oe(cmd_uart_id, pio.P0_24)
  1157. --[[
  1158. --测试网络注册模式和信号强度关系
  1159. local timer
  1160. local retryCount = 0
  1161. timer = sys.timerLoopStart(function ()
  1162. log.info("cmd.factory_test_command","-------> neRssi:",net.getRssi(),"netMode:",net.getNetMode())
  1163. send_uart_data("-------> neRssi:"..net.getRssi()..", netMode:"..net.getNetMode().."\r\n")
  1164. retryCount = retryCount + 1
  1165. if retryCount >= 100 then
  1166. log.info("cmd.factory_test_command","-------> retry timeout")
  1167. send_uart_data("-------> retry timeout\r\n")
  1168. sys.timerStop(timer)
  1169. end
  1170. end, 100)
  1171. ]]
  1172. --通知上位机开始厂测
  1173. sys.taskInit(function()
  1174. local result,data = sys.waitUntil("SIM_IND", 5000)
  1175. if not result then
  1176. log.warn("cmd.factory_test_notify","wait SIM_IND timeout!")
  1177. else
  1178. log.warn("cmd.factory_test_notify","receive SIM_IND message")
  1179. end
  1180. local result2,data2 = sys.waitUntil("TIMER_SYNC_SUCCESS", 5000)
  1181. if not result2 then
  1182. log.warn("cmd.factory_test_notify","wait TIMER_SYNC_SUCCESS timeout!")
  1183. else
  1184. log.info("cmd.factory_test_notify","receive TIMER_SYNC_SUCCESS message")
  1185. end
  1186. send_uart_data("startup success")
  1187. end)
  1188. --读取指定rfid号的标签信号成功时
  1189. sys.subscribe("factory_test_read_rfid_success", function(rfid)
  1190. if rfid and type(rfid) == "table" then
  1191. if rfid.rssi >= 0 then
  1192. foundRfid = true
  1193. foundRfidRssi = rfid.rssi
  1194. log.info("cmd.factory_test_command.factory_test_read_rfid_success","read rfid success, rfid.rssi:",rfid.rssi,",rfid.rfid:",rfid.rfid)
  1195. --发送厂测停止读标签消息通知
  1196. sys.publish("factory_test_stop_read_rfid")
  1197. --[[
  1198. sys.unsubscribe("factory_test_read_rfid_success",function ()
  1199. log.info("cmd.factory_test_command.factory_test_read_rfid_success","unsubscribe factory_test_read_rfid_success")
  1200. end)
  1201. ]]
  1202. else
  1203. log.error("cmd.factory_test_command.factory_test_read_rfid_success","rfid.rssi invalid! rfid.rssi:",rfid.rssi)
  1204. end
  1205. else
  1206. log.error("cmd.factory_test_command.factory_test_read_rfid_success","rfid invalid!")
  1207. end
  1208. end)
  1209. --读取指定rfid号的标签信号成功时
  1210. sys.subscribe("cmd_read_rfid_success", function(rfid)
  1211. if rfid and type(rfid) == "table" then
  1212. if rfid.rssi >= 0 then
  1213. cmdFoundRfid = true
  1214. cmdFoundRfidRssi = rfid.rssi
  1215. log.info("cmd.cmd_command.cmd_read_rfid_success","read rfid success, rfid.rssi:",rfid.rssi,",rfid.rfid:",rfid.rfid)
  1216. --发送厂测停止读标签消息通知
  1217. sys.publish("cmd_stop_read_rfid")
  1218. else
  1219. log.error("cmd.cmd_command.cmd_read_rfid_success","rfid.rssi invalid! rfid.rssi:",rfid.rssi)
  1220. end
  1221. else
  1222. log.error("cmd.cmd_command.cmd_read_rfid_success","rfid invalid!")
  1223. end
  1224. end)
  1225. -- 返回值: false--不是有效的920数据,不做任何处理 true--有效的920数据,处理后清空inbuf缓存
  1226. local function process_920_data()
  1227. if #inbuf920 <= 4 then
  1228. return false
  1229. end
  1230. --log.info("cmd.process_920_data",inbuf920:toHex())
  1231. local is_process = false
  1232. --读到920 rfid数据时
  1233. --local res,pos = string.find(inbuf920:toHex(),"1100EE00")
  1234. local res,pos = string.find(inbuf920,string.char(0x0b)..string.char(0x00)..string.char(0xEE)..string.char(0x00))
  1235. if res and #inbuf920 >= pos+8 then
  1236. log.info("cmd.process_920_data","920 rfid data:",inbuf920:toHex(),inbuf920:sub(pos-3,pos+8):toHex())
  1237. sys.publish("receive_920_data", inbuf920:sub(pos-3,pos+8))
  1238. --cli_pro_after_process()
  1239. is_process = true
  1240. end
  1241. --收到读写器设备信息应答时:0D 00 21 00 03 3F 09 03 3D 3D 1E 0A DA F6
  1242. local res1,pos1 = string.find(inbuf920,string.char(0x0d)..string.char(0x00)..string.char(0x21)..string.char(0x00))
  1243. if res1 and #inbuf920 >= pos1+10 then
  1244. log.info("cmd.process_920_data","920 device data:",inbuf920:toHex(),inbuf920:sub(pos1-3,pos1+10):toHex())
  1245. sys.publish("receive_920_device_info", inbuf920:sub(pos1-3,pos1+10))
  1246. --cli_pro_after_process()
  1247. is_process = true
  1248. end
  1249. if is_process then
  1250. cli_pro_after_process()
  1251. return true
  1252. end
  1253. return false
  1254. end
  1255. local function process_data(char)
  1256. local cmd_str = table.concat(inbuf)
  1257. local last_char = char
  1258. inbuf920 = inbuf920..char
  1259. --如果是920数据就处理,如果不是,按命令行指令处理
  1260. if not process_920_data() then
  1261. if #inbuf > 1024 then
  1262. log.info("cmd.process_data","#inbuf > 1024, drop it!! inbuf:",cmd_str:toHex())
  1263. cli_pro_after_process()
  1264. else
  1265. if last_char == "" and #inbuf > 0 then
  1266. last_char = cmd_str:sub(-1)
  1267. end
  1268. if last_char ~= "" then
  1269. result = cli_get_input(last_char)
  1270. if 2 ==result then
  1271. log.debug("cmd.process_data","get the cmd and put it in history,#inbuf=",#inbuf,"last_char:toHex():",last_char:toHex())
  1272. cli_history_input()
  1273. log.debug("cmd.process_data","------>cmd_str:",cmd_str:toHex())
  1274. cli_proc_onecmd(cmd_str)
  1275. cli_pro_after_process()
  1276. elseif 0== result then
  1277. log.debug("cmd.process_data", "get the cmd error")
  1278. cli_pro_after_process()
  1279. else
  1280. -- 1 go on get the cmd
  1281. end
  1282. end
  1283. end
  1284. end
  1285. end
  1286. --启动串口数据接收任务
  1287. -- 串口处理函数
  1288. local function cmdTaskRead()
  1289. local char = ''
  1290. local count = 0
  1291. local result = 0
  1292. --sys.wait(10000)
  1293. while true do
  1294. char = uart.read(cmd_uart_id,1)
  1295. if char == "" then
  1296. local wait_ms = 35000/uart_baud
  1297. if wait_ms < 1 then
  1298. wait_ms = 1
  1299. end
  1300. if not sys.waitUntil("CMD_UART_RECEIVE",wait_ms) then
  1301. -- 3.5个字符的时间间隔,只是用在RTU模式下面,因为RTU模式没有开始符和结束符,
  1302. -- 两个数据包之间只能靠时间间隔来区分,Modbus定义在不同的波特率下,间隔时间是不一样的,
  1303. -- 所以就是3.5个字符的时间,波特率高,这个时间间隔就小,波特率低,这个时间间隔相应就大
  1304. -- 4800 = 7.297ms
  1305. -- 9600 = 3.646ms
  1306. -- 19200 = 1.771ms
  1307. -- 38400 = 0.885ms
  1308. --uart接收数据,如果 35000/uart_baud 毫秒没有收到数据,则打印出来所有已收到的数据,清空数据缓冲区,等待下次数据接收
  1309. --注意:
  1310. --因为在整个GSM模块软件系统中,软件定时器的精确性无法保证,例如本demo配置的是100毫秒,在系统繁忙时,实际延时可能远远超过100毫秒,达到200毫秒、300毫秒、400毫秒等
  1311. --设置的延时时间越短,误差越大
  1312. process_data(char)
  1313. end
  1314. else
  1315. process_data(char)
  1316. end
  1317. end
  1318. end
  1319. --启动串口数据接收任务
  1320. sys.taskInit(cmdTaskRead)
  1321. --定时读取读写器信息
  1322. sys.taskInit(function()
  1323. if not sys.waitUntil("TIMER_SYNC_SUCCESS", 600*1000) then
  1324. log.error("cmd.send_920_read_cmd","wait timer sync timeout,reboot now ...")
  1325. sys.restart("[send_920_read_cmd]wait timer sync timeout")
  1326. end
  1327. --等几分钟再使用484口发数据,以免影响厂测程序
  1328. sys.wait(240*1000)
  1329. while true do
  1330. local read_cmd = string.char(0x04)..string.char(0x00)..string.char(0x21)
  1331. local res, CRC = funlib.get920Crc16(read_cmd)
  1332. if not res then
  1333. log.error("cmd.send_920_read_cmd", "get920Crc16 failed!!",read_cmd:toHex())
  1334. return false
  1335. end
  1336. local read_cmd_hex = read_cmd:toHex()..string.format("%04X",CRC)
  1337. log.info("cmd.send_920_read_cmd", "send 920 read cmd hex:",read_cmd_hex)
  1338. local read_cmd_bin = funlib.hex2str(read_cmd_hex)
  1339. send_uart_data(read_cmd_bin)
  1340. sys.wait(120*1000)
  1341. end
  1342. end)