-
Notifications
You must be signed in to change notification settings - Fork 31
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Response with \r\r\n confuses URC Parser #191
Comments
I wrote a simple app (running on an ESP32) to demonstrate the behavior I'm seeing based on the unit test in
The output is:
If there is only one |
patsoffice
changed the title
Response with \r\r\n confuses Parser
Response with \r\r\n confuses URC Parser
Dec 7, 2023
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hello,
I am attempting to make use of atat for an application to make and answer voice calls as well as sending and interpreting DTMF tones. The modem I'm using emits the following when a voice call comes in:
I was able to return a single Urc on a ring with the following (note the
urc_helper
inimpl Parser for Urc
has a trailing'\r'
:However, if there is a subsequent
\r\r\nRING\r\r\n
I seem to stop getting any more data from the Digester (calls totry_next_message_pure()
on the Urc subscription channel returnNone
).I'm not sure where exactly to begin to debug this further as I am quite the Rust n00b.
The text was updated successfully, but these errors were encountered: