From 6e3a6156b34c52bde253b097976d0ba9dd575879 Mon Sep 17 00:00:00 2001 From: Denis Kenzior Date: Wed, 28 Nov 2012 10:08:16 -0600 Subject: [PATCH] ifx: Bump the setup timeout The newer IFX firmware was changed, it no longer accepts AT commands until the UA frame has been sent back to the AP. The commands are simply dropped on the floor. This requires a proper fix in GAtMux, but until then simply bump up the timeout to get around this issue. --- plugins/ifx.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/ifx.c b/plugins/ifx.c index 6936fd10..df36ba76 100644 --- a/plugins/ifx.c +++ b/plugins/ifx.c @@ -454,7 +454,7 @@ static void setup_internal_mux(struct ofono_modem *modem) } /* wait for DLC creation to settle */ - data->dlc_init_source = g_timeout_add(10, dlc_setup, modem); + data->dlc_init_source = g_timeout_add(500, dlc_setup, modem); return;