Replies: 3 comments
-
Continued researching the issue and my best guess is that the modem PPP is probably expecting the "escaped" version of 0x23:
|
Beta Was this translation helpful? Give feedback.
-
If I understand correctly, the modem PPP driver is incorrectly expecting an escaped byte. This is probably related to LCP ACCM settings that were negotiated. |
Beta Was this translation helpful? Give feedback.
-
Oops, there is an identical issue here: #78269 |
Beta Was this translation helpful? Give feedback.
-
I am trying write a driver for SIMCOM A7672SA modem. It always fails during the PPP setup:
The modem is sending the following frame, but the PPP driver fails to parse it, at byte
0x03
where it expects0x7d
instead:As far as I can tell this seems to be a valid PPP frame,
0x03
identifies the frame as an HDLC UI (Unnumbered Information) frame).Is this just because the driver wants to ignore the frame? And the issue is somewhere else?
The problem is that the driver afterwards keeps trying to send the
Configure-Req
but the modem never replies with a frame that starts with7e ff 7d
, always with7e ff 03
.. so this loops keep going on forever.I had Gemini decode the 2 PPP frames sent by modem and they seem valid: https://g.co/gemini/share/f4cd605dac13
Beta Was this translation helpful? Give feedback.
All reactions