diff options
author | Aleksander Morgado <aleksander@aleksander.es> | 2020-06-29 09:57:28 +0200 |
---|---|---|
committer | Aleksander Morgado <aleksander@aleksander.es> | 2020-06-29 08:53:00 +0000 |
commit | 60211b51b112db23c07dfd62dd6336a964a287e0 (patch) | |
tree | d64974f41e686c71d29ce2a93dd8c4905d0f87dc | |
parent | 58dbb68fa0c0a30d33d93969016f39880b142920 (diff) |
quectel,shared: use QGPS=? test to check capabilities
-rw-r--r-- | plugins/quectel/mm-shared-quectel.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/quectel/mm-shared-quectel.c b/plugins/quectel/mm-shared-quectel.c index 1b8fe6f5..c485f6f5 100644 --- a/plugins/quectel/mm-shared-quectel.c +++ b/plugins/quectel/mm-shared-quectel.c @@ -293,9 +293,9 @@ parent_load_capabilities_ready (MMIfaceModemLocation *self, /* Probe QGPS support */ g_assert (priv->qgps_supported == FEATURE_SUPPORT_UNKNOWN); mm_base_modem_at_command (MM_BASE_MODEM (self), - "+QGPS?", + "+QGPS=?", 3, - FALSE, /* not cached */ + TRUE, /* cached */ (GAsyncReadyCallback)probe_qgps_ready, task); } |