hfp_ag: drop unused number parameter from hfp_ag_outgoing_call_initiated

This commit is contained in:
Matthias Ringwald 2022-05-11 14:17:56 +02:00
parent 131d4778cb
commit 0f1da53350
3 changed files with 4 additions and 3 deletions

View File

@ -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

View File

@ -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);
}

View File

@ -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.