gpio: extend softsleep wake time

50ms is way to short for the Quectel firmware to react, increase to 200ms
This commit is contained in:
Dylan Van Assche
2021-08-11 17:09:26 +02:00
parent 34c3b19f70
commit 75570e45da

View File

@@ -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");