[PATCH 5/5] doc: Document the new DialMemory method of the voicecallmanager-api

2018-02-12 Thread philippedeswert
From: Philippe De Swert The new DialMemory method call needs to be documented so it is clear how to use it. --- doc/voicecallmanager-api.txt | 11 +++ 1 file changed, 11 insertions(+) diff --git a/doc/voicecallmanager-api.txt b/doc/voicecallmanager-api.txt

[PATCH 2/5] voicecall: Add support for dialing number at a given memory location

2018-02-12 Thread philippedeswert
From: Philippe De Swert Add a new function to be able to dial numbers from memory/favourites. --- include/voicecall.h | 4 1 file changed, 4 insertions(+) diff --git a/include/voicecall.h b/include/voicecall.h index 6871a6b5..5b3da6a6 100644 ---

[PATCH 4/5] hfpmodem: Add memory dialling support

2018-02-12 Thread philippedeswert
From: Philippe De Swert Handle the request to dial from a memory index and send the correct ATD> sequence to make it happen. --- drivers/hfpmodem/voicecall.c | 25 + 1 file changed, 25 insertions(+) diff --git a/drivers/hfpmodem/voicecall.c

[PATCH 1/5] voicecall: Rename callbacks/functions related to dialing the last called number

2018-02-12 Thread philippedeswert
From: Philippe De Swert Calling from memory index is very similar in functionality to dialing the last called number. So we rename the functions so we can reuse them, to deal with memory index calling. Function names now also reflect this is for hfp. ---

[PATCH 0/5] Add Bluetooth HFP memory index dialing V3

2018-02-12 Thread philippedeswert
From: Philippe De Swert Hi, Finally got some time to redo the patches from last time after all the comments. So I renamed the functions to reflect clearly what they are for and avoid functionality duplication, used an unsigned int as suggested for the memory index,

[PATCH 3/5] voicecall: Add functionality to manager to dial from a memory location.

2018-02-12 Thread philippedeswert
From: Philippe De Swert Implement functionality to allow to dial favourites/quick contacts over bluetooth. --- src/voicecall.c | 60 +++-- 1 file changed, 54 insertions(+), 6 deletions(-) diff --git