mirror of
https://github.com/bluekitchen/btstack.git
synced 2025-01-28 00:35:42 +00:00
hfp_ag: drop unused number parameter from hfp_ag_outgoing_call_initiated
This commit is contained in:
parent
131d4778cb
commit
0f1da53350
@ -21,8 +21,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
|
||||
### Changed
|
||||
- A2DP: new a2dp.c contains shared code of Sink and Source roles
|
||||
- A2DP Sink: automatically configure stream endpoint for outgoing connections
|
||||
- HFP AG: drop unused number parameter from hfp_ag_outgoing_call_initiated
|
||||
- SM: pairing events indicate if LE Secure Connection will be used
|
||||
|
||||
|
||||
## Release v1.5.2
|
||||
|
||||
### Added
|
||||
|
@ -2743,8 +2743,7 @@ void hfp_ag_incoming_call(void){
|
||||
hfp_ag_call_sm(HFP_AG_INCOMING_CALL, NULL);
|
||||
}
|
||||
|
||||
void hfp_ag_outgoing_call_initiated(const char * number) {
|
||||
UNUSED(number);
|
||||
void hfp_ag_outgoing_call_initiated(void) {
|
||||
hfp_ag_call_sm(HFP_AG_OUTGOING_CALL_INITIATED_BY_AG, NULL);
|
||||
}
|
||||
|
||||
|
@ -366,7 +366,7 @@ void hfp_ag_incoming_call(void);
|
||||
/**
|
||||
* @brief Outgoing call initiated
|
||||
*/
|
||||
void hfp_ag_outgoing_call_initiated(const char * number);
|
||||
void hfp_ag_outgoing_call_initiated(void);
|
||||
|
||||
/**
|
||||
* @brief Pass the reject outgoing call event to the AG.
|
||||
|
Loading…
x
Reference in New Issue
Block a user