diff options
author | Dan Williams <dcbw@redhat.com> | 2010-11-29 16:49:30 -0600 |
---|---|---|
committer | Dan Williams <dcbw@redhat.com> | 2010-11-30 10:04:46 -0600 |
commit | ea0797cbec7cae4d93807e8ac3a796650ff209a9 (patch) | |
tree | c963e8849222f2285fd7007722e399812c51bec4 /src/tests/test-modem-helpers.c | |
parent | 586c9ec2c5ab66c16b934ef5f0b9b6803904ea84 (diff) |
gsm: prefer AT+CIND signal quality for modems that support it (lp:682282) (bgo #636040)
Some devices always reply with 99 for AT+CSQ when in UMTS mode (Linktop LW273)
so if the modem supports it, use CIND/CIEV instead.
Diffstat (limited to 'src/tests/test-modem-helpers.c')
-rw-r--r-- | src/tests/test-modem-helpers.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tests/test-modem-helpers.c b/src/tests/test-modem-helpers.c index 5627416a..f0cbe61c 100644 --- a/src/tests/test-modem-helpers.c +++ b/src/tests/test-modem-helpers.c @@ -1095,7 +1095,7 @@ test_cind_results (const char *desc, g_print ("\nTesting %s +CIND response...\n", desc); - results = mm_parse_cind_response (reply, &error); + results = mm_parse_cind_test_response (reply, &error); g_assert (results); g_assert (error == NULL); |