diff options
author | David Timber <dxdt@dev.snart.me> | 2025-05-31 16:27:28 +0900 |
---|---|---|
committer | David Timber <dxdt@dev.snart.me> | 2025-05-31 16:27:28 +0900 |
commit | b6a201e42af5e77bdd22cfa92234540e135e0b7a (patch) | |
tree | 7180118b2c21cd017566ba0dd804bc1808c63b78 | |
parent | 1d20711b334c991765cf36adda375b3416d835ef (diff) |
Fix SIM7600 audio channel set up issues ...sim7600
Increase timing magic values
-rw-r--r-- | src/plugins/simtech/mm-shared-simtech.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/simtech/mm-shared-simtech.c b/src/plugins/simtech/mm-shared-simtech.c index 6a42403c..28990256 100644 --- a/src/plugins/simtech/mm-shared-simtech.c +++ b/src/plugins/simtech/mm-shared-simtech.c @@ -1145,7 +1145,7 @@ common_setup_cleanup_in_call_audio_channel (MMSharedSimtech *self, } /* Some models (like SIM7600) need to wait a bit before they can accept +CPCMREG */ - g_timeout_add (100, (GSourceFunc)call_audio_channel_set, task); + g_timeout_add (500, (GSourceFunc)call_audio_channel_set, task); } void @@ -1272,7 +1272,7 @@ clcc_format_check_ready (MMBroadbandModem *self, mm_base_modem_at_command (MM_BASE_MODEM (self), "+CPCMREG=?", - 3, + 5, TRUE, (GAsyncReadyCallback) cpcmreg_format_check_ready, task); |