From 58aa4fbd91ca721994b6efe176ea94ccaee324ca Mon Sep 17 00:00:00 2001 From: saman Date: Wed, 16 Dec 2020 14:21:03 +0330 Subject: Adding new verb as send_tones When talking is in progress and someone is talking with the operator, for connecting to special part, the operator says that press 1 or somthings like that. for supporting this property in device side and send that command through the bluetooth, we should use SendTones method on VoiceCallManager interface. Bug-AGL: SPEC-3026 Signed-off-by: saman Change-Id: I875816c1eaca6621d4be9ab5297321ff52571ec5 --- binding/gdbus/ofono_voicecallmanager.c | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'binding/gdbus/ofono_voicecallmanager.c') diff --git a/binding/gdbus/ofono_voicecallmanager.c b/binding/gdbus/ofono_voicecallmanager.c index 462ce08..7e8f407 100644 --- a/binding/gdbus/ofono_voicecallmanager.c +++ b/binding/gdbus/ofono_voicecallmanager.c @@ -163,6 +163,18 @@ int ofono_voicecallmanager_last_dial(OrgOfonoVoiceCallManager *manager) return -1; } +int ofono_voicecallmanager_send_tones(OrgOfonoVoiceCallManager *manager, const gchar *number) +{ + if (!manager) { + AFB_ERROR("Ofono VoiceCallmanager uninitialized\n"); + return -1; + } + + if (org_ofono_voice_call_manager_call_send_tones_sync(manager, number, NULL, NULL)) + return 0; + return -1; +} + void ofono_voicecallmanager_hangup_all(OrgOfonoVoiceCallManager *manager) { GError *error = NULL; -- cgit 1.2.3-korg