You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi
When I'm try to dial any number call is happened but callback is not working.
On command 'AT+CLCC' SIM800C returns next +CLCC: 1,0,2,0,0,"phone_number",129,""
and your regex ^\+CLCC:\s+(\d+),(\d),(\d),(\d),([^,]),"([^,]*)",(\d+)$
doesn't match it, cause response has some information in the end of the string/ According to docs it's alphaId.
Can you change your regex to avoid this case and support SIM800C
^\+CLCC:\s+(\d+),(\d),(\d),(\d),([^,]),"([^,]*)",(\d+)
I think this will be enough
The text was updated successfully, but these errors were encountered:
Hi
When I'm try to dial any number call is happened but callback is not working.
On command 'AT+CLCC' SIM800C returns next
+CLCC: 1,0,2,0,0,"phone_number",129,""
and your regex
^\+CLCC:\s+(\d+),(\d),(\d),(\d),([^,]),"([^,]*)",(\d+)$
doesn't match it, cause response has some information in the end of the string/ According to docs it's alphaId.
Can you change your regex to avoid this case and support SIM800C
^\+CLCC:\s+(\d+),(\d),(\d),(\d),([^,]),"([^,]*)",(\d+)
I think this will be enough
The text was updated successfully, but these errors were encountered: