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
currently, esp_at_get_para_as_str() in ESP-AT only supports parsing strings that are enclosed in double quotes (e.g., AT+MYCMD="Hello"\r\n).
If a parameter is passed without quotes (e.g., AT+MYCMD=Hello\r\n), it is not recognized as a valid string.
Is there a way to do this in the currrent version of esp-at
Describe the solution you'd like.
Update esp_at_get_para_as_str() to check for quotes, and if none are found, treat the token as an unquoted string.