diff options
author | Krzysztof Drobinski <k.drobinski@camlintechnologies.com> | 2019-09-11 17:48:00 +0200 |
---|---|---|
committer | Krzysztof Drobinski <k.drobinski@camlintechnologies.com> | 2019-10-21 11:40:39 +0200 |
commit | ef30dd800c1dd802fc18b6e627224a065f4b5223 (patch) | |
tree | 6cd493e4589171c7a2a87bc3bbec48d0a6810d67 | |
parent | 4a0de586dbf6c0c268eadd6c8ff506ba38420e18 (diff) |
telit: increase timeout for AT#REBOOT
It was observed that sporadically it may take more than 5 seconds for modem to
respond to AT#REBOOT. Increase the timeout on AT command to not report
unnecessary errors to the user.
-rw-r--r-- | plugins/telit/mm-broadband-modem-telit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/telit/mm-broadband-modem-telit.c b/plugins/telit/mm-broadband-modem-telit.c index d6b1ea2d..373ecaa3 100644 --- a/plugins/telit/mm-broadband-modem-telit.c +++ b/plugins/telit/mm-broadband-modem-telit.c @@ -710,7 +710,7 @@ modem_reset (MMIfaceModem *self, { mm_base_modem_at_command (MM_BASE_MODEM (self), "AT#REBOOT", - 3, + 8, FALSE, callback, user_data); |