From cc0d52793b0625da5f7c5a7970b8ab4359c77d14 Mon Sep 17 00:00:00 2001 From: Claudio Indellicati Date: Thu, 7 Apr 2022 17:02:12 +0200 Subject: [PATCH] =?UTF-8?q?esp=5Fmodem:=20Fix=20AT=20command=20in=20?= =?UTF-8?q?=E2=80=98set=5Fdata=5Fmode=5Fsim8xx()=E2=80=99=20for=20SIM800?= =?UTF-8?q?=20modem=20device?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- components/esp_modem/src/esp_modem_command_library.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/esp_modem/src/esp_modem_command_library.cpp b/components/esp_modem/src/esp_modem_command_library.cpp index 77957afb2..450ede273 100644 --- a/components/esp_modem/src/esp_modem_command_library.cpp +++ b/components/esp_modem/src/esp_modem_command_library.cpp @@ -269,7 +269,7 @@ command_result set_data_mode(CommandableIf *t) command_result set_data_mode_sim8xx(CommandableIf *t) { ESP_LOGV(TAG, "%s", __func__ ); - return generic_command(t, "ATD*99##\r", "CONNECT", "ERROR", 5000); + return generic_command(t, "ATD*99#\r", "CONNECT", "ERROR", 5000); } command_result resume_data_mode(CommandableIf *t)