From 69c67fce7ff460675fdbffde3613a0bb9992e855 Mon Sep 17 00:00:00 2001 From: Piotr Haber Date: Wed, 8 Feb 2017 10:25:37 +0100 Subject: [PATCH] telit: register SIM if it goes straight to ready SIM without PIN goes straight to state 3 (INSERTED and READY) on some modem/firmware versions. --- plugins/telit.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/plugins/telit.c b/plugins/telit.c index 19898f95..b194b65a 100644 --- a/plugins/telit.c +++ b/plugins/telit.c @@ -175,6 +175,11 @@ static void switch_sim_state_status(struct ofono_modem *modem, int status) } break; case 3: /* SIM inserted, SMS and phonebook ready */ + if (data->have_sim == FALSE) { + ofono_sim_inserted_notify(data->sim, TRUE); + data->have_sim = TRUE; + } + if (data->sms_phonebook_added == FALSE) { ofono_phonebook_create(modem, 0, "atmodem", data->chat); ofono_sms_create(modem, 0, "atmodem", data->chat);