plugins: telit: send AT&C0 on both channels

At least firmware version 12.00.405 on the UE910-EUR otherwise
closes the AT command port whenever the PPP connection is
dropped, and we'd be left in a funny state.
This commit is contained in:
André Draszik 2017-02-07 11:26:50 +00:00 committed by Denis Kenzior
parent 61453d8688
commit 177e39e44b
1 changed files with 2 additions and 1 deletions

View File

@ -251,9 +251,10 @@ static void cfun_enable_cb(gboolean ok, GAtResult *result, gpointer user_data)
/*
* Switch data carrier detect signal off.
* When the DCD is disabled the modem does not hangup anymore
* after the data connection.
* after the data connection. We need to do that on both channels.
*/
g_at_chat_send(data->chat, "AT&C0", NULL, NULL, NULL, NULL);
g_at_chat_send(data->modem, "AT&C0", NULL, NULL, NULL, NULL);
data->have_sim = FALSE;
data->sms_phonebook_added = FALSE;