From 75570e45dac524e9720c653d0b9f46a4eead2268 Mon Sep 17 00:00:00 2001 From: Dylan Van Assche Date: Wed, 11 Aug 2021 17:09:26 +0200 Subject: [PATCH] gpio: extend softsleep wake time 50ms is way to short for the Quectel firmware to react, increase to 200ms --- src/gpio.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gpio.c b/src/gpio.c index 617b69e..aae9b94 100644 --- a/src/gpio.c +++ b/src/gpio.c @@ -73,8 +73,8 @@ int gpio_sequence_wake(struct EG25Manager *manager) { gpiod_line_set_value(manager->gpio_out[GPIO_OUT_DTR], 0); - /* Give the modem 5ms to wake from soft sleep */ - usleep(5000); + /* Give the modem 200ms to wake from soft sleep */ + usleep(200000); g_message("Executed soft wake sequence");