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
I have used the latest released firmware or have updated my ESP-AT branch (master or release) to the latest version and checked that the issue is present there.
I have searched the issue tracker for a similar issue and not found a similar issue.
General issue report
I'm currently having an issue with the SYSMSG AT command. As described here setting ATSYSMSG=0 should block all prompt messages from the ESP32 to the master device including the WiFi connection status, but it does not for some reason.
I made a test setup with my phone as a hotspot and ESP32 is connected to my phone. With SYSMSG=0 and ESP32 connected to my phone, I disable the hotspot on my phone and ESP32 immediately sends WIFI DISCONNECTED.
I'm using ESP32-C3 with ESP32 AT Firmware V3.3.0.0 and communication is done with the SPI.
This is a big problem for me since I'm using pass-through mode for getting HTTP GET and HTTP POST.
AT+SYSMSG usually used for Passthrough Mode, you can refer to the parameter explanation under the command for more details. In your case, AT works in Normal Transmission Mode.
That was exactly what I used as a workaround in the meantime and it worked perfectly.
One this that I noticed with AT+SYSMSGFILTERCFG is, if there is head and tail regex sent as described here for passthrough mode for removing tail and header form the HTTPCGET on every received data, after sending AT+SYSMSGFILTERCFG with it's parameters and waiting for ">", I must send separate SPI transactions for head and tail data, otherwise ESP32 just hangs.
So, if I need to enable filter for the HTTPCGET to remove header and tail from every HTTP data I need to:
Send AT+SYSMSGFILTERCFG=1,18,3\r\n
Wait for response OK\r\n\r\n>
Send ^+HTTPCGET:[0-9]*,
Wait at least 5 milliseconds
Send \r\n$
Is this is intended behavior? Because I did not see anywhere documented that head and tail data must be sent separately with some delay in between.
Answers checklist.
General issue report
I'm currently having an issue with the SYSMSG AT command. As described here setting ATSYSMSG=0 should block all prompt messages from the ESP32 to the master device including the WiFi connection status, but it does not for some reason.
I made a test setup with my phone as a hotspot and ESP32 is connected to my phone. With SYSMSG=0 and ESP32 connected to my phone, I disable the hotspot on my phone and ESP32 immediately sends WIFI DISCONNECTED.
I'm using ESP32-C3 with ESP32 AT Firmware V3.3.0.0 and communication is done with the SPI.
This is a big problem for me since I'm using pass-through mode for getting HTTP GET and HTTP POST.
Here is the AT Command log
Maybe I'm using a wrong command, so any advice would be helpful.
Thanks!
The text was updated successfully, but these errors were encountered: