This forum uses cookies
This forum makes use of cookies to store your login information if you are registered, and your last visit if you are not. Cookies are small text documents stored on your computer; the cookies set by this forum can only be used on this website and pose no security risk. Cookies on this forum also track the specific topics you have read and when you last read them. Please confirm that you accept these cookies being set.

Reactor modem problem
#3
(19.04.2024, 07:55)admin Wrote: 1. Check that the modem is detected when the system starts in System config > Status > System log.

2. Run this script and post what you get in Logs:
Code:
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
tty1 = '/dev/ttyACM3' tty2 = '/dev/ttyUSB2' if io.exists(tty1) then   tty = tty1 elseif io.exists(tty2) then   tty = tty2 else   log('port not found')   return end port = require('serial').open(tty) if not port then   log('cannot open port')   return end function readstatus()   local data, res, simok, network   port:flush()   port:write('AT+CSQ\r\n')   data = port:read(1000, 1)   if data then     res = data:match('+CSQ: (%d+)')     res = tonumber(res)     if res then       log('Signal: ' .. tostring(res))     else       log('Signal: no response')     end   else     log('Signal: no data from port')   end   port:flush()   port:write('AT+CPIN?\r\n')   data = port:read(1000, 1) or ''   if data:find('CME ERROR') then     log('SIM: not found')   elseif data:find('+CPIN: READY') then     log('SIM: OK')     simok = true   else     log('SIM: unknown')   end   port:flush()   port:write('AT+COPS?\r\n')   data = port:read(1000, 1)   if data then     res = data:match('+COPS: %d+,%d+,"(.*)",%d+')     if res then       log('Network: ' .. tostring(res))       network = res     else       log('Network: no info')     end   else     log('Network: no data from port')   end   return simok and network end for i = 1, 20 do   if readstatus() then     break   end end

OK in the log i see error network no info and SIM not found signal 13, but in the phone the SIM works.

Why ?
Reply


Messages In This Thread
Reactor modem problem - by Frank68 - 19.04.2024, 06:25
RE: Reactor modem problem - by admin - 19.04.2024, 07:55
RE: Reactor modem problem - by Frank68 - 19.04.2024, 08:16
RE: Reactor modem problem - by admin - 19.04.2024, 08:17
RE: Reactor modem problem - by Frank68 - 19.04.2024, 08:43
RE: Reactor modem problem - by BMSimon - 14.02.2025, 08:26
RE: Reactor modem problem - by admin - 14.02.2025, 08:32
RE: Reactor modem problem - by BMSimon - 14.02.2025, 08:40
RE: Reactor modem problem - by admin - 14.02.2025, 08:53

Forum Jump: