summaryrefslogtreecommitdiff
path: root/gatchat
diff options
context:
space:
mode:
authorDenis Kenzior <denkenz@gmail.com>2009-07-15 11:45:17 -0500
committerMarcel Holtmann <marcel@holtmann.org>2009-07-15 18:59:40 +0200
commit3e16ebf1750bdef54975919ec6bf087b01e1351e (patch)
tree81b116622291b9eb4302c63273917b2b36464ad4 /gatchat
parenta3d77a25d034aa72bb59b3092a93132cccce2d56 (diff)
downloadconnman-3e16ebf1750bdef54975919ec6bf087b01e1351e.tar.gz
connman-3e16ebf1750bdef54975919ec6bf087b01e1351e.tar.bz2
connman-3e16ebf1750bdef54975919ec6bf087b01e1351e.zip
Fix modem wakeup handling
Diffstat (limited to 'gatchat')
-rw-r--r--gatchat/gatchat.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/gatchat/gatchat.c b/gatchat/gatchat.c
index 32f0b592..dfd60d5f 100644
--- a/gatchat/gatchat.c
+++ b/gatchat/gatchat.c
@@ -765,6 +765,14 @@ static gboolean received_data(GIOChannel *channel, GIOCondition cond,
static gboolean wakeup_no_response(gpointer user)
{
GAtChat *chat = user;
+ struct at_command *cmd = g_queue_peek_head(chat->command_queue);
+
+ /* Sometimes during startup the modem is still in the ready state
+ * and might acknowledge our 'wakeup' command. In that case don't
+ * timeout the wrong command
+ */
+ if (cmd == NULL || cmd->id != 0)
+ return FALSE;
g_at_chat_finish_command(chat, FALSE, NULL);