diff options
author | Aleksander Morgado <aleksander@aleksander.es> | 2019-09-16 18:11:48 +0200 |
---|---|---|
committer | Aleksander Morgado <aleksander@aleksander.es> | 2019-09-16 18:14:35 +0200 |
commit | 21be687336b1f422b18d0d0bc4d1c1f1cffce81c (patch) | |
tree | 1442962d7bcd3ee0c0bd50172265d9e54284286e | |
parent | 1da694e9e0011634803cf8088e79e6ac0a296948 (diff) |
broadband-modem: do not add +CSQ response to cache
Otherwise, the +CSQ reported signal quality will never change!
Fixes edc117406888f489d4ebd29b6d08ea67d60bb99c
-rw-r--r-- | src/mm-broadband-modem.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mm-broadband-modem.c b/src/mm-broadband-modem.c index 0557cdf0..3cbf5134 100644 --- a/src/mm-broadband-modem.c +++ b/src/mm-broadband-modem.c @@ -1962,8 +1962,8 @@ signal_quality_csq_ready (MMBroadbandModem *self, * try the other command if the first one fails. */ static const MMBaseModemAtCommand signal_quality_csq_sequence[] = { - { "+CSQ", 3, TRUE, response_processor_string_ignore_at_errors }, - { "+CSQ?", 3, TRUE, response_processor_string_ignore_at_errors }, + { "+CSQ", 3, FALSE, response_processor_string_ignore_at_errors }, + { "+CSQ?", 3, FALSE, response_processor_string_ignore_at_errors }, { NULL } }; |