Skip to content

Commit cc0d527

Browse files
committed
esp_modem: Fix AT command in ‘set_data_mode_sim8xx()’ for SIM800 modem device
1 parent 804a8d5 commit cc0d527

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

components/esp_modem/src/esp_modem_command_library.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,7 @@ command_result set_data_mode(CommandableIf *t)
269269
command_result set_data_mode_sim8xx(CommandableIf *t)
270270
{
271271
ESP_LOGV(TAG, "%s", __func__ );
272-
return generic_command(t, "ATD*99##\r", "CONNECT", "ERROR", 5000);
272+
return generic_command(t, "ATD*99#\r", "CONNECT", "ERROR", 5000);
273273
}
274274

275275
command_result resume_data_mode(CommandableIf *t)

0 commit comments

Comments
 (0)