xref: /btstack/src/classic/hfp.c (revision 125560b8499b9a6889af2b4e01403de5e5bc2c32)
13deb3ec6SMatthias Ringwald /*
23deb3ec6SMatthias Ringwald  * Copyright (C) 2014 BlueKitchen GmbH
33deb3ec6SMatthias Ringwald  *
43deb3ec6SMatthias Ringwald  * Redistribution and use in source and binary forms, with or without
53deb3ec6SMatthias Ringwald  * modification, are permitted provided that the following conditions
63deb3ec6SMatthias Ringwald  * are met:
73deb3ec6SMatthias Ringwald  *
83deb3ec6SMatthias Ringwald  * 1. Redistributions of source code must retain the above copyright
93deb3ec6SMatthias Ringwald  *    notice, this list of conditions and the following disclaimer.
103deb3ec6SMatthias Ringwald  * 2. Redistributions in binary form must reproduce the above copyright
113deb3ec6SMatthias Ringwald  *    notice, this list of conditions and the following disclaimer in the
123deb3ec6SMatthias Ringwald  *    documentation and/or other materials provided with the distribution.
133deb3ec6SMatthias Ringwald  * 3. Neither the name of the copyright holders nor the names of
143deb3ec6SMatthias Ringwald  *    contributors may be used to endorse or promote products derived
153deb3ec6SMatthias Ringwald  *    from this software without specific prior written permission.
163deb3ec6SMatthias Ringwald  * 4. Any redistribution, use, or modification is done solely for
173deb3ec6SMatthias Ringwald  *    personal benefit and not for any commercial purpose or for
183deb3ec6SMatthias Ringwald  *    monetary gain.
193deb3ec6SMatthias Ringwald  *
203deb3ec6SMatthias Ringwald  * THIS SOFTWARE IS PROVIDED BY BLUEKITCHEN GMBH AND CONTRIBUTORS
213deb3ec6SMatthias Ringwald  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
223deb3ec6SMatthias Ringwald  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
232fca4dadSMilanka Ringwald  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BLUEKITCHEN
242fca4dadSMilanka Ringwald  * GMBH OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
253deb3ec6SMatthias Ringwald  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
263deb3ec6SMatthias Ringwald  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
273deb3ec6SMatthias Ringwald  * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
283deb3ec6SMatthias Ringwald  * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
293deb3ec6SMatthias Ringwald  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
303deb3ec6SMatthias Ringwald  * THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
313deb3ec6SMatthias Ringwald  * SUCH DAMAGE.
323deb3ec6SMatthias Ringwald  *
333deb3ec6SMatthias Ringwald  * Please inquire about commercial licensing options at
343deb3ec6SMatthias Ringwald  * [email protected]
353deb3ec6SMatthias Ringwald  *
363deb3ec6SMatthias Ringwald  */
37ab2c6ae4SMatthias Ringwald 
38e501bae0SMatthias Ringwald #define BTSTACK_FILE__ "hfp.c"
393deb3ec6SMatthias Ringwald 
403deb3ec6SMatthias Ringwald 
417907f069SMatthias Ringwald #include "btstack_config.h"
423deb3ec6SMatthias Ringwald 
433deb3ec6SMatthias Ringwald #include <stdint.h>
443cfa4086SMatthias Ringwald #include <stdio.h>
453deb3ec6SMatthias Ringwald #include <string.h>
463deb3ec6SMatthias Ringwald #include <inttypes.h>
473deb3ec6SMatthias Ringwald 
48235946f1SMatthias Ringwald #include "bluetooth_sdp.h"
49023f2764SMatthias Ringwald #include "btstack_debug.h"
5059c6af15SMatthias Ringwald #include "btstack_event.h"
5159c6af15SMatthias Ringwald #include "btstack_memory.h"
5259c6af15SMatthias Ringwald #include "btstack_run_loop.h"
53efda0b48SMatthias Ringwald #include "classic/sdp_client_rfcomm.h"
54746ccb7eSMatthias Ringwald #include "classic/sdp_server.h"
55023f2764SMatthias Ringwald #include "classic/sdp_util.h"
561d9c9c90SMilanka Ringwald #include "classic/sdp_client.h"
5759c6af15SMatthias Ringwald #include "hci.h"
5859c6af15SMatthias Ringwald #include "hci_cmd.h"
5959c6af15SMatthias Ringwald #include "hci_dump.h"
603deb3ec6SMatthias Ringwald 
613721a235SMatthias Ringwald #if defined(ENABLE_CC256X_ASSISTED_HFP) && !defined(ENABLE_SCO_OVER_PCM)
623721a235SMatthias Ringwald #error "Assisted HFP is only possible over PCM/I2S. Please add define: ENABLE_SCO_OVER_PCM"
633721a235SMatthias Ringwald #endif
643721a235SMatthias Ringwald 
65689d4323SMatthias Ringwald #if defined(ENABLE_BCM_PCM_WBS) && !defined(ENABLE_SCO_OVER_PCM)
66689d4323SMatthias Ringwald #error "WBS for PCM is only possible over PCM/I2S. Please add define: ENABLE_SCO_OVER_PCM"
67689d4323SMatthias Ringwald #endif
68689d4323SMatthias Ringwald 
693deb3ec6SMatthias Ringwald #define HFP_HF_FEATURES_SIZE 10
703deb3ec6SMatthias Ringwald #define HFP_AG_FEATURES_SIZE 12
713deb3ec6SMatthias Ringwald 
7220b2edb6SMatthias Ringwald typedef struct {
7320b2edb6SMatthias Ringwald     hfp_role_t local_role;
7420b2edb6SMatthias Ringwald     bd_addr_t  remote_address;
7520b2edb6SMatthias Ringwald } hfp_sdp_query_context_t;
7620b2edb6SMatthias Ringwald 
7720b2edb6SMatthias Ringwald // globals
7820b2edb6SMatthias Ringwald 
7920b2edb6SMatthias Ringwald static btstack_linked_list_t hfp_connections ;
8020b2edb6SMatthias Ringwald 
8120b2edb6SMatthias Ringwald static btstack_packet_handler_t hfp_hf_callback;
8220b2edb6SMatthias Ringwald static btstack_packet_handler_t hfp_ag_callback;
8320b2edb6SMatthias Ringwald 
8420b2edb6SMatthias Ringwald static btstack_packet_handler_t hfp_hf_rfcomm_packet_handler;
8520b2edb6SMatthias Ringwald static btstack_packet_handler_t hfp_ag_rfcomm_packet_handler;
8620b2edb6SMatthias Ringwald 
8720b2edb6SMatthias Ringwald static uint16_t hfp_allowed_sco_packet_types;
88aeb0f0feSMatthias Ringwald static hfp_connection_t * hfp_sco_establishment_active;
89aeb0f0feSMatthias Ringwald 
90aeb0f0feSMatthias Ringwald static hfp_sdp_query_context_t                 hfp_sdp_query_context;
91aeb0f0feSMatthias Ringwald static btstack_context_callback_registration_t hfp_sdp_query_request;
92aeb0f0feSMatthias Ringwald 
93aeb0f0feSMatthias Ringwald 
94aeb0f0feSMatthias Ringwald 
95aeb0f0feSMatthias Ringwald 
96aeb0f0feSMatthias Ringwald 
9720b2edb6SMatthias Ringwald 
9820b2edb6SMatthias Ringwald // prototypes
9920b2edb6SMatthias Ringwald static hfp_link_settings_t hfp_next_link_setting_for_connection(hfp_link_settings_t current_setting, hfp_connection_t * hfp_connection, uint8_t eSCO_S4_supported);
10020b2edb6SMatthias Ringwald static void parse_sequence(hfp_connection_t * context);
10120b2edb6SMatthias Ringwald 
1023deb3ec6SMatthias Ringwald static const char * hfp_hf_features[] = {
1033deb3ec6SMatthias Ringwald         "EC and/or NR function",
1043deb3ec6SMatthias Ringwald         "Three-way calling",
1053deb3ec6SMatthias Ringwald         "CLI presentation capability",
1063deb3ec6SMatthias Ringwald         "Voice recognition activation",
1073deb3ec6SMatthias Ringwald         "Remote volume control",
1083deb3ec6SMatthias Ringwald 
1093deb3ec6SMatthias Ringwald         "Enhanced call status",
1103deb3ec6SMatthias Ringwald         "Enhanced call control",
1113deb3ec6SMatthias Ringwald 
1123deb3ec6SMatthias Ringwald         "Codec negotiation",
1133deb3ec6SMatthias Ringwald 
1143deb3ec6SMatthias Ringwald         "HF Indicators",
1153deb3ec6SMatthias Ringwald         "eSCO S4 (and T2) Settings Supported",
1163deb3ec6SMatthias Ringwald         "Reserved for future definition"
1173deb3ec6SMatthias Ringwald };
1183deb3ec6SMatthias Ringwald 
1193deb3ec6SMatthias Ringwald static const char * hfp_ag_features[] = {
1203deb3ec6SMatthias Ringwald         "Three-way calling",
1213deb3ec6SMatthias Ringwald         "EC and/or NR function",
1223deb3ec6SMatthias Ringwald         "Voice recognition function",
1233deb3ec6SMatthias Ringwald         "In-band ring tone capability",
1243deb3ec6SMatthias Ringwald         "Attach a number to a voice tag",
1253deb3ec6SMatthias Ringwald         "Ability to reject a call",
1263deb3ec6SMatthias Ringwald         "Enhanced call status",
1273deb3ec6SMatthias Ringwald         "Enhanced call control",
1283deb3ec6SMatthias Ringwald         "Extended Error Result Codes",
1293deb3ec6SMatthias Ringwald         "Codec negotiation",
1303deb3ec6SMatthias Ringwald         "HF Indicators",
1313deb3ec6SMatthias Ringwald         "eSCO S4 (and T2) Settings Supported",
1323deb3ec6SMatthias Ringwald         "Reserved for future definition"
1333deb3ec6SMatthias Ringwald };
1343deb3ec6SMatthias Ringwald 
1350aee97efSMilanka Ringwald static const char * hfp_enhanced_call_dir[] = {
1360aee97efSMilanka Ringwald         "outgoing",
1370aee97efSMilanka Ringwald         "incoming"
1380aee97efSMilanka Ringwald };
1390aee97efSMilanka Ringwald 
1400aee97efSMilanka Ringwald static const char * hfp_enhanced_call_status[] = {
1410aee97efSMilanka Ringwald         "active",
1420aee97efSMilanka Ringwald         "held",
1430aee97efSMilanka Ringwald         "outgoing dialing",
1440aee97efSMilanka Ringwald         "outgoing alerting",
1450aee97efSMilanka Ringwald         "incoming",
1460aee97efSMilanka Ringwald         "incoming waiting",
1470aee97efSMilanka Ringwald         "call held by response and hold"
1480aee97efSMilanka Ringwald };
1490aee97efSMilanka Ringwald 
1500aee97efSMilanka Ringwald static const char * hfp_enhanced_call_mode[] = {
1510aee97efSMilanka Ringwald         "voice",
1520aee97efSMilanka Ringwald         "data",
1530aee97efSMilanka Ringwald         "fax"
1540aee97efSMilanka Ringwald };
1550aee97efSMilanka Ringwald 
1560aee97efSMilanka Ringwald static const char * hfp_enhanced_call_mpty[] = {
1570aee97efSMilanka Ringwald         "not a conference call",
1580aee97efSMilanka Ringwald         "conference call"
1590aee97efSMilanka Ringwald };
1600aee97efSMilanka Ringwald 
1610aee97efSMilanka Ringwald const char * hfp_enhanced_call_dir2str(uint16_t index){
1620aee97efSMilanka Ringwald     if (index <= HFP_ENHANCED_CALL_DIR_INCOMING) return hfp_enhanced_call_dir[index];
1630aee97efSMilanka Ringwald     return "not defined";
1640aee97efSMilanka Ringwald }
1650aee97efSMilanka Ringwald 
1660aee97efSMilanka Ringwald const char * hfp_enhanced_call_status2str(uint16_t index){
1670aee97efSMilanka Ringwald     if (index <= HFP_ENHANCED_CALL_STATUS_CALL_HELD_BY_RESPONSE_AND_HOLD) return hfp_enhanced_call_status[index];
1680aee97efSMilanka Ringwald     return "not defined";
1690aee97efSMilanka Ringwald }
1700aee97efSMilanka Ringwald 
1710aee97efSMilanka Ringwald const char * hfp_enhanced_call_mode2str(uint16_t index){
1720aee97efSMilanka Ringwald     if (index <= HFP_ENHANCED_CALL_MODE_FAX) return hfp_enhanced_call_mode[index];
1730aee97efSMilanka Ringwald     return "not defined";
1740aee97efSMilanka Ringwald }
1750aee97efSMilanka Ringwald 
1760aee97efSMilanka Ringwald const char * hfp_enhanced_call_mpty2str(uint16_t index){
1770aee97efSMilanka Ringwald     if (index <= HFP_ENHANCED_CALL_MPTY_CONFERENCE_CALL) return hfp_enhanced_call_mpty[index];
1780aee97efSMilanka Ringwald     return "not defined";
1790aee97efSMilanka Ringwald }
1800aee97efSMilanka Ringwald 
18125789943SMilanka Ringwald static uint16_t hfp_parse_indicator_index(hfp_connection_t * hfp_connection){
18225789943SMilanka Ringwald     uint16_t index = btstack_atoi((char *)&hfp_connection->line_buffer[0]);
18325789943SMilanka Ringwald 
18425789943SMilanka Ringwald     if (index > HFP_MAX_NUM_INDICATORS){
18525789943SMilanka Ringwald         log_info("ignoring invalid indicator index bigger then HFP_MAX_NUM_INDICATORS");
18625789943SMilanka Ringwald         return HFP_MAX_NUM_INDICATORS - 1;
18725789943SMilanka Ringwald     }
18825789943SMilanka Ringwald 
18925789943SMilanka Ringwald     // indicator index enumeration starts with 1, we substract 1 to store in array with starting index 0
19025789943SMilanka Ringwald     if (index > 0){
19125789943SMilanka Ringwald         index -= 1;
19225789943SMilanka Ringwald     } else {
19325789943SMilanka Ringwald         log_info("ignoring invalid indicator index 0");
19425789943SMilanka Ringwald         return 0;
19525789943SMilanka Ringwald     }
19625789943SMilanka Ringwald     return index;
19725789943SMilanka Ringwald }
19825789943SMilanka Ringwald 
19925789943SMilanka Ringwald static void hfp_next_indicators_index(hfp_connection_t * hfp_connection){
20025789943SMilanka Ringwald     if (hfp_connection->parser_item_index < HFP_MAX_NUM_INDICATORS - 1){
20125789943SMilanka Ringwald         hfp_connection->parser_item_index++;
20225789943SMilanka Ringwald     } else {
20325789943SMilanka Ringwald         log_info("Ignoring additional indicator");
20425789943SMilanka Ringwald     }
20525789943SMilanka Ringwald }
20625789943SMilanka Ringwald 
20725789943SMilanka Ringwald static void hfp_next_codec_index(hfp_connection_t * hfp_connection){
20825789943SMilanka Ringwald     if (hfp_connection->parser_item_index < HFP_MAX_NUM_CODECS - 1){
20925789943SMilanka Ringwald         hfp_connection->parser_item_index++;
21025789943SMilanka Ringwald     } else {
21125789943SMilanka Ringwald         log_info("Ignoring additional codec index");
21225789943SMilanka Ringwald     }
21325789943SMilanka Ringwald }
21425789943SMilanka Ringwald 
215eed67a37SMilanka Ringwald static void hfp_next_remote_call_services_index(hfp_connection_t * hfp_connection){
216eed67a37SMilanka Ringwald     if (hfp_connection->remote_call_services_index < HFP_MAX_NUM_CALL_SERVICES - 1){
217eed67a37SMilanka Ringwald         hfp_connection->remote_call_services_index++;
218eed67a37SMilanka Ringwald     } else {
219eed67a37SMilanka Ringwald         log_info("Ignoring additional remote_call_services");
220eed67a37SMilanka Ringwald     }
221eed67a37SMilanka Ringwald }
22225789943SMilanka Ringwald 
2233deb3ec6SMatthias Ringwald const char * hfp_hf_feature(int index){
2243deb3ec6SMatthias Ringwald     if (index > HFP_HF_FEATURES_SIZE){
2253deb3ec6SMatthias Ringwald         return hfp_hf_features[HFP_HF_FEATURES_SIZE];
2263deb3ec6SMatthias Ringwald     }
2273deb3ec6SMatthias Ringwald     return hfp_hf_features[index];
2283deb3ec6SMatthias Ringwald }
2293deb3ec6SMatthias Ringwald 
2303deb3ec6SMatthias Ringwald const char * hfp_ag_feature(int index){
2313deb3ec6SMatthias Ringwald     if (index > HFP_AG_FEATURES_SIZE){
2323deb3ec6SMatthias Ringwald         return hfp_ag_features[HFP_AG_FEATURES_SIZE];
2333deb3ec6SMatthias Ringwald     }
2343deb3ec6SMatthias Ringwald     return hfp_ag_features[index];
2353deb3ec6SMatthias Ringwald }
2363deb3ec6SMatthias Ringwald 
2373deb3ec6SMatthias Ringwald int send_str_over_rfcomm(uint16_t cid, char * command){
2383deb3ec6SMatthias Ringwald     if (!rfcomm_can_send_packet_now(cid)) return 1;
23974386ee0SMatthias Ringwald     log_info("HFP_TX %s", command);
24028190c0bSMatthias Ringwald     int err = rfcomm_send(cid, (uint8_t*) command, strlen(command));
2413deb3ec6SMatthias Ringwald     if (err){
24228190c0bSMatthias Ringwald         log_error("rfcomm_send -> error 0x%02x \n", err);
2433deb3ec6SMatthias Ringwald     }
244e43d1938SMatthias Ringwald #ifdef ENABLE_HFP_AT_MESSAGES
245e43d1938SMatthias Ringwald     hfp_connection_t * hfp_connection = get_hfp_connection_context_for_rfcomm_cid(cid);
246e43d1938SMatthias Ringwald     hfp_emit_string_event(hfp_connection, HFP_SUBEVENT_AT_MESSAGE_SENT, command);
247e43d1938SMatthias Ringwald #endif
2483deb3ec6SMatthias Ringwald     return 1;
2493deb3ec6SMatthias Ringwald }
2503deb3ec6SMatthias Ringwald 
2516a7f44bdSMilanka Ringwald int hfp_supports_codec(uint8_t codec, int codecs_nr, uint8_t * codecs){
252e8d1dc0dSMatthias Ringwald 
253e8d1dc0dSMatthias Ringwald     // mSBC requires support for eSCO connections
254c1ab6cc1SMatthias Ringwald     if ((codec == HFP_CODEC_MSBC) && !hci_extended_sco_link_supported()) return 0;
255e8d1dc0dSMatthias Ringwald 
256df327ff3SMilanka Ringwald     int i;
257df327ff3SMilanka Ringwald     for (i = 0; i < codecs_nr; i++){
258e8d1dc0dSMatthias Ringwald         if (codecs[i] != codec) continue;
259e8d1dc0dSMatthias Ringwald         return 1;
260df327ff3SMilanka Ringwald     }
261df327ff3SMilanka Ringwald     return 0;
262df327ff3SMilanka Ringwald }
263df327ff3SMilanka Ringwald 
264d715cf51SMatthias Ringwald void hfp_hf_drop_mSBC_if_eSCO_not_supported(uint8_t * codecs, uint8_t * codecs_nr){
265d715cf51SMatthias Ringwald     if (hci_extended_sco_link_supported()) return;
266d715cf51SMatthias Ringwald     uint8_t tmp_codecs[HFP_MAX_NUM_CODECS];
267d715cf51SMatthias Ringwald     int i;
268d715cf51SMatthias Ringwald     int tmp_codec_nr = 0;
269d715cf51SMatthias Ringwald     for (i=0; i < *codecs_nr; i++){
270d715cf51SMatthias Ringwald         if (codecs[i] == HFP_CODEC_MSBC) continue;
271d715cf51SMatthias Ringwald         tmp_codecs[tmp_codec_nr++] = codecs[i];
272d715cf51SMatthias Ringwald     }
273d715cf51SMatthias Ringwald     *codecs_nr = tmp_codec_nr;
2746535961aSMatthias Ringwald     (void)memcpy(codecs, tmp_codecs, tmp_codec_nr);
275d715cf51SMatthias Ringwald }
276d715cf51SMatthias Ringwald 
2773deb3ec6SMatthias Ringwald // UTILS
2783deb3ec6SMatthias Ringwald int get_bit(uint16_t bitmap, int position){
2793deb3ec6SMatthias Ringwald     return (bitmap >> position) & 1;
2803deb3ec6SMatthias Ringwald }
2813deb3ec6SMatthias Ringwald 
2823deb3ec6SMatthias Ringwald int store_bit(uint32_t bitmap, int position, uint8_t value){
2833deb3ec6SMatthias Ringwald     if (value){
2843deb3ec6SMatthias Ringwald         bitmap |= 1 << position;
2853deb3ec6SMatthias Ringwald     } else {
2863deb3ec6SMatthias Ringwald         bitmap &= ~ (1 << position);
2873deb3ec6SMatthias Ringwald     }
2883deb3ec6SMatthias Ringwald     return bitmap;
2893deb3ec6SMatthias Ringwald }
2903deb3ec6SMatthias Ringwald 
2913deb3ec6SMatthias Ringwald int join(char * buffer, int buffer_size, uint8_t * values, int values_nr){
292c1ab6cc1SMatthias Ringwald     if (buffer_size < (values_nr * 3)) return 0;
2933deb3ec6SMatthias Ringwald     int i;
2943deb3ec6SMatthias Ringwald     int offset = 0;
295c1ab6cc1SMatthias Ringwald     for (i = 0; i < (values_nr-1); i++) {
2963deb3ec6SMatthias Ringwald       offset += snprintf(buffer+offset, buffer_size-offset, "%d,", values[i]); // puts string into buffer
2973deb3ec6SMatthias Ringwald     }
2983deb3ec6SMatthias Ringwald     if (i<values_nr){
2993deb3ec6SMatthias Ringwald         offset += snprintf(buffer+offset, buffer_size-offset, "%d", values[i]);
3003deb3ec6SMatthias Ringwald     }
3013deb3ec6SMatthias Ringwald     return offset;
3023deb3ec6SMatthias Ringwald }
3033deb3ec6SMatthias Ringwald 
3043deb3ec6SMatthias Ringwald int join_bitmap(char * buffer, int buffer_size, uint32_t values, int values_nr){
305c1ab6cc1SMatthias Ringwald     if (buffer_size < (values_nr * 3)) return 0;
3063deb3ec6SMatthias Ringwald 
3073deb3ec6SMatthias Ringwald     int i;
3083deb3ec6SMatthias Ringwald     int offset = 0;
309c1ab6cc1SMatthias Ringwald     for (i = 0; i < (values_nr-1); i++) {
3103deb3ec6SMatthias Ringwald       offset += snprintf(buffer+offset, buffer_size-offset, "%d,", get_bit(values,i)); // puts string into buffer
3113deb3ec6SMatthias Ringwald     }
3123deb3ec6SMatthias Ringwald 
3133deb3ec6SMatthias Ringwald     if (i<values_nr){
3143deb3ec6SMatthias Ringwald         offset += snprintf(buffer+offset, buffer_size-offset, "%d", get_bit(values,i));
3153deb3ec6SMatthias Ringwald     }
3163deb3ec6SMatthias Ringwald     return offset;
3173deb3ec6SMatthias Ringwald }
318293fae36SMatthias Ringwald static void hfp_emit_event_for_role(hfp_role_t local_role, uint8_t * packet, uint16_t size){
319293fae36SMatthias Ringwald     switch (local_role){
320293fae36SMatthias Ringwald         case HFP_ROLE_HF:
321293fae36SMatthias Ringwald             (*hfp_hf_callback)(HCI_EVENT_PACKET, 0, packet, size);
322293fae36SMatthias Ringwald             break;
323293fae36SMatthias Ringwald         case HFP_ROLE_AG:
324293fae36SMatthias Ringwald             (*hfp_ag_callback)(HCI_EVENT_PACKET, 0, packet, size);
325293fae36SMatthias Ringwald             break;
326293fae36SMatthias Ringwald         default:
327293fae36SMatthias Ringwald             btstack_unreachable();
328293fae36SMatthias Ringwald             break;
329293fae36SMatthias Ringwald     }
330293fae36SMatthias Ringwald }
3313deb3ec6SMatthias Ringwald 
332ca59be51SMatthias Ringwald static void hfp_emit_event_for_context(hfp_connection_t * hfp_connection, uint8_t * packet, uint16_t size){
333ca59be51SMatthias Ringwald     if (!hfp_connection) return;
334293fae36SMatthias Ringwald     hfp_emit_event_for_role(hfp_connection->local_role, packet, size);
335ca59be51SMatthias Ringwald }
336ca59be51SMatthias Ringwald 
337ca59be51SMatthias Ringwald void hfp_emit_simple_event(hfp_connection_t * hfp_connection, uint8_t event_subtype){
3387d81706fSMatthias Ringwald     hci_con_handle_t acl_handle = (hfp_connection != NULL) ? hfp_connection->acl_handle : HCI_CON_HANDLE_INVALID;
339d703d377SMatthias Ringwald     uint8_t event[5];
340a0ffb263SMatthias Ringwald     event[0] = HCI_EVENT_HFP_META;
341a0ffb263SMatthias Ringwald     event[1] = sizeof(event) - 2;
342a0ffb263SMatthias Ringwald     event[2] = event_subtype;
3437d81706fSMatthias Ringwald     little_endian_store_16(event, 3, acl_handle);
344ca59be51SMatthias Ringwald     hfp_emit_event_for_context(hfp_connection, event, sizeof(event));
345a0ffb263SMatthias Ringwald }
346a0ffb263SMatthias Ringwald 
347ca59be51SMatthias Ringwald void hfp_emit_event(hfp_connection_t * hfp_connection, uint8_t event_subtype, uint8_t value){
3487d81706fSMatthias Ringwald     hci_con_handle_t acl_handle = (hfp_connection != NULL) ? hfp_connection->acl_handle : HCI_CON_HANDLE_INVALID;
349d703d377SMatthias Ringwald     uint8_t event[6];
3503deb3ec6SMatthias Ringwald     event[0] = HCI_EVENT_HFP_META;
3513deb3ec6SMatthias Ringwald     event[1] = sizeof(event) - 2;
3523deb3ec6SMatthias Ringwald     event[2] = event_subtype;
3537d81706fSMatthias Ringwald     little_endian_store_16(event, 3, acl_handle);
354d703d377SMatthias Ringwald     event[5] = value; // status 0 == OK
355ca59be51SMatthias Ringwald     hfp_emit_event_for_context(hfp_connection, event, sizeof(event));
3563deb3ec6SMatthias Ringwald }
3573deb3ec6SMatthias Ringwald 
358553a4a56SMilanka Ringwald void hfp_emit_voice_recognition_enabled(hfp_connection_t * hfp_connection, uint8_t status){
359553a4a56SMilanka Ringwald     btstack_assert(hfp_connection != NULL);
360553a4a56SMilanka Ringwald 
361a95ec82fSMilanka Ringwald     uint8_t event[7];
362a95ec82fSMilanka Ringwald     event[0] = HCI_EVENT_HFP_META;
363a95ec82fSMilanka Ringwald     event[1] = sizeof(event) - 2;
364a9e632e9SMilanka Ringwald     event[2] = HFP_SUBEVENT_VOICE_RECOGNITION_ACTIVATED;
365de9e0ea7SMilanka Ringwald 
366553a4a56SMilanka Ringwald     little_endian_store_16(event, 3, hfp_connection->acl_handle);
367a95ec82fSMilanka Ringwald     event[5] = status; // 0:success
368553a4a56SMilanka Ringwald     event[6] = hfp_connection->enhanced_voice_recognition_enabled ? 1 : 0;
369553a4a56SMilanka Ringwald     hfp_emit_event_for_context(hfp_connection, event, sizeof(event));
3701a26de69SMilanka Ringwald }
371553a4a56SMilanka Ringwald 
372553a4a56SMilanka Ringwald void hfp_emit_voice_recognition_disabled(hfp_connection_t * hfp_connection, uint8_t status){
373553a4a56SMilanka Ringwald     btstack_assert(hfp_connection != NULL);
374553a4a56SMilanka Ringwald 
375553a4a56SMilanka Ringwald     uint8_t event[6];
376553a4a56SMilanka Ringwald     event[0] = HCI_EVENT_HFP_META;
377553a4a56SMilanka Ringwald     event[1] = sizeof(event) - 2;
378a9e632e9SMilanka Ringwald     event[2] = HFP_SUBEVENT_VOICE_RECOGNITION_DEACTIVATED;
379553a4a56SMilanka Ringwald 
380553a4a56SMilanka Ringwald     little_endian_store_16(event, 3, hfp_connection->acl_handle);
381553a4a56SMilanka Ringwald     event[5] = status; // 0:success
382013cc750SMilanka Ringwald     hfp_emit_event_for_context(hfp_connection, event, sizeof(event));
383013cc750SMilanka Ringwald }
384013cc750SMilanka Ringwald 
385de9e0ea7SMilanka Ringwald void hfp_emit_enhanced_voice_recognition_hf_ready_for_audio_event(hfp_connection_t * hfp_connection, uint8_t status){
386de9e0ea7SMilanka Ringwald     hci_con_handle_t acl_handle = (hfp_connection != NULL) ? hfp_connection->acl_handle : HCI_CON_HANDLE_INVALID;
387de9e0ea7SMilanka Ringwald 
388de9e0ea7SMilanka Ringwald     uint8_t event[6];
389de9e0ea7SMilanka Ringwald     event[0] = HCI_EVENT_HFP_META;
390de9e0ea7SMilanka Ringwald     event[1] = sizeof(event) - 2;
391de9e0ea7SMilanka Ringwald     event[2] = HFP_SUBEVENT_ENHANCED_VOICE_RECOGNITION_HF_READY_FOR_AUDIO;
392de9e0ea7SMilanka Ringwald     little_endian_store_16(event, 3, acl_handle);
393de9e0ea7SMilanka Ringwald     event[5] = status;
394de9e0ea7SMilanka Ringwald     hfp_emit_event_for_context(hfp_connection, event, sizeof(event));
395de9e0ea7SMilanka Ringwald }
396de9e0ea7SMilanka Ringwald 
397cf75be85SMilanka Ringwald void hfp_emit_enhanced_voice_recognition_state_event(hfp_connection_t * hfp_connection, uint8_t status){
398cf75be85SMilanka Ringwald     hci_con_handle_t acl_handle = (hfp_connection != NULL) ? hfp_connection->acl_handle : HCI_CON_HANDLE_INVALID;
399cf75be85SMilanka Ringwald 
400cf75be85SMilanka Ringwald     uint8_t event[6];
401cf75be85SMilanka Ringwald     event[0] = HCI_EVENT_HFP_META;
402cf75be85SMilanka Ringwald     event[1] = sizeof(event) - 2;
403cf75be85SMilanka Ringwald     switch (hfp_connection->ag_vra_state){
404cf75be85SMilanka Ringwald         case HFP_VOICE_RECOGNITION_STATE_AG_READY_TO_ACCEPT_AUDIO_INPUT:
405cf75be85SMilanka Ringwald             event[2] = HFP_SUBEVENT_ENHANCED_VOICE_RECOGNITION_AG_READY_TO_ACCEPT_AUDIO_INPUT;
406cf75be85SMilanka Ringwald             break;
407cf75be85SMilanka Ringwald         case HFP_VOICE_RECOGNITION_STATE_AG_IS_STARTING_SOUND:
408cf75be85SMilanka Ringwald             event[2] = HFP_SUBEVENT_ENHANCED_VOICE_RECOGNITION_AG_IS_STARTING_SOUND;
409cf75be85SMilanka Ringwald             break;
410cf75be85SMilanka Ringwald         case HFP_VOICE_RECOGNITION_STATE_AG_IS_PROCESSING_AUDIO_INPUT:
411cf75be85SMilanka Ringwald             event[2] = HFP_SUBEVENT_ENHANCED_VOICE_RECOGNITION_AG_IS_PROCESSING_AUDIO_INPUT;
412cf75be85SMilanka Ringwald             break;
413cf75be85SMilanka Ringwald         default:
414cf75be85SMilanka Ringwald             btstack_unreachable();
415cf75be85SMilanka Ringwald             break;
416cf75be85SMilanka Ringwald     }
417cf75be85SMilanka Ringwald 
418cf75be85SMilanka Ringwald     little_endian_store_16(event, 3, acl_handle);
419cf75be85SMilanka Ringwald     event[5] = status;
420cf75be85SMilanka Ringwald     hfp_emit_event_for_context(hfp_connection, event, sizeof(event));
421cf75be85SMilanka Ringwald }
422cf75be85SMilanka Ringwald 
4237095467fSMatthias Ringwald void hfp_emit_slc_connection_event(hfp_role_t local_role, uint8_t status, hci_con_handle_t con_handle, bd_addr_t addr){
4248901a7c4SMatthias Ringwald     uint8_t event[12];
4256a7f44bdSMilanka Ringwald     int pos = 0;
4266a7f44bdSMilanka Ringwald     event[pos++] = HCI_EVENT_HFP_META;
4276a7f44bdSMilanka Ringwald     event[pos++] = sizeof(event) - 2;
428d0c4aea6SMilanka Ringwald     event[pos++] = HFP_SUBEVENT_SERVICE_LEVEL_CONNECTION_ESTABLISHED;
4296a7f44bdSMilanka Ringwald     little_endian_store_16(event, pos, con_handle);
4306a7f44bdSMilanka Ringwald     pos += 2;
43103870092SMilanka Ringwald     event[pos++] = status; // status 0 == OK
4326a7f44bdSMilanka Ringwald     reverse_bd_addr(addr,&event[pos]);
4336a7f44bdSMilanka Ringwald     pos += 6;
4347095467fSMatthias Ringwald     hfp_emit_event_for_role(local_role, event, sizeof(event));
435a0653c3bSMilanka Ringwald }
436a0653c3bSMilanka Ringwald 
437d703d377SMatthias Ringwald static void hfp_emit_audio_connection_released(hfp_connection_t * hfp_connection, hci_con_handle_t sco_handle){
4387d81706fSMatthias Ringwald     btstack_assert(hfp_connection != NULL);
439d703d377SMatthias Ringwald     uint8_t event[7];
4405441d52fSMatthias Ringwald     int pos = 0;
4415441d52fSMatthias Ringwald     event[pos++] = HCI_EVENT_HFP_META;
4425441d52fSMatthias Ringwald     event[pos++] = sizeof(event) - 2;
4435441d52fSMatthias Ringwald     event[pos++] = HFP_SUBEVENT_AUDIO_CONNECTION_RELEASED;
444d703d377SMatthias Ringwald     little_endian_store_16(event, pos, hfp_connection->acl_handle);
445d703d377SMatthias Ringwald     pos += 2;
446d703d377SMatthias Ringwald     little_endian_store_16(event, pos, sco_handle);
447d703d377SMatthias Ringwald     pos += 2;
4485441d52fSMatthias Ringwald     hfp_emit_event_for_context(hfp_connection, event, sizeof(event));
4495441d52fSMatthias Ringwald }
4505441d52fSMatthias Ringwald 
451d703d377SMatthias Ringwald void hfp_emit_sco_event(hfp_connection_t * hfp_connection, uint8_t status, hci_con_handle_t sco_handle, bd_addr_t addr, uint8_t  negotiated_codec){
4527d81706fSMatthias Ringwald     btstack_assert(hfp_connection != NULL);
453d703d377SMatthias Ringwald     uint8_t event[15];
454d0c4aea6SMilanka Ringwald     int pos = 0;
455d0c4aea6SMilanka Ringwald     event[pos++] = HCI_EVENT_HFP_META;
456d0c4aea6SMilanka Ringwald     event[pos++] = sizeof(event) - 2;
457d0c4aea6SMilanka Ringwald     event[pos++] = HFP_SUBEVENT_AUDIO_CONNECTION_ESTABLISHED;
458d703d377SMatthias Ringwald     little_endian_store_16(event, pos, hfp_connection->acl_handle);
459d703d377SMatthias Ringwald     pos += 2;
460d0c4aea6SMilanka Ringwald     event[pos++] = status; // status 0 == OK
461d703d377SMatthias Ringwald     little_endian_store_16(event, pos, sco_handle);
462d0c4aea6SMilanka Ringwald     pos += 2;
463d0c4aea6SMilanka Ringwald     reverse_bd_addr(addr,&event[pos]);
464d0c4aea6SMilanka Ringwald     pos += 6;
465d0c4aea6SMilanka Ringwald     event[pos++] = negotiated_codec;
466ca59be51SMatthias Ringwald     hfp_emit_event_for_context(hfp_connection, event, sizeof(event));
467d0c4aea6SMilanka Ringwald }
468d0c4aea6SMilanka Ringwald 
469ca59be51SMatthias Ringwald void hfp_emit_string_event(hfp_connection_t * hfp_connection, uint8_t event_subtype, const char * value){
4707d81706fSMatthias Ringwald     btstack_assert(hfp_connection != NULL);
4712c50df93SBjoern Hartmann #ifdef ENABLE_HFP_AT_MESSAGES
4722c50df93SBjoern Hartmann     uint8_t event[256];
4732c50df93SBjoern Hartmann #else
474c1797c7dSMatthias Ringwald     uint8_t event[40];
4752c50df93SBjoern Hartmann #endif
476c10fde09SMatthias Ringwald     uint16_t string_len = btstack_min(strlen(value), sizeof(event) - 6);
477aa4dd815SMatthias Ringwald     event[0] = HCI_EVENT_HFP_META;
478c10fde09SMatthias Ringwald     event[1] = 4 + string_len;
479aa4dd815SMatthias Ringwald     event[2] = event_subtype;
480d703d377SMatthias Ringwald     little_endian_store_16(event, 3, hfp_connection->acl_handle);
481c10fde09SMatthias Ringwald     memcpy((char*)&event[5], value, string_len);
482c10fde09SMatthias Ringwald     event[5 + string_len] = 0;
483c10fde09SMatthias Ringwald     hfp_emit_event_for_context(hfp_connection, event, 6 + string_len);
484aa4dd815SMatthias Ringwald }
485aa4dd815SMatthias Ringwald 
4860cb5b971SMatthias Ringwald btstack_linked_list_t * hfp_get_connections(void){
4878f2a52f4SMatthias Ringwald     return (btstack_linked_list_t *) &hfp_connections;
4883deb3ec6SMatthias Ringwald }
4893deb3ec6SMatthias Ringwald 
4903deb3ec6SMatthias Ringwald hfp_connection_t * get_hfp_connection_context_for_rfcomm_cid(uint16_t cid){
491665d90f2SMatthias Ringwald     btstack_linked_list_iterator_t it;
492665d90f2SMatthias Ringwald     btstack_linked_list_iterator_init(&it, hfp_get_connections());
493665d90f2SMatthias Ringwald     while (btstack_linked_list_iterator_has_next(&it)){
494a0ffb263SMatthias Ringwald         hfp_connection_t * hfp_connection = (hfp_connection_t *)btstack_linked_list_iterator_next(&it);
495a0ffb263SMatthias Ringwald         if (hfp_connection->rfcomm_cid == cid){
496a0ffb263SMatthias Ringwald             return hfp_connection;
4973deb3ec6SMatthias Ringwald         }
4983deb3ec6SMatthias Ringwald     }
4993deb3ec6SMatthias Ringwald     return NULL;
5003deb3ec6SMatthias Ringwald }
5013deb3ec6SMatthias Ringwald 
502405014fbSMatthias Ringwald hfp_connection_t * get_hfp_connection_context_for_bd_addr(bd_addr_t bd_addr, hfp_role_t hfp_role){
503665d90f2SMatthias Ringwald     btstack_linked_list_iterator_t it;
504665d90f2SMatthias Ringwald     btstack_linked_list_iterator_init(&it, hfp_get_connections());
505665d90f2SMatthias Ringwald     while (btstack_linked_list_iterator_has_next(&it)){
506a0ffb263SMatthias Ringwald         hfp_connection_t * hfp_connection = (hfp_connection_t *)btstack_linked_list_iterator_next(&it);
5075df9dc78SMatthias Ringwald         if ((memcmp(hfp_connection->remote_addr, bd_addr, 6) == 0) && (hfp_connection->local_role == hfp_role)) {
508a0ffb263SMatthias Ringwald             return hfp_connection;
5093deb3ec6SMatthias Ringwald         }
5103deb3ec6SMatthias Ringwald     }
5113deb3ec6SMatthias Ringwald     return NULL;
5123deb3ec6SMatthias Ringwald }
5133deb3ec6SMatthias Ringwald 
514405014fbSMatthias Ringwald hfp_connection_t * get_hfp_connection_context_for_sco_handle(uint16_t handle, hfp_role_t hfp_role){
515665d90f2SMatthias Ringwald     btstack_linked_list_iterator_t it;
516665d90f2SMatthias Ringwald     btstack_linked_list_iterator_init(&it, hfp_get_connections());
517665d90f2SMatthias Ringwald     while (btstack_linked_list_iterator_has_next(&it)){
518a0ffb263SMatthias Ringwald         hfp_connection_t * hfp_connection = (hfp_connection_t *)btstack_linked_list_iterator_next(&it);
519c1ab6cc1SMatthias Ringwald         if ((hfp_connection->sco_handle == handle) && (hfp_connection->local_role == hfp_role)){
520a0ffb263SMatthias Ringwald             return hfp_connection;
5213deb3ec6SMatthias Ringwald         }
5223deb3ec6SMatthias Ringwald     }
5233deb3ec6SMatthias Ringwald     return NULL;
5243deb3ec6SMatthias Ringwald }
5253deb3ec6SMatthias Ringwald 
526405014fbSMatthias Ringwald hfp_connection_t * get_hfp_connection_context_for_acl_handle(uint16_t handle, hfp_role_t hfp_role){
527d97d752dSMilanka Ringwald     btstack_linked_list_iterator_t it;
528d97d752dSMilanka Ringwald     btstack_linked_list_iterator_init(&it, hfp_get_connections());
529d97d752dSMilanka Ringwald     while (btstack_linked_list_iterator_has_next(&it)){
530d97d752dSMilanka Ringwald         hfp_connection_t * hfp_connection = (hfp_connection_t *)btstack_linked_list_iterator_next(&it);
531c1ab6cc1SMatthias Ringwald         if ((hfp_connection->acl_handle == handle) && (hfp_connection->local_role == hfp_role)){
532d97d752dSMilanka Ringwald             return hfp_connection;
533d97d752dSMilanka Ringwald         }
534d97d752dSMilanka Ringwald     }
535d97d752dSMilanka Ringwald     return NULL;
536d97d752dSMilanka Ringwald }
537d97d752dSMilanka Ringwald 
538c95b5b3cSMilanka Ringwald 
539c95b5b3cSMilanka Ringwald static void hfp_reset_voice_recognition(hfp_connection_t * hfp_connection){
540c95b5b3cSMilanka Ringwald     btstack_assert(hfp_connection != NULL);
541c95b5b3cSMilanka Ringwald     hfp_voice_recognition_activation_status_t current_vra_state = hfp_connection->vra_state;
542c95b5b3cSMilanka Ringwald     hfp_connection->vra_state = HFP_VRA_VOICE_RECOGNITION_OFF;
543c95b5b3cSMilanka Ringwald 
544c95b5b3cSMilanka Ringwald     if (current_vra_state != HFP_VRA_VOICE_RECOGNITION_OFF){
545553a4a56SMilanka Ringwald         hfp_emit_voice_recognition_disabled(hfp_connection, ERROR_CODE_SUCCESS);
546c95b5b3cSMilanka Ringwald     } else if (hfp_connection->vra_state_requested != HFP_VRA_VOICE_RECOGNITION_OFF){
547553a4a56SMilanka Ringwald         hfp_emit_voice_recognition_disabled(hfp_connection, ERROR_CODE_SUCCESS);
548c95b5b3cSMilanka Ringwald     }
549c95b5b3cSMilanka Ringwald 
550c95b5b3cSMilanka Ringwald     hfp_connection->vra_state_requested = HFP_VRA_VOICE_RECOGNITION_OFF;
551c95b5b3cSMilanka Ringwald     hfp_connection->activate_voice_recognition = false;
552c95b5b3cSMilanka Ringwald     hfp_connection->deactivate_voice_recognition = false;
553c95b5b3cSMilanka Ringwald     hfp_connection->enhanced_voice_recognition_enabled = false;
554c95b5b3cSMilanka Ringwald     hfp_connection->ag_vra_status = 0;
555c95b5b3cSMilanka Ringwald     hfp_connection->ag_vra_state = HFP_VOICE_RECOGNITION_STATE_AG_READY;
556c95b5b3cSMilanka Ringwald }
557c95b5b3cSMilanka Ringwald 
558a0ffb263SMatthias Ringwald void hfp_reset_context_flags(hfp_connection_t * hfp_connection){
559a0ffb263SMatthias Ringwald     if (!hfp_connection) return;
560a0ffb263SMatthias Ringwald     hfp_connection->ok_pending = 0;
561a0ffb263SMatthias Ringwald     hfp_connection->send_error = 0;
5623deb3ec6SMatthias Ringwald 
563dd533208SMatthias Ringwald     hfp_connection->found_equal_sign = false;
5643deb3ec6SMatthias Ringwald 
565a0ffb263SMatthias Ringwald     hfp_connection->change_status_update_for_individual_ag_indicators = 0;
566a0ffb263SMatthias Ringwald     hfp_connection->operator_name_changed = 0;
5673deb3ec6SMatthias Ringwald 
568a0ffb263SMatthias Ringwald     hfp_connection->enable_extended_audio_gateway_error_report = 0;
569a0ffb263SMatthias Ringwald     hfp_connection->extended_audio_gateway_error = 0;
5703deb3ec6SMatthias Ringwald 
571a0ffb263SMatthias Ringwald     // establish codecs hfp_connection
572a0ffb263SMatthias Ringwald     hfp_connection->suggested_codec = 0;
5737522e673SMatthias Ringwald     hfp_connection->negotiated_codec = 0;
574a0ffb263SMatthias Ringwald     hfp_connection->codec_confirmed = 0;
5753deb3ec6SMatthias Ringwald 
576a0ffb263SMatthias Ringwald     hfp_connection->establish_audio_connection = 0;
577a0ffb263SMatthias Ringwald     hfp_connection->call_waiting_notification_enabled = 0;
578a0ffb263SMatthias Ringwald     hfp_connection->command = HFP_CMD_NONE;
579a0ffb263SMatthias Ringwald     hfp_connection->enable_status_update_for_ag_indicators = 0xFF;
580*125560b8SMatthias Ringwald     hfp_connection->clip_have_alpha = false;
581c95b5b3cSMilanka Ringwald     hfp_reset_voice_recognition(hfp_connection);
5823deb3ec6SMatthias Ringwald }
5833deb3ec6SMatthias Ringwald 
584fffdd288SMatthias Ringwald static hfp_connection_t * create_hfp_connection_context(void){
585a0ffb263SMatthias Ringwald     hfp_connection_t * hfp_connection = btstack_memory_hfp_connection_get();
586a0ffb263SMatthias Ringwald     if (!hfp_connection) return NULL;
5873deb3ec6SMatthias Ringwald 
588a0ffb263SMatthias Ringwald     hfp_connection->state = HFP_IDLE;
589a0ffb263SMatthias Ringwald     hfp_connection->call_state = HFP_CALL_IDLE;
590a0ffb263SMatthias Ringwald     hfp_connection->codecs_state = HFP_CODECS_IDLE;
591aa4dd815SMatthias Ringwald 
592a0ffb263SMatthias Ringwald     hfp_connection->parser_state = HFP_PARSER_CMD_HEADER;
5933deb3ec6SMatthias Ringwald 
594d751f069SMatthias Ringwald     hfp_connection->acl_handle = HCI_CON_HANDLE_INVALID;
595d751f069SMatthias Ringwald     hfp_connection->sco_handle = HCI_CON_HANDLE_INVALID;
596d751f069SMatthias Ringwald 
597a0ffb263SMatthias Ringwald     hfp_reset_context_flags(hfp_connection);
5983deb3ec6SMatthias Ringwald 
599d63c37a1SMatthias Ringwald     btstack_linked_list_add(&hfp_connections, (btstack_linked_item_t*)hfp_connection);
600a0ffb263SMatthias Ringwald     return hfp_connection;
6013deb3ec6SMatthias Ringwald }
6023deb3ec6SMatthias Ringwald 
60348e6eeeeSMatthias Ringwald void hfp_finalize_connection_context(hfp_connection_t * hfp_connection){
604a0ffb263SMatthias Ringwald     btstack_linked_list_remove(&hfp_connections, (btstack_linked_item_t*) hfp_connection);
60509a233a1SMatthias Ringwald     btstack_memory_hfp_connection_free(hfp_connection);
6063deb3ec6SMatthias Ringwald }
6073deb3ec6SMatthias Ringwald 
6084eb3f1d8SMilanka Ringwald static hfp_connection_t * hfp_create_connection(bd_addr_t bd_addr, hfp_role_t local_role){
609405014fbSMatthias Ringwald     hfp_connection_t * hfp_connection = get_hfp_connection_context_for_bd_addr(bd_addr, local_role);
610a0ffb263SMatthias Ringwald     if (hfp_connection) return  hfp_connection;
611a0ffb263SMatthias Ringwald     hfp_connection = create_hfp_connection_context();
6126535961aSMatthias Ringwald     (void)memcpy(hfp_connection->remote_addr, bd_addr, 6);
613323d3000SMatthias Ringwald     hfp_connection->local_role = local_role;
614bdf572f4SMatthias Ringwald     log_info("Create HFP context %p: role %u, addr %s", hfp_connection, local_role, bd_addr_to_str(bd_addr));
615bdf572f4SMatthias Ringwald 
616a0ffb263SMatthias Ringwald     return hfp_connection;
6173deb3ec6SMatthias Ringwald }
6183deb3ec6SMatthias Ringwald 
619aa4dd815SMatthias Ringwald /* @param network.
620aa4dd815SMatthias Ringwald  * 0 == no ability to reject a call.
621aa4dd815SMatthias Ringwald  * 1 == ability to reject a call.
622aa4dd815SMatthias Ringwald  */
6233deb3ec6SMatthias Ringwald 
6243deb3ec6SMatthias Ringwald /* @param suported_features
6253deb3ec6SMatthias Ringwald  * HF bit 0: EC and/or NR function (yes/no, 1 = yes, 0 = no)
6263deb3ec6SMatthias Ringwald  * HF bit 1: Call waiting or three-way calling(yes/no, 1 = yes, 0 = no)
6273deb3ec6SMatthias Ringwald  * HF bit 2: CLI presentation capability (yes/no, 1 = yes, 0 = no)
6283deb3ec6SMatthias Ringwald  * HF bit 3: Voice recognition activation (yes/no, 1= yes, 0 = no)
6293deb3ec6SMatthias Ringwald  * HF bit 4: Remote volume control (yes/no, 1 = yes, 0 = no)
6303deb3ec6SMatthias Ringwald  * HF bit 5: Wide band speech (yes/no, 1 = yes, 0 = no)
6313deb3ec6SMatthias Ringwald  */
6323deb3ec6SMatthias Ringwald  /* Bit position:
6333deb3ec6SMatthias Ringwald  * AG bit 0: Three-way calling (yes/no, 1 = yes, 0 = no)
6343deb3ec6SMatthias Ringwald  * AG bit 1: EC and/or NR function (yes/no, 1 = yes, 0 = no)
6353deb3ec6SMatthias Ringwald  * AG bit 2: Voice recognition function (yes/no, 1 = yes, 0 = no)
6363deb3ec6SMatthias Ringwald  * AG bit 3: In-band ring tone capability (yes/no, 1 = yes, 0 = no)
6373deb3ec6SMatthias Ringwald  * AG bit 4: Attach a phone number to a voice tag (yes/no, 1 = yes, 0 = no)
6383deb3ec6SMatthias Ringwald  * AG bit 5: Wide band speech (yes/no, 1 = yes, 0 = no)
6393deb3ec6SMatthias Ringwald  */
6403deb3ec6SMatthias Ringwald 
6419b1c3b4dSMatthias Ringwald void hfp_create_sdp_record(uint8_t * service, uint32_t service_record_handle, uint16_t service_uuid, int rfcomm_channel_nr, const char * name){
6423deb3ec6SMatthias Ringwald     uint8_t* attribute;
6433deb3ec6SMatthias Ringwald     de_create_sequence(service);
6443deb3ec6SMatthias Ringwald 
6453deb3ec6SMatthias Ringwald     // 0x0000 "Service Record Handle"
646235946f1SMatthias Ringwald     de_add_number(service, DE_UINT, DE_SIZE_16, BLUETOOTH_ATTRIBUTE_SERVICE_RECORD_HANDLE);
6479b1c3b4dSMatthias Ringwald     de_add_number(service, DE_UINT, DE_SIZE_32, service_record_handle);
6483deb3ec6SMatthias Ringwald 
6493deb3ec6SMatthias Ringwald     // 0x0001 "Service Class ID List"
650235946f1SMatthias Ringwald     de_add_number(service,  DE_UINT, DE_SIZE_16, BLUETOOTH_ATTRIBUTE_SERVICE_CLASS_ID_LIST);
6513deb3ec6SMatthias Ringwald     attribute = de_push_sequence(service);
6523deb3ec6SMatthias Ringwald     {
6533deb3ec6SMatthias Ringwald         //  "UUID for Service"
6543deb3ec6SMatthias Ringwald         de_add_number(attribute, DE_UUID, DE_SIZE_16, service_uuid);
655235946f1SMatthias Ringwald         de_add_number(attribute, DE_UUID, DE_SIZE_16, BLUETOOTH_SERVICE_CLASS_GENERIC_AUDIO);
6563deb3ec6SMatthias Ringwald     }
6573deb3ec6SMatthias Ringwald     de_pop_sequence(service, attribute);
6583deb3ec6SMatthias Ringwald 
6593deb3ec6SMatthias Ringwald     // 0x0004 "Protocol Descriptor List"
660235946f1SMatthias Ringwald     de_add_number(service,  DE_UINT, DE_SIZE_16, BLUETOOTH_ATTRIBUTE_PROTOCOL_DESCRIPTOR_LIST);
6613deb3ec6SMatthias Ringwald     attribute = de_push_sequence(service);
6623deb3ec6SMatthias Ringwald     {
6633deb3ec6SMatthias Ringwald         uint8_t* l2cpProtocol = de_push_sequence(attribute);
6643deb3ec6SMatthias Ringwald         {
665235946f1SMatthias Ringwald             de_add_number(l2cpProtocol,  DE_UUID, DE_SIZE_16, BLUETOOTH_PROTOCOL_L2CAP);
6663deb3ec6SMatthias Ringwald         }
6673deb3ec6SMatthias Ringwald         de_pop_sequence(attribute, l2cpProtocol);
6683deb3ec6SMatthias Ringwald 
6693deb3ec6SMatthias Ringwald         uint8_t* rfcomm = de_push_sequence(attribute);
6703deb3ec6SMatthias Ringwald         {
671235946f1SMatthias Ringwald             de_add_number(rfcomm,  DE_UUID, DE_SIZE_16, BLUETOOTH_PROTOCOL_RFCOMM);  // rfcomm_service
6723deb3ec6SMatthias Ringwald             de_add_number(rfcomm,  DE_UINT, DE_SIZE_8,  rfcomm_channel_nr);  // rfcomm channel
6733deb3ec6SMatthias Ringwald         }
6743deb3ec6SMatthias Ringwald         de_pop_sequence(attribute, rfcomm);
6753deb3ec6SMatthias Ringwald     }
6763deb3ec6SMatthias Ringwald     de_pop_sequence(service, attribute);
6773deb3ec6SMatthias Ringwald 
6783deb3ec6SMatthias Ringwald 
6793deb3ec6SMatthias Ringwald     // 0x0005 "Public Browse Group"
680235946f1SMatthias Ringwald     de_add_number(service,  DE_UINT, DE_SIZE_16, BLUETOOTH_ATTRIBUTE_BROWSE_GROUP_LIST); // public browse group
6813deb3ec6SMatthias Ringwald     attribute = de_push_sequence(service);
6823deb3ec6SMatthias Ringwald     {
683235946f1SMatthias Ringwald         de_add_number(attribute,  DE_UUID, DE_SIZE_16, BLUETOOTH_ATTRIBUTE_PUBLIC_BROWSE_ROOT);
6843deb3ec6SMatthias Ringwald     }
6853deb3ec6SMatthias Ringwald     de_pop_sequence(service, attribute);
6863deb3ec6SMatthias Ringwald 
6873deb3ec6SMatthias Ringwald     // 0x0009 "Bluetooth Profile Descriptor List"
688235946f1SMatthias Ringwald     de_add_number(service,  DE_UINT, DE_SIZE_16, BLUETOOTH_ATTRIBUTE_BLUETOOTH_PROFILE_DESCRIPTOR_LIST);
6893deb3ec6SMatthias Ringwald     attribute = de_push_sequence(service);
6903deb3ec6SMatthias Ringwald     {
6913deb3ec6SMatthias Ringwald         uint8_t *sppProfile = de_push_sequence(attribute);
6923deb3ec6SMatthias Ringwald         {
693235946f1SMatthias Ringwald             de_add_number(sppProfile,  DE_UUID, DE_SIZE_16, BLUETOOTH_SERVICE_CLASS_HANDSFREE);
6943cb2bba2SMilanka Ringwald             de_add_number(sppProfile,  DE_UINT, DE_SIZE_16, 0x0108); // Verision 1.8
6953deb3ec6SMatthias Ringwald         }
6963deb3ec6SMatthias Ringwald         de_pop_sequence(attribute, sppProfile);
6973deb3ec6SMatthias Ringwald     }
6983deb3ec6SMatthias Ringwald     de_pop_sequence(service, attribute);
6993deb3ec6SMatthias Ringwald 
7003deb3ec6SMatthias Ringwald     // 0x0100 "Service Name"
7013deb3ec6SMatthias Ringwald     de_add_number(service,  DE_UINT, DE_SIZE_16, 0x0100);
7023deb3ec6SMatthias Ringwald     de_add_data(service,  DE_STRING, strlen(name), (uint8_t *) name);
7033deb3ec6SMatthias Ringwald }
7043deb3ec6SMatthias Ringwald 
7057dceaecaSMatthias Ringwald static void hfp_handle_slc_setup_error(hfp_connection_t * hfp_connection, uint8_t status){
7067dceaecaSMatthias Ringwald     // cache fields for event
7077dceaecaSMatthias Ringwald     hfp_role_t local_role = hfp_connection->local_role;
7087dceaecaSMatthias Ringwald     bd_addr_t remote_addr;
7097dceaecaSMatthias Ringwald     (void)memcpy(remote_addr, hfp_connection, 6);
7107dceaecaSMatthias Ringwald     // finalize connection struct
7117dceaecaSMatthias Ringwald     hfp_finalize_connection_context(hfp_connection);
7127dceaecaSMatthias Ringwald     // emit event
7137dceaecaSMatthias Ringwald     hfp_emit_slc_connection_event(local_role, status, HCI_CON_HANDLE_INVALID, remote_addr);
7147dceaecaSMatthias Ringwald }
7157dceaecaSMatthias Ringwald 
7166c927b22SMatthias Ringwald static void handle_query_rfcomm_event(uint8_t packet_type, uint16_t channel, uint8_t *packet, uint16_t size){
7178a46ec40SMatthias Ringwald     UNUSED(packet_type);    // ok: handling own sdp events
7188a46ec40SMatthias Ringwald     UNUSED(channel);        // ok: no channel
7198a46ec40SMatthias Ringwald     UNUSED(size);           // ok: handling own sdp events
7201d9c9c90SMilanka Ringwald 
721aeb0f0feSMatthias Ringwald     hfp_connection_t * hfp_connection = get_hfp_connection_context_for_bd_addr(hfp_sdp_query_context.remote_address, hfp_sdp_query_context.local_role);
7221d9c9c90SMilanka Ringwald     if (hfp_connection == NULL) {
723aeb0f0feSMatthias Ringwald         log_info("connection with %s and local role %d not found", hfp_sdp_query_context.remote_address, hfp_sdp_query_context.local_role);
72484904e95SMilanka Ringwald         return;
72584904e95SMilanka Ringwald     }
7263deb3ec6SMatthias Ringwald 
7270e2df43fSMatthias Ringwald     switch (hci_event_packet_get_type(packet)){
7285611a760SMatthias Ringwald         case SDP_EVENT_QUERY_RFCOMM_SERVICE:
729a0ffb263SMatthias Ringwald             hfp_connection->rfcomm_channel_nr = sdp_event_query_rfcomm_service_get_rfcomm_channel(packet);
7303deb3ec6SMatthias Ringwald             break;
7315611a760SMatthias Ringwald         case SDP_EVENT_QUERY_COMPLETE:
732a0ffb263SMatthias Ringwald             if (hfp_connection->rfcomm_channel_nr > 0){
733a0ffb263SMatthias Ringwald                 hfp_connection->state = HFP_W4_RFCOMM_CONNECTED;
734520c92d5SMatthias Ringwald                 btstack_packet_handler_t packet_handler;
735520c92d5SMatthias Ringwald                 switch (hfp_connection->local_role){
736520c92d5SMatthias Ringwald                     case HFP_ROLE_AG:
737520c92d5SMatthias Ringwald                         packet_handler = hfp_ag_rfcomm_packet_handler;
738520c92d5SMatthias Ringwald                         break;
739520c92d5SMatthias Ringwald                     case HFP_ROLE_HF:
740520c92d5SMatthias Ringwald                         packet_handler = hfp_hf_rfcomm_packet_handler;
741520c92d5SMatthias Ringwald                         break;
742520c92d5SMatthias Ringwald                     default:
7431d9c9c90SMilanka Ringwald                         btstack_assert(false);
744520c92d5SMatthias Ringwald                         return;
745520c92d5SMatthias Ringwald                 }
7461d9c9c90SMilanka Ringwald 
747ca59be51SMatthias Ringwald                 rfcomm_create_channel(packet_handler, hfp_connection->remote_addr, hfp_connection->rfcomm_channel_nr, NULL);
7481d9c9c90SMilanka Ringwald 
7491d9c9c90SMilanka Ringwald             } else {
750cc92f22bSMatthias Ringwald                 uint8_t status = sdp_event_query_complete_get_status(packet);
751cc92f22bSMatthias Ringwald                 if (status == ERROR_CODE_SUCCESS){
752cc92f22bSMatthias Ringwald                     // report service not found
753cc92f22bSMatthias Ringwald                     status = SDP_SERVICE_NOT_FOUND;
754cc92f22bSMatthias Ringwald                 }
7557dceaecaSMatthias Ringwald                 hfp_handle_slc_setup_error(hfp_connection, status);
756cc92f22bSMatthias Ringwald                 log_info("rfcomm service not found, status 0x%02x", status);
7571d9c9c90SMilanka Ringwald             }
7581d9c9c90SMilanka Ringwald 
7591d9c9c90SMilanka Ringwald             // register the SDP Query request to check if there is another connection waiting for the query
7601d9c9c90SMilanka Ringwald             // ignore ERROR_CODE_COMMAND_DISALLOWED because in that case, we already have requested an SDP callback
761aeb0f0feSMatthias Ringwald             (void) sdp_client_register_query_callback(&hfp_sdp_query_request);
7623deb3ec6SMatthias Ringwald             break;
7633deb3ec6SMatthias Ringwald         default:
7643deb3ec6SMatthias Ringwald             break;
7653deb3ec6SMatthias Ringwald     }
7663deb3ec6SMatthias Ringwald }
7673deb3ec6SMatthias Ringwald 
76838200c1dSMilanka Ringwald // returns 0 if unexpected error or no other link options remained, otherwise 1
76938200c1dSMilanka Ringwald static int hfp_handle_failed_sco_connection(uint8_t status){
770eddcd308SMatthias Ringwald 
771aeb0f0feSMatthias Ringwald     if (!hfp_sco_establishment_active){
7723427dd75SMatthias Ringwald         log_info("(e)SCO Connection failed but not started by us");
77338200c1dSMilanka Ringwald         return 0;
774eddcd308SMatthias Ringwald     }
775eddcd308SMatthias Ringwald 
7763427dd75SMatthias Ringwald     log_info("(e)SCO Connection failed 0x%02x", status);
7773427dd75SMatthias Ringwald     switch (status){
7783427dd75SMatthias Ringwald         case ERROR_CODE_UNSUPPORTED_FEATURE_OR_PARAMETER_VALUE:
7793427dd75SMatthias Ringwald         case ERROR_CODE_UNSPECIFIED_ERROR:
7803427dd75SMatthias Ringwald         case ERROR_CODE_CONNECTION_REJECTED_DUE_TO_LIMITED_RESOURCES:
781eddcd308SMatthias Ringwald             break;
7823427dd75SMatthias Ringwald         default:
7833427dd75SMatthias Ringwald             return 0;
7843427dd75SMatthias Ringwald     }
7853427dd75SMatthias Ringwald 
7863427dd75SMatthias Ringwald     // note: eSCO_S4 supported flag not available, but it's only relevant for highest CVSD link setting (and the current failed)
787aeb0f0feSMatthias Ringwald     hfp_link_settings_t next_setting = hfp_next_link_setting_for_connection(hfp_sco_establishment_active->link_setting, hfp_sco_establishment_active, false);
7883427dd75SMatthias Ringwald 
7893427dd75SMatthias Ringwald     // handle no valid setting found
7903427dd75SMatthias Ringwald     if (next_setting == HFP_LINK_SETTINGS_NONE) {
791aeb0f0feSMatthias Ringwald         if (hfp_sco_establishment_active->negotiated_codec == HFP_CODEC_MSBC){
7923427dd75SMatthias Ringwald             log_info("T2/T1 failed, fallback to CVSD - D1");
793aeb0f0feSMatthias Ringwald             hfp_sco_establishment_active->negotiated_codec = HFP_CODEC_CVSD;
794aeb0f0feSMatthias Ringwald             hfp_sco_establishment_active->sco_for_msbc_failed = 1;
795a814da6aSMatthias Ringwald             hfp_sco_establishment_active->ag_send_common_codec = true;
796aeb0f0feSMatthias Ringwald             hfp_sco_establishment_active->link_setting = HFP_LINK_SETTINGS_D1;
7973427dd75SMatthias Ringwald         } else {
7983427dd75SMatthias Ringwald             // no other options
7993427dd75SMatthias Ringwald             return 0;
800eddcd308SMatthias Ringwald         }
8013427dd75SMatthias Ringwald     }
8023427dd75SMatthias Ringwald 
8033427dd75SMatthias Ringwald     log_info("e)SCO Connection: try new link_setting %d", next_setting);
804aeb0f0feSMatthias Ringwald     hfp_sco_establishment_active->establish_audio_connection = 1;
805aeb0f0feSMatthias Ringwald     hfp_sco_establishment_active->link_setting = next_setting;
806aeb0f0feSMatthias Ringwald     hfp_sco_establishment_active = NULL;
80738200c1dSMilanka Ringwald     return 1;
808eddcd308SMatthias Ringwald }
809eddcd308SMatthias Ringwald 
810405014fbSMatthias Ringwald void hfp_handle_hci_event(uint8_t packet_type, uint16_t channel, uint8_t *packet, uint16_t size, hfp_role_t local_role){
8115575558eSMilanka Ringwald     UNUSED(packet_type);
8128a46ec40SMatthias Ringwald     UNUSED(channel);    // ok: no channel
8135575558eSMilanka Ringwald     UNUSED(size);
8149ec2630cSMatthias Ringwald 
8153deb3ec6SMatthias Ringwald     bd_addr_t event_addr;
81627950165SMatthias Ringwald     hci_con_handle_t handle;
817a0ffb263SMatthias Ringwald     hfp_connection_t * hfp_connection = NULL;
818674515e8SMatthias Ringwald     uint8_t status;
8193deb3ec6SMatthias Ringwald 
82027950165SMatthias Ringwald     log_debug("HFP HCI event handler type %u, event type %x, size %u", packet_type, hci_event_packet_get_type(packet), size);
821aa4dd815SMatthias Ringwald 
8220e2df43fSMatthias Ringwald     switch (hci_event_packet_get_type(packet)) {
8231b005648SMatthias Ringwald 
824011577abSMilanka Ringwald         case HCI_EVENT_CONNECTION_REQUEST:
8257522e673SMatthias Ringwald             switch(hci_event_connection_request_get_link_type(packet)){
8267522e673SMatthias Ringwald                 case 0: //  SCO
8277522e673SMatthias Ringwald                 case 2: // eSCO
828011577abSMilanka Ringwald                     hci_event_connection_request_get_bd_addr(packet, event_addr);
829405014fbSMatthias Ringwald                     hfp_connection = get_hfp_connection_context_for_bd_addr(event_addr, local_role);
830011577abSMilanka Ringwald                     if (!hfp_connection) break;
831c169df2fSMatthias Ringwald                     if (hci_event_connection_request_get_link_type(packet) == 2){
832cb81d35dSMatthias Ringwald                         hfp_connection->accept_sco = 2;
833c169df2fSMatthias Ringwald                     } else {
834cb81d35dSMatthias Ringwald                         hfp_connection->accept_sco = 1;
835c169df2fSMatthias Ringwald                     }
8363721a235SMatthias Ringwald #ifdef ENABLE_CC256X_ASSISTED_HFP
8373721a235SMatthias Ringwald                     hfp_cc256x_prepare_for_sco(hfp_connection);
8383721a235SMatthias Ringwald #endif
839689d4323SMatthias Ringwald #ifdef ENABLE_BCM_PCM_WBS
840689d4323SMatthias Ringwald                     hfp_bcm_prepare_for_sco(hfp_connection);
841689d4323SMatthias Ringwald #endif
8422b5f92fdSMatthias Ringwald #ifdef ENABLE_RTK_PCM_WBS
8432b5f92fdSMatthias Ringwald                     hfp_connection->rtk_send_sco_config = true;
8442b5f92fdSMatthias Ringwald #endif
845cb81d35dSMatthias Ringwald                     log_info("accept sco %u\n", hfp_connection->accept_sco);
846aeb0f0feSMatthias Ringwald                     hfp_sco_establishment_active = hfp_connection;
847202c8a4cSMatthias Ringwald                     break;
8487522e673SMatthias Ringwald                 default:
8497522e673SMatthias Ringwald                     break;
8507522e673SMatthias Ringwald             }
851011577abSMilanka Ringwald             break;
8523deb3ec6SMatthias Ringwald 
853eddcd308SMatthias Ringwald         case HCI_EVENT_COMMAND_STATUS:
854eddcd308SMatthias Ringwald             if (hci_event_command_status_get_command_opcode(packet) == hci_setup_synchronous_connection.opcode) {
855aeb0f0feSMatthias Ringwald                 if (hfp_sco_establishment_active == NULL) break;
856be2a1a78SMatthias Ringwald                 status = hci_event_command_status_get_status(packet);
85738200c1dSMilanka Ringwald                 if (status == ERROR_CODE_SUCCESS) break;
85838200c1dSMilanka Ringwald 
859aeb0f0feSMatthias Ringwald                 hfp_connection = hfp_sco_establishment_active;
86038200c1dSMilanka Ringwald                 if (hfp_handle_failed_sco_connection(status)) break;
86138200c1dSMilanka Ringwald                 hfp_connection->establish_audio_connection = 0;
86238200c1dSMilanka Ringwald                 hfp_connection->state = HFP_SERVICE_LEVEL_CONNECTION_ESTABLISHED;
86338200c1dSMilanka Ringwald                 hfp_emit_sco_event(hfp_connection, status, 0, hfp_connection->remote_addr, hfp_connection->negotiated_codec);
8646c5b2002SMatthias Ringwald             }
865eddcd308SMatthias Ringwald             break;
866eddcd308SMatthias Ringwald 
8673deb3ec6SMatthias Ringwald         case HCI_EVENT_SYNCHRONOUS_CONNECTION_COMPLETE:{
868aeb0f0feSMatthias Ringwald             if (hfp_sco_establishment_active == NULL) break;
869011577abSMilanka Ringwald             hci_event_synchronous_connection_complete_get_bd_addr(packet, event_addr);
870405014fbSMatthias Ringwald             hfp_connection = get_hfp_connection_context_for_bd_addr(event_addr, local_role);
871011577abSMilanka Ringwald             if (!hfp_connection) {
872011577abSMilanka Ringwald                 log_error("HFP: connection does not exist for remote with addr %s.", bd_addr_to_str(event_addr));
873011577abSMilanka Ringwald                 return;
874011577abSMilanka Ringwald             }
875ce263fc8SMatthias Ringwald 
876011577abSMilanka Ringwald             status = hci_event_synchronous_connection_complete_get_status(packet);
87738200c1dSMilanka Ringwald             if (status != ERROR_CODE_SUCCESS){
878cb81d35dSMatthias Ringwald                 hfp_connection->accept_sco = 0;
87938200c1dSMilanka Ringwald                 if (hfp_handle_failed_sco_connection(status)) break;
88038200c1dSMilanka Ringwald 
88138200c1dSMilanka Ringwald                 hfp_connection->establish_audio_connection = 0;
88238200c1dSMilanka Ringwald                 hfp_connection->state = HFP_SERVICE_LEVEL_CONNECTION_ESTABLISHED;
88338200c1dSMilanka Ringwald                 hfp_emit_sco_event(hfp_connection, status, 0, event_addr, hfp_connection->negotiated_codec);
884aa4dd815SMatthias Ringwald                 break;
885aa4dd815SMatthias Ringwald             }
886aa4dd815SMatthias Ringwald 
887011577abSMilanka Ringwald             uint16_t sco_handle = hci_event_synchronous_connection_complete_get_handle(packet);
888011577abSMilanka Ringwald             uint8_t  link_type = hci_event_synchronous_connection_complete_get_link_type(packet);
889011577abSMilanka Ringwald             uint8_t  transmission_interval = hci_event_synchronous_connection_complete_get_transmission_interval(packet);  // measured in slots
890011577abSMilanka Ringwald             uint8_t  retransmission_interval = hci_event_synchronous_connection_complete_get_retransmission_interval(packet);// measured in slots
891011577abSMilanka Ringwald             uint16_t rx_packet_length = hci_event_synchronous_connection_complete_get_rx_packet_length(packet); // measured in bytes
892011577abSMilanka Ringwald             uint16_t tx_packet_length = hci_event_synchronous_connection_complete_get_tx_packet_length(packet); // measured in bytes
8933deb3ec6SMatthias Ringwald 
8943deb3ec6SMatthias Ringwald             switch (link_type){
8953deb3ec6SMatthias Ringwald                 case 0x00:
896aa4dd815SMatthias Ringwald                     log_info("SCO Connection established.");
8973deb3ec6SMatthias Ringwald                     if (transmission_interval != 0) log_error("SCO Connection: transmission_interval not zero: %d.", transmission_interval);
8983deb3ec6SMatthias Ringwald                     if (retransmission_interval != 0) log_error("SCO Connection: retransmission_interval not zero: %d.", retransmission_interval);
8993deb3ec6SMatthias Ringwald                     if (rx_packet_length != 0) log_error("SCO Connection: rx_packet_length not zero: %d.", rx_packet_length);
9003deb3ec6SMatthias Ringwald                     if (tx_packet_length != 0) log_error("SCO Connection: tx_packet_length not zero: %d.", tx_packet_length);
9013deb3ec6SMatthias Ringwald                     break;
9023deb3ec6SMatthias Ringwald                 case 0x02:
903aa4dd815SMatthias Ringwald                     log_info("eSCO Connection established. \n");
9043deb3ec6SMatthias Ringwald                     break;
9053deb3ec6SMatthias Ringwald                 default:
9063deb3ec6SMatthias Ringwald                     log_error("(e)SCO reserved link_type 0x%2x", link_type);
9073deb3ec6SMatthias Ringwald                     break;
9083deb3ec6SMatthias Ringwald             }
909e0d13a19SMilanka Ringwald 
9103deb3ec6SMatthias Ringwald             log_info("sco_handle 0x%2x, address %s, transmission_interval %u slots, retransmission_interval %u slots, "
911aa4dd815SMatthias Ringwald                  " rx_packet_length %u bytes, tx_packet_length %u bytes, air_mode 0x%2x (0x02 == CVSD)\n", sco_handle,
912e0d13a19SMilanka Ringwald                  bd_addr_to_str(event_addr), transmission_interval, retransmission_interval, rx_packet_length, tx_packet_length,
913e0d13a19SMilanka Ringwald                  hci_event_synchronous_connection_complete_get_air_mode(packet));
9143deb3ec6SMatthias Ringwald 
915d63c37a1SMatthias Ringwald             if (hfp_connection->state == HFP_W4_CONNECTION_ESTABLISHED_TO_SHUTDOWN){
916aa4dd815SMatthias Ringwald                 log_info("SCO about to disconnect: HFP_W4_CONNECTION_ESTABLISHED_TO_SHUTDOWN");
917d63c37a1SMatthias Ringwald                 hfp_connection->state = HFP_W2_DISCONNECT_SCO;
918aa4dd815SMatthias Ringwald                 break;
919aa4dd815SMatthias Ringwald             }
920d63c37a1SMatthias Ringwald             hfp_connection->sco_handle = sco_handle;
921d63c37a1SMatthias Ringwald             hfp_connection->establish_audio_connection = 0;
922c95b5b3cSMilanka Ringwald 
923d63c37a1SMatthias Ringwald             hfp_connection->state = HFP_AUDIO_CONNECTION_ESTABLISHED;
9241a26de69SMilanka Ringwald 
9250b4debbfSMilanka Ringwald             switch (hfp_connection->vra_state){
9260b4debbfSMilanka Ringwald                 case HFP_VRA_VOICE_RECOGNITION_ACTIVATED:
9271a26de69SMilanka Ringwald                     hfp_connection->ag_audio_connection_opened_before_vra = false;
9280b4debbfSMilanka Ringwald                     break;
9290b4debbfSMilanka Ringwald                 default:
9301a26de69SMilanka Ringwald                     hfp_connection->ag_audio_connection_opened_before_vra = true;
9310b4debbfSMilanka Ringwald                     break;
9320b4debbfSMilanka Ringwald             }
93338200c1dSMilanka Ringwald             hfp_emit_sco_event(hfp_connection, status, sco_handle, event_addr, hfp_connection->negotiated_codec);
9343deb3ec6SMatthias Ringwald             break;
9353deb3ec6SMatthias Ringwald         }
9363deb3ec6SMatthias Ringwald 
9373deb3ec6SMatthias Ringwald         case HCI_EVENT_DISCONNECTION_COMPLETE:
938f8fbdce0SMatthias Ringwald             handle = little_endian_read_16(packet,3);
939405014fbSMatthias Ringwald             hfp_connection = get_hfp_connection_context_for_sco_handle(handle, local_role);
940aa4dd815SMatthias Ringwald 
941d63c37a1SMatthias Ringwald             if (!hfp_connection) break;
942aa4dd815SMatthias Ringwald 
9433721a235SMatthias Ringwald #ifdef ENABLE_CC256X_ASSISTED_HFP
9443721a235SMatthias Ringwald             hfp_connection->cc256x_send_wbs_disassociate = true;
9453721a235SMatthias Ringwald #endif
946689d4323SMatthias Ringwald #ifdef ENABLE_BCM_PCM_WBS
947689d4323SMatthias Ringwald             hfp_connection->bcm_send_disable_wbs = true;
948689d4323SMatthias Ringwald #endif
94952cbdd6dSMilanka Ringwald             if (hfp_connection->sco_handle == handle){
950d751f069SMatthias Ringwald                 hfp_connection->sco_handle = HCI_CON_HANDLE_INVALID;
951d63c37a1SMatthias Ringwald                 hfp_connection->release_audio_connection = 0;
95252cbdd6dSMilanka Ringwald                 hfp_connection->state = HFP_SERVICE_LEVEL_CONNECTION_ESTABLISHED;
95352cbdd6dSMilanka Ringwald                 hfp_emit_audio_connection_released(hfp_connection, handle);
95452cbdd6dSMilanka Ringwald 
9551a26de69SMilanka Ringwald                 hfp_connection->ag_audio_connection_opened_before_vra = false;
95652cbdd6dSMilanka Ringwald 
95752cbdd6dSMilanka Ringwald                 if (hfp_connection->acl_handle == HCI_CON_HANDLE_INVALID){
95811b091bfSMilanka Ringwald                     hfp_reset_voice_recognition(hfp_connection);
95952cbdd6dSMilanka Ringwald                     hfp_emit_event(hfp_connection, HFP_SUBEVENT_SERVICE_LEVEL_CONNECTION_RELEASED, 0);
96052cbdd6dSMilanka Ringwald                     hfp_finalize_connection_context(hfp_connection);
96119976d6bSMilanka Ringwald                     break;
96252cbdd6dSMilanka Ringwald                 } else if (hfp_connection->release_slc_connection == 1){
96352cbdd6dSMilanka Ringwald                     hfp_connection->release_slc_connection = 0;
96452cbdd6dSMilanka Ringwald                     hfp_connection->state = HFP_W2_DISCONNECT_RFCOMM;
96552cbdd6dSMilanka Ringwald                     rfcomm_disconnect(hfp_connection->acl_handle);
96652cbdd6dSMilanka Ringwald                 }
96752cbdd6dSMilanka Ringwald             }
96848e6eeeeSMatthias Ringwald 
96948e6eeeeSMatthias Ringwald             if (hfp_connection->state == HFP_W4_SCO_DISCONNECTED_TO_SHUTDOWN){
97048e6eeeeSMatthias Ringwald                 // RFCOMM already closed -> remote power off
97148e6eeeeSMatthias Ringwald #if defined(ENABLE_CC256X_ASSISTED_HFP) || defined (ENABLE_BCM_PCM_WBS)
97248e6eeeeSMatthias Ringwald                 hfp_connection->state = HFP_W4_WBS_SHUTDOWN;
97348e6eeeeSMatthias Ringwald #else
97448e6eeeeSMatthias Ringwald                 hfp_finalize_connection_context(hfp_connection);
97548e6eeeeSMatthias Ringwald #endif
97648e6eeeeSMatthias Ringwald                 break;
97748e6eeeeSMatthias Ringwald             }
9783deb3ec6SMatthias Ringwald             break;
9793deb3ec6SMatthias Ringwald 
980fc64f94aSMatthias Ringwald         default:
9813deb3ec6SMatthias Ringwald             break;
9823deb3ec6SMatthias Ringwald     }
9833deb3ec6SMatthias Ringwald }
9843deb3ec6SMatthias Ringwald 
9853721a235SMatthias Ringwald 
98627950165SMatthias Ringwald void hfp_handle_rfcomm_event(uint8_t packet_type, uint16_t channel, uint8_t *packet, uint16_t size, hfp_role_t local_role){
9875575558eSMilanka Ringwald     UNUSED(packet_type);
98827950165SMatthias Ringwald     UNUSED(channel);    // ok: no channel
9895575558eSMilanka Ringwald     UNUSED(size);
99027950165SMatthias Ringwald 
99127950165SMatthias Ringwald     bd_addr_t event_addr;
99227950165SMatthias Ringwald     uint16_t rfcomm_cid;
99327950165SMatthias Ringwald     hfp_connection_t * hfp_connection = NULL;
99427950165SMatthias Ringwald     uint8_t status;
99527950165SMatthias Ringwald 
99627950165SMatthias Ringwald     log_debug("HFP packet_handler type %u, event type %x, size %u", packet_type, hci_event_packet_get_type(packet), size);
99727950165SMatthias Ringwald 
99827950165SMatthias Ringwald     switch (hci_event_packet_get_type(packet)) {
99927950165SMatthias Ringwald 
100027950165SMatthias Ringwald         case RFCOMM_EVENT_INCOMING_CONNECTION:
100127950165SMatthias Ringwald             // data: event (8), len(8), address(48), channel (8), rfcomm_cid (16)
100227950165SMatthias Ringwald             rfcomm_event_incoming_connection_get_bd_addr(packet, event_addr);
10034eb3f1d8SMilanka Ringwald             hfp_connection = hfp_create_connection(event_addr, local_role);
100427950165SMatthias Ringwald             if (!hfp_connection){
100527950165SMatthias Ringwald                 log_info("hfp: no memory to accept incoming connection - decline");
100627950165SMatthias Ringwald                 rfcomm_decline_connection(rfcomm_event_incoming_connection_get_rfcomm_cid(packet));
100727950165SMatthias Ringwald                 return;
100827950165SMatthias Ringwald             }
100927950165SMatthias Ringwald             if (hfp_connection->state != HFP_IDLE) {
10104960f9e7SMatthias Ringwald                 log_error("hfp: incoming connection but not idle, reject");
10114960f9e7SMatthias Ringwald                 rfcomm_decline_connection(rfcomm_event_incoming_connection_get_rfcomm_cid(packet));
101227950165SMatthias Ringwald                 return;
101327950165SMatthias Ringwald             }
101427950165SMatthias Ringwald 
101527950165SMatthias Ringwald             hfp_connection->rfcomm_cid = rfcomm_event_incoming_connection_get_rfcomm_cid(packet);
101627950165SMatthias Ringwald             hfp_connection->state = HFP_W4_RFCOMM_CONNECTED;
101727950165SMatthias Ringwald             rfcomm_accept_connection(hfp_connection->rfcomm_cid);
101827950165SMatthias Ringwald             break;
101927950165SMatthias Ringwald 
102027950165SMatthias Ringwald         case RFCOMM_EVENT_CHANNEL_OPENED:
102127950165SMatthias Ringwald             rfcomm_event_channel_opened_get_bd_addr(packet, event_addr);
102227950165SMatthias Ringwald 
1023405014fbSMatthias Ringwald             hfp_connection = get_hfp_connection_context_for_bd_addr(event_addr, local_role);
10246504a03aSMilanka Ringwald             btstack_assert(hfp_connection != NULL);
102527950165SMatthias Ringwald 
10266504a03aSMilanka Ringwald             if (hfp_connection->state != HFP_W4_RFCOMM_CONNECTED){
10276504a03aSMilanka Ringwald                 break;
10286504a03aSMilanka Ringwald             }
10296504a03aSMilanka Ringwald 
10306504a03aSMilanka Ringwald             status = rfcomm_event_channel_opened_get_status(packet);
10316504a03aSMilanka Ringwald             if (status != ERROR_CODE_SUCCESS) {
10327dceaecaSMatthias Ringwald                 hfp_handle_slc_setup_error(hfp_connection, status);
10336504a03aSMilanka Ringwald                 break;
10346504a03aSMilanka Ringwald             }
10356504a03aSMilanka Ringwald 
103627950165SMatthias Ringwald             hfp_connection->acl_handle = rfcomm_event_channel_opened_get_con_handle(packet);
103727950165SMatthias Ringwald             hfp_connection->rfcomm_cid = rfcomm_event_channel_opened_get_rfcomm_cid(packet);
10386504a03aSMilanka Ringwald             hfp_connection->rfcomm_mtu = rfcomm_event_channel_opened_get_max_frame_size(packet);
103927950165SMatthias Ringwald             bd_addr_copy(hfp_connection->remote_addr, event_addr);
104027950165SMatthias Ringwald             hfp_connection->state = HFP_EXCHANGE_SUPPORTED_FEATURES;
10416504a03aSMilanka Ringwald 
104227950165SMatthias Ringwald             rfcomm_request_can_send_now_event(hfp_connection->rfcomm_cid);
104327950165SMatthias Ringwald             break;
104427950165SMatthias Ringwald 
104527950165SMatthias Ringwald         case RFCOMM_EVENT_CHANNEL_CLOSED:
104627950165SMatthias Ringwald             rfcomm_cid = little_endian_read_16(packet,2);
104727950165SMatthias Ringwald             hfp_connection = get_hfp_connection_context_for_rfcomm_cid(rfcomm_cid);
104827950165SMatthias Ringwald             if (!hfp_connection) break;
104952cbdd6dSMilanka Ringwald             switch (hfp_connection->state){
105052cbdd6dSMilanka Ringwald                 case HFP_W4_RFCOMM_DISCONNECTED_AND_RESTART:
105152cbdd6dSMilanka Ringwald                     hfp_connection->acl_handle = HCI_CON_HANDLE_INVALID;
105227950165SMatthias Ringwald                     hfp_connection->state = HFP_IDLE;
105327950165SMatthias Ringwald                     hfp_establish_service_level_connection(hfp_connection->remote_addr, hfp_connection->service_uuid, local_role);
105427950165SMatthias Ringwald                     break;
105552cbdd6dSMilanka Ringwald 
105652cbdd6dSMilanka Ringwald                 case HFP_AUDIO_CONNECTION_ESTABLISHED:
105748e6eeeeSMatthias Ringwald                     // service connection was released, this implicitly releases audio connection as well
105848e6eeeeSMatthias Ringwald                     hfp_connection->release_audio_connection = 0;
105952cbdd6dSMilanka Ringwald                     hfp_connection->acl_handle = HCI_CON_HANDLE_INVALID;
106048e6eeeeSMatthias Ringwald                     hfp_connection->state = HFP_W4_SCO_DISCONNECTED_TO_SHUTDOWN;
106152cbdd6dSMilanka Ringwald                     gap_disconnect(hfp_connection->sco_handle);
106252cbdd6dSMilanka Ringwald                     break;
106352cbdd6dSMilanka Ringwald 
106452cbdd6dSMilanka Ringwald                 default:
106548e6eeeeSMatthias Ringwald                     // regular case
106611b091bfSMilanka Ringwald                     hfp_reset_voice_recognition(hfp_connection);
106748e6eeeeSMatthias Ringwald                     hfp_emit_event(hfp_connection, HFP_SUBEVENT_SERVICE_LEVEL_CONNECTION_RELEASED, 0);
106848e6eeeeSMatthias Ringwald                     hfp_finalize_connection_context(hfp_connection);
106952cbdd6dSMilanka Ringwald                     break;
107048e6eeeeSMatthias Ringwald             }
107127950165SMatthias Ringwald             break;
107227950165SMatthias Ringwald 
107327950165SMatthias Ringwald         default:
107427950165SMatthias Ringwald             break;
107527950165SMatthias Ringwald     }
107627950165SMatthias Ringwald }
1077aa4dd815SMatthias Ringwald // translates command string into hfp_command_t CMD
107894a27792SMatthias Ringwald 
107994a27792SMatthias Ringwald typedef struct {
108094a27792SMatthias Ringwald     const char * command;
108194a27792SMatthias Ringwald     hfp_command_t command_id;
108294a27792SMatthias Ringwald } hfp_command_entry_t;
108394a27792SMatthias Ringwald 
108494a27792SMatthias Ringwald static hfp_command_entry_t hfp_ag_commmand_table[] = {
1085cb33905eSMatthias Ringwald     { "AT+BAC=",   HFP_CMD_AVAILABLE_CODECS },
1086cb33905eSMatthias Ringwald     { "AT+BCC",    HFP_CMD_TRIGGER_CODEC_CONNECTION_SETUP },
1087cb33905eSMatthias Ringwald     { "AT+BCS=",   HFP_CMD_HF_CONFIRMED_CODEC },
1088cb33905eSMatthias Ringwald     { "AT+BIA=",   HFP_CMD_ENABLE_INDIVIDUAL_AG_INDICATOR_STATUS_UPDATE, }, // +BIA:<enabled>,,<enabled>,,,<enabled>
1089cb33905eSMatthias Ringwald     { "AT+BIEV=",  HFP_CMD_HF_INDICATOR_STATUS },
109094a27792SMatthias Ringwald     { "AT+BIND=",  HFP_CMD_LIST_GENERIC_STATUS_INDICATORS },
109194a27792SMatthias Ringwald     { "AT+BIND=?", HFP_CMD_RETRIEVE_GENERIC_STATUS_INDICATORS },
109294a27792SMatthias Ringwald     { "AT+BIND?",  HFP_CMD_RETRIEVE_GENERIC_STATUS_INDICATORS_STATE },
1093051f797dSMilanka Ringwald     { "AT+BINP=",  HFP_CMD_HF_REQUEST_PHONE_NUMBER },
1094cb33905eSMatthias Ringwald     { "AT+BLDN",   HFP_CMD_REDIAL_LAST_NUMBER },
1095cb33905eSMatthias Ringwald     { "AT+BRSF=",  HFP_CMD_SUPPORTED_FEATURES },
109694a27792SMatthias Ringwald     { "AT+BTRH=",  HFP_CMD_RESPONSE_AND_HOLD_COMMAND },
109794a27792SMatthias Ringwald     { "AT+BTRH?",  HFP_CMD_RESPONSE_AND_HOLD_QUERY },
10989ed286f3SMilanka Ringwald     { "AT+BVRA=",  HFP_CMD_HF_ACTIVATE_VOICE_RECOGNITION },
1099cb33905eSMatthias Ringwald     { "AT+CCWA=",  HFP_CMD_ENABLE_CALL_WAITING_NOTIFICATION},
110094a27792SMatthias Ringwald     { "AT+CHLD=",  HFP_CMD_CALL_HOLD },
110194a27792SMatthias Ringwald     { "AT+CHLD=?", HFP_CMD_SUPPORT_CALL_HOLD_AND_MULTIPARTY_SERVICES },
1102cb33905eSMatthias Ringwald     { "AT+CHUP",   HFP_CMD_HANG_UP_CALL },
110394a27792SMatthias Ringwald     { "AT+CIND=?", HFP_CMD_RETRIEVE_AG_INDICATORS },
110494a27792SMatthias Ringwald     { "AT+CIND?",  HFP_CMD_RETRIEVE_AG_INDICATORS_STATUS },
1105cb33905eSMatthias Ringwald     { "AT+CLCC",   HFP_CMD_LIST_CURRENT_CALLS },
1106cb33905eSMatthias Ringwald     { "AT+CLIP=",  HFP_CMD_ENABLE_CLIP},
1107cb33905eSMatthias Ringwald     { "AT+CMEE=",  HFP_CMD_ENABLE_EXTENDED_AUDIO_GATEWAY_ERROR},
1108cb33905eSMatthias Ringwald     { "AT+CMER=",  HFP_CMD_ENABLE_INDICATOR_STATUS_UPDATE },
1109cb33905eSMatthias Ringwald     { "AT+CNUM",   HFP_CMD_GET_SUBSCRIBER_NUMBER_INFORMATION },
111094a27792SMatthias Ringwald     { "AT+COPS=",  HFP_CMD_QUERY_OPERATOR_SELECTION_NAME_FORMAT },
111194a27792SMatthias Ringwald     { "AT+COPS?",  HFP_CMD_QUERY_OPERATOR_SELECTION_NAME },
1112cb33905eSMatthias Ringwald     { "AT+NREC=",  HFP_CMD_TURN_OFF_EC_AND_NR, },
1113cb33905eSMatthias Ringwald     { "AT+VGM=",   HFP_CMD_SET_MICROPHONE_GAIN },
1114cb33905eSMatthias Ringwald     { "AT+VGS=",   HFP_CMD_SET_SPEAKER_GAIN },
1115d8656ee6SMilanka Ringwald     { "AT+VTS=",   HFP_CMD_TRANSMIT_DTMF_CODES },
111694a27792SMatthias Ringwald     { "ATA",       HFP_CMD_CALL_ANSWERED },
111794a27792SMatthias Ringwald };
111894a27792SMatthias Ringwald 
111994a27792SMatthias Ringwald static hfp_command_entry_t hfp_hf_commmand_table[] = {
1120cb33905eSMatthias Ringwald     { "+BCS:",  HFP_CMD_AG_SUGGESTED_CODEC },
112194a27792SMatthias Ringwald     { "+BIND:", HFP_CMD_SET_GENERIC_STATUS_INDICATOR_STATUS },
1122cb33905eSMatthias Ringwald     { "+BINP",  HFP_CMD_AG_SENT_PHONE_NUMBER },
1123cb33905eSMatthias Ringwald     { "+BRSF:", HFP_CMD_SUPPORTED_FEATURES },
1124cb33905eSMatthias Ringwald     { "+BSIR:", HFP_CMD_CHANGE_IN_BAND_RING_TONE_SETTING },
112594a27792SMatthias Ringwald     { "+BTRH:", HFP_CMD_RESPONSE_AND_HOLD_STATUS },
1126cb33905eSMatthias Ringwald     { "+BVRA:", HFP_CMD_AG_ACTIVATE_VOICE_RECOGNITION },
1127cb33905eSMatthias Ringwald     { "+CCWA:", HFP_CMD_AG_SENT_CALL_WAITING_NOTIFICATION_UPDATE, },
112894a27792SMatthias Ringwald     { "+CHLD:", HFP_CMD_SUPPORT_CALL_HOLD_AND_MULTIPARTY_SERVICES },
1129cb33905eSMatthias Ringwald     { "+CIEV:", HFP_CMD_TRANSFER_AG_INDICATOR_STATUS},
113084a0c24eSMatthias Ringwald     { "+CIND:", HFP_CMD_RETRIEVE_AG_INDICATORS_GENERIC },
1131cb33905eSMatthias Ringwald     { "+CLCC:", HFP_CMD_LIST_CURRENT_CALLS },
1132cb33905eSMatthias Ringwald     { "+CLIP:", HFP_CMD_AG_SENT_CLIP_INFORMATION },
1133cb33905eSMatthias Ringwald     { "+CME ERROR:", HFP_CMD_EXTENDED_AUDIO_GATEWAY_ERROR },
1134cb33905eSMatthias Ringwald     { "+CNUM:", HFP_CMD_GET_SUBSCRIBER_NUMBER_INFORMATION},
1135cb33905eSMatthias Ringwald     { "+COPS:", HFP_CMD_QUERY_OPERATOR_SELECTION_NAME },
1136cb33905eSMatthias Ringwald     { "+VGM:",  HFP_CMD_SET_MICROPHONE_GAIN },
1137ce284ffbSMatthias Ringwald     { "+VGM=",  HFP_CMD_SET_MICROPHONE_GAIN },
11384c30d2d1SMatthias Ringwald     { "+VGS:",  HFP_CMD_SET_SPEAKER_GAIN},
1139ce284ffbSMatthias Ringwald     { "+VGS=",  HFP_CMD_SET_SPEAKER_GAIN},
1140cb33905eSMatthias Ringwald     { "ERROR",  HFP_CMD_ERROR},
1141cb33905eSMatthias Ringwald     { "NOP",    HFP_CMD_NONE}, // dummy command used by unit tests
1142cb33905eSMatthias Ringwald     { "OK",     HFP_CMD_OK },
1143cb33905eSMatthias Ringwald     { "RING",   HFP_CMD_RING },
114494a27792SMatthias Ringwald };
114594a27792SMatthias Ringwald 
1146aa4dd815SMatthias Ringwald static hfp_command_t parse_command(const char * line_buffer, int isHandsFree){
11473deb3ec6SMatthias Ringwald 
1148cb33905eSMatthias Ringwald     // table lookup based on role
114994a27792SMatthias Ringwald     uint16_t num_entries;
115094a27792SMatthias Ringwald     hfp_command_entry_t * table;
115194a27792SMatthias Ringwald     if (isHandsFree == 0){
115294a27792SMatthias Ringwald         table = hfp_ag_commmand_table;
115394a27792SMatthias Ringwald         num_entries = sizeof(hfp_ag_commmand_table) / sizeof(hfp_command_entry_t);
11543deb3ec6SMatthias Ringwald     } else {
115594a27792SMatthias Ringwald         table = hfp_hf_commmand_table;
115694a27792SMatthias Ringwald         num_entries = sizeof(hfp_hf_commmand_table) / sizeof(hfp_command_entry_t);
115794a27792SMatthias Ringwald     }
1158791f0d0aSMatthias Ringwald     // binary search
1159791f0d0aSMatthias Ringwald     uint16_t left = 0;
1160791f0d0aSMatthias Ringwald     uint16_t right = num_entries - 1;
1161791f0d0aSMatthias Ringwald     while (left <= right){
1162791f0d0aSMatthias Ringwald         uint16_t middle = left + (right - left) / 2;
1163791f0d0aSMatthias Ringwald         hfp_command_entry_t *entry = &table[middle];
116494a27792SMatthias Ringwald         int match = strcmp(line_buffer, entry->command);
1165791f0d0aSMatthias Ringwald         if (match < 0){
1166791f0d0aSMatthias Ringwald             // search term is lower than middle element
116747005182SMilanka Ringwald             if (right == 0) break;
1168791f0d0aSMatthias Ringwald             right = middle - 1;
1169791f0d0aSMatthias Ringwald         } else if (match == 0){
117094a27792SMatthias Ringwald             return entry->command_id;
1171791f0d0aSMatthias Ringwald         } else {
1172791f0d0aSMatthias Ringwald             // search term is higher than middle element
1173791f0d0aSMatthias Ringwald             left = middle + 1;
117494a27792SMatthias Ringwald         }
117594a27792SMatthias Ringwald     }
117694a27792SMatthias Ringwald 
1177cb33905eSMatthias Ringwald     // note: if parser in CMD_HEADER state would treats digits and maybe '+' as separator, match on "ATD" would work.
11780222a807SMatthias Ringwald     // note: phone number is currently expected in line_buffer[3..]
1179cb33905eSMatthias Ringwald     // prefix match on 'ATD', AG only
1180cb33905eSMatthias Ringwald     if ((isHandsFree == 0) && (strncmp(line_buffer, HFP_CALL_PHONE_NUMBER, strlen(HFP_CALL_PHONE_NUMBER)) == 0)){
1181cb33905eSMatthias Ringwald         return HFP_CMD_CALL_PHONE_NUMBER;
11823deb3ec6SMatthias Ringwald     }
11833deb3ec6SMatthias Ringwald 
1184cb33905eSMatthias Ringwald     // Valid looking, but unknown commands/responses
1185cb33905eSMatthias Ringwald     if ((isHandsFree == 0) && (strncmp(line_buffer, "AT+", 3) == 0)){
1186aa4dd815SMatthias Ringwald         return HFP_CMD_UNKNOWN;
11873deb3ec6SMatthias Ringwald     }
11883deb3ec6SMatthias Ringwald 
1189cb33905eSMatthias Ringwald     if ((isHandsFree != 0) && (strncmp(line_buffer, "+", 1) == 0)){
1190aa4dd815SMatthias Ringwald         return HFP_CMD_UNKNOWN;
1191aa4dd815SMatthias Ringwald     }
11923deb3ec6SMatthias Ringwald 
1193aa4dd815SMatthias Ringwald     return HFP_CMD_NONE;
11943deb3ec6SMatthias Ringwald }
11953deb3ec6SMatthias Ringwald 
1196a0ffb263SMatthias Ringwald static void hfp_parser_store_byte(hfp_connection_t * hfp_connection, uint8_t byte){
119751aa5d5aSMilanka Ringwald     if ((hfp_connection->line_size + 1) >= HFP_MAX_VR_TEXT_SIZE) return;
1198a0ffb263SMatthias Ringwald     hfp_connection->line_buffer[hfp_connection->line_size++] = byte;
1199a0ffb263SMatthias Ringwald     hfp_connection->line_buffer[hfp_connection->line_size] = 0;
12003deb3ec6SMatthias Ringwald }
1201a0ffb263SMatthias Ringwald static int hfp_parser_is_buffer_empty(hfp_connection_t * hfp_connection){
1202a0ffb263SMatthias Ringwald     return hfp_connection->line_size == 0;
12033deb3ec6SMatthias Ringwald }
12043deb3ec6SMatthias Ringwald 
12053deb3ec6SMatthias Ringwald static int hfp_parser_is_end_of_line(uint8_t byte){
1206c1ab6cc1SMatthias Ringwald     return (byte == '\n') || (byte == '\r');
12073deb3ec6SMatthias Ringwald }
12083deb3ec6SMatthias Ringwald 
120994a27792SMatthias Ringwald static void hfp_parser_reset_line_buffer(hfp_connection_t *hfp_connection) {
1210a0ffb263SMatthias Ringwald     hfp_connection->line_size = 0;
1211*125560b8SMatthias Ringwald     // we don't set the first byte to '\0' to allow access to last argument e.g. in hfp_hf_handle_rfcommand
12123deb3ec6SMatthias Ringwald }
12131d81c7feSMatthias Ringwald 
12141d81c7feSMatthias Ringwald static void hfp_parser_store_if_token(hfp_connection_t * hfp_connection, uint8_t byte){
12151d81c7feSMatthias Ringwald     switch (byte){
12161d81c7feSMatthias Ringwald         case ',':
1217f8301d46SMatthias Ringwald 		case '-':
12181d81c7feSMatthias Ringwald         case ';':
12191d81c7feSMatthias Ringwald         case '(':
12201d81c7feSMatthias Ringwald         case ')':
12211d81c7feSMatthias Ringwald         case '\n':
12221d81c7feSMatthias Ringwald         case '\r':
12233deb3ec6SMatthias Ringwald             break;
12243deb3ec6SMatthias Ringwald         default:
12251d81c7feSMatthias Ringwald             hfp_parser_store_byte(hfp_connection, byte);
12263deb3ec6SMatthias Ringwald             break;
12273deb3ec6SMatthias Ringwald     }
12283deb3ec6SMatthias Ringwald }
12291d81c7feSMatthias Ringwald 
12301d81c7feSMatthias Ringwald static bool hfp_parser_is_separator( uint8_t byte){
12311d81c7feSMatthias Ringwald     switch (byte){
12321d81c7feSMatthias Ringwald         case ',':
1233f8301d46SMatthias Ringwald 		case '-':
12341d81c7feSMatthias Ringwald         case ';':
12351d81c7feSMatthias Ringwald         case '\n':
12361d81c7feSMatthias Ringwald         case '\r':
12371d81c7feSMatthias Ringwald             return true;
1238dd533208SMatthias Ringwald         default:
12391d81c7feSMatthias Ringwald             return false;
12403deb3ec6SMatthias Ringwald     }
12413deb3ec6SMatthias Ringwald }
12423deb3ec6SMatthias Ringwald 
1243d6b237acSMatthias Ringwald static bool hfp_parse_byte(hfp_connection_t * hfp_connection, uint8_t byte, int isHandsFree){
1244aa4dd815SMatthias Ringwald 
12451dddc4f4SMatthias Ringwald     // handle doubles quotes
12461dddc4f4SMatthias Ringwald     if (byte == '"'){
12471dddc4f4SMatthias Ringwald         hfp_connection->parser_quoted = !hfp_connection->parser_quoted;
1248d6b237acSMatthias Ringwald         return true;
12491dddc4f4SMatthias Ringwald     }
12501dddc4f4SMatthias Ringwald     if (hfp_connection->parser_quoted) {
12511dddc4f4SMatthias Ringwald         hfp_parser_store_byte(hfp_connection, byte);
1252d6b237acSMatthias Ringwald         return true;
12531dddc4f4SMatthias Ringwald     }
12543deb3ec6SMatthias Ringwald 
12551dddc4f4SMatthias Ringwald     // ignore spaces outside command or double quotes (required e.g. for '+CME ERROR:..") command
1256d6b237acSMatthias Ringwald     if ((byte == ' ') && (hfp_connection->parser_state != HFP_PARSER_CMD_HEADER)) return true;
12571dddc4f4SMatthias Ringwald 
1258bfeaf344SMatthias Ringwald     bool processed = true;
1259bfeaf344SMatthias Ringwald 
1260a0ffb263SMatthias Ringwald     switch (hfp_connection->parser_state) {
1261dd533208SMatthias Ringwald         case HFP_PARSER_CMD_HEADER:
1262d28b2d5dSMilanka Ringwald             switch (byte) {
1263dd533208SMatthias Ringwald                 case '\n':
1264dd533208SMatthias Ringwald                 case '\r':
1265dd533208SMatthias Ringwald                 case ';':
1266bfeaf344SMatthias Ringwald                     // ignore separator
1267bfeaf344SMatthias Ringwald                     break;
1268bfeaf344SMatthias Ringwald                 case ':':
1269bfeaf344SMatthias Ringwald                 case '?':
1270bfeaf344SMatthias Ringwald                     // store separator
1271bfeaf344SMatthias Ringwald                     hfp_parser_store_byte(hfp_connection, byte);
1272dd533208SMatthias Ringwald                     break;
1273d28b2d5dSMilanka Ringwald                 case '=':
1274bfeaf344SMatthias Ringwald                     // equal sign: remember and wait for next char to decided between '=?' and '=\?'
1275dd533208SMatthias Ringwald                     hfp_connection->found_equal_sign = true;
1276a0ffb263SMatthias Ringwald                     hfp_parser_store_byte(hfp_connection, byte);
1277d6b237acSMatthias Ringwald                     return true;
1278d28b2d5dSMilanka Ringwald                 default:
1279bfeaf344SMatthias Ringwald                     // store if not lookahead
1280d7f16ff1SMatthias Ringwald                     if (!hfp_connection->found_equal_sign) {
1281dd533208SMatthias Ringwald                         hfp_parser_store_byte(hfp_connection, byte);
1282d6b237acSMatthias Ringwald                         return true;
1283dd533208SMatthias Ringwald                     }
1284bfeaf344SMatthias Ringwald                     // mark as lookahead
1285bfeaf344SMatthias Ringwald                     processed = false;
1286d7f16ff1SMatthias Ringwald                     break;
1287d7f16ff1SMatthias Ringwald             }
1288ce263fc8SMatthias Ringwald 
12891d81c7feSMatthias Ringwald             // ignore empty tokens
1290d6b237acSMatthias Ringwald             if (hfp_parser_is_buffer_empty(hfp_connection)) return true;
1291dd533208SMatthias Ringwald 
1292bfeaf344SMatthias Ringwald             // parse
1293dd533208SMatthias Ringwald             hfp_connection->command = parse_command((char *)hfp_connection->line_buffer, isHandsFree);
1294aa4dd815SMatthias Ringwald 
129584a0c24eSMatthias Ringwald             // pick +CIND version based on connection state: descriptions during SLC vs. states later
129684a0c24eSMatthias Ringwald             if (hfp_connection->command == HFP_CMD_RETRIEVE_AG_INDICATORS_GENERIC){
1297a0ffb263SMatthias Ringwald                 switch(hfp_connection->state){
1298aa4dd815SMatthias Ringwald                     case HFP_W4_RETRIEVE_INDICATORS_STATUS:
1299a0ffb263SMatthias Ringwald                         hfp_connection->command = HFP_CMD_RETRIEVE_AG_INDICATORS_STATUS;
1300aa4dd815SMatthias Ringwald                         break;
1301aa4dd815SMatthias Ringwald                     case HFP_W4_RETRIEVE_INDICATORS:
1302a0ffb263SMatthias Ringwald                         hfp_connection->command = HFP_CMD_RETRIEVE_AG_INDICATORS;
1303aa4dd815SMatthias Ringwald                         break;
1304aa4dd815SMatthias Ringwald                     default:
130584a0c24eSMatthias Ringwald                         hfp_connection->command = HFP_CMD_UNKNOWN;
1306aa4dd815SMatthias Ringwald                         break;
1307aa4dd815SMatthias Ringwald                 }
1308aa4dd815SMatthias Ringwald             }
13093deb3ec6SMatthias Ringwald 
1310c0c0437aSMatthias Ringwald             log_info("command string '%s', handsfree %u -> cmd id %u", (char *)hfp_connection->line_buffer, isHandsFree, hfp_connection->command);
1311c0c0437aSMatthias Ringwald 
1312bfeaf344SMatthias Ringwald             // next state
1313bfeaf344SMatthias Ringwald             hfp_connection->found_equal_sign = false;
13141d81c7feSMatthias Ringwald             hfp_parser_reset_line_buffer(hfp_connection);
1315dd533208SMatthias Ringwald             hfp_connection->parser_state = HFP_PARSER_CMD_SEQUENCE;
1316dd533208SMatthias Ringwald 
1317bfeaf344SMatthias Ringwald             return processed;
1318dd533208SMatthias Ringwald 
1319bfeaf344SMatthias Ringwald         case HFP_PARSER_CMD_SEQUENCE:
13201d81c7feSMatthias Ringwald             // handle empty fields
13211d81c7feSMatthias Ringwald             if ((byte == ',' ) && (hfp_connection->line_size == 0)){
1322dd533208SMatthias Ringwald                 hfp_connection->line_buffer[0] = 0;
1323dd533208SMatthias Ringwald                 hfp_connection->ignore_value = 1;
1324dd533208SMatthias Ringwald                 parse_sequence(hfp_connection);
13253d051a53SMatthias Ringwald                 return true;
13263d051a53SMatthias Ringwald             }
13273d051a53SMatthias Ringwald 
13281d81c7feSMatthias Ringwald             hfp_parser_store_if_token(hfp_connection, byte);
13291d81c7feSMatthias Ringwald             if (!hfp_parser_is_separator(byte)) return true;
13301d81c7feSMatthias Ringwald 
13311d81c7feSMatthias Ringwald             // ignore empty tokens
133289e7c136SMilanka Ringwald             switch (hfp_connection->command){
133389e7c136SMilanka Ringwald                 case HFP_CMD_AG_ACTIVATE_VOICE_RECOGNITION:
133489e7c136SMilanka Ringwald                     // don't ignore empty string
133589e7c136SMilanka Ringwald                     break;
133689e7c136SMilanka Ringwald                 default:
133789e7c136SMilanka Ringwald                     if (hfp_parser_is_buffer_empty(hfp_connection) && (hfp_connection->ignore_value == 0)) {
133889e7c136SMilanka Ringwald                         return true;
133989e7c136SMilanka Ringwald                     }
134089e7c136SMilanka Ringwald                     break;
134189e7c136SMilanka Ringwald             }
13423d051a53SMatthias Ringwald 
13433d051a53SMatthias Ringwald             parse_sequence(hfp_connection);
13441d81c7feSMatthias Ringwald 
13451d81c7feSMatthias Ringwald             hfp_parser_reset_line_buffer(hfp_connection);
13461d81c7feSMatthias Ringwald 
13471d81c7feSMatthias Ringwald             switch (hfp_connection->command){
13481d81c7feSMatthias Ringwald                 case HFP_CMD_AG_SENT_PHONE_NUMBER:
13491d81c7feSMatthias Ringwald                 case HFP_CMD_AG_SENT_CALL_WAITING_NOTIFICATION_UPDATE:
13501d81c7feSMatthias Ringwald                 case HFP_CMD_AG_SENT_CLIP_INFORMATION:
13511d81c7feSMatthias Ringwald                 case HFP_CMD_TRANSFER_AG_INDICATOR_STATUS:
13521d81c7feSMatthias Ringwald                 case HFP_CMD_QUERY_OPERATOR_SELECTION_NAME:
13531d81c7feSMatthias Ringwald                 case HFP_CMD_QUERY_OPERATOR_SELECTION_NAME_FORMAT:
13541d81c7feSMatthias Ringwald                 case HFP_CMD_RETRIEVE_AG_INDICATORS:
13551d81c7feSMatthias Ringwald                 case HFP_CMD_RETRIEVE_GENERIC_STATUS_INDICATORS_STATE:
13561d81c7feSMatthias Ringwald                 case HFP_CMD_HF_INDICATOR_STATUS:
13571d81c7feSMatthias Ringwald                     hfp_connection->parser_state = HFP_PARSER_SECOND_ITEM;
13581d81c7feSMatthias Ringwald                     break;
13591d81c7feSMatthias Ringwald                 default:
13601d81c7feSMatthias Ringwald                     break;
13611d81c7feSMatthias Ringwald             }
13623d051a53SMatthias Ringwald             return true;
13633d051a53SMatthias Ringwald 
1364ba0de059SMatthias Ringwald         case HFP_PARSER_SECOND_ITEM:
13651d81c7feSMatthias Ringwald 
13661d81c7feSMatthias Ringwald             hfp_parser_store_if_token(hfp_connection, byte);
13671d81c7feSMatthias Ringwald             if (!hfp_parser_is_separator(byte)) return true;
1368dd533208SMatthias Ringwald 
1369a0ffb263SMatthias Ringwald             switch (hfp_connection->command){
1370ce263fc8SMatthias Ringwald                 case HFP_CMD_QUERY_OPERATOR_SELECTION_NAME:
1371a0ffb263SMatthias Ringwald                     log_info("format %s, ", hfp_connection->line_buffer);
13722308e108SMilanka Ringwald                     hfp_connection->network_operator.format =  btstack_atoi((char *)&hfp_connection->line_buffer[0]);
1373ce263fc8SMatthias Ringwald                     break;
1374ce263fc8SMatthias Ringwald                 case HFP_CMD_QUERY_OPERATOR_SELECTION_NAME_FORMAT:
1375a0ffb263SMatthias Ringwald                     log_info("format %s \n", hfp_connection->line_buffer);
13762308e108SMilanka Ringwald                     hfp_connection->network_operator.format =  btstack_atoi((char *)&hfp_connection->line_buffer[0]);
1377ce263fc8SMatthias Ringwald                     break;
1378ce263fc8SMatthias Ringwald                 case HFP_CMD_LIST_GENERIC_STATUS_INDICATORS:
1379ce263fc8SMatthias Ringwald                 case HFP_CMD_RETRIEVE_GENERIC_STATUS_INDICATORS:
1380ce263fc8SMatthias Ringwald                 case HFP_CMD_RETRIEVE_GENERIC_STATUS_INDICATORS_STATE:
13812308e108SMilanka Ringwald                     hfp_connection->generic_status_indicators[hfp_connection->parser_item_index].state = (uint8_t)btstack_atoi((char*)hfp_connection->line_buffer);
1382ce263fc8SMatthias Ringwald                     break;
1383ce263fc8SMatthias Ringwald                 case HFP_CMD_TRANSFER_AG_INDICATOR_STATUS:
13842308e108SMilanka Ringwald                     hfp_connection->ag_indicators[hfp_connection->parser_item_index].status = (uint8_t)btstack_atoi((char*)hfp_connection->line_buffer);
1385a0ffb263SMatthias Ringwald                     log_info("%d \n", hfp_connection->ag_indicators[hfp_connection->parser_item_index].status);
1386a0ffb263SMatthias Ringwald                     hfp_connection->ag_indicators[hfp_connection->parser_item_index].status_changed = 1;
1387ce263fc8SMatthias Ringwald                     break;
1388ce263fc8SMatthias Ringwald                 case HFP_CMD_RETRIEVE_AG_INDICATORS:
13892308e108SMilanka Ringwald                     hfp_connection->ag_indicators[hfp_connection->parser_item_index].min_range = btstack_atoi((char *)hfp_connection->line_buffer);
1390a0ffb263SMatthias Ringwald                     log_info("%s, ", hfp_connection->line_buffer);
1391ce263fc8SMatthias Ringwald                     break;
1392ce263fc8SMatthias Ringwald                 case HFP_CMD_AG_SENT_PHONE_NUMBER:
1393a0ffb263SMatthias Ringwald                 case HFP_CMD_AG_SENT_CALL_WAITING_NOTIFICATION_UPDATE:
1394a0ffb263SMatthias Ringwald                 case HFP_CMD_AG_SENT_CLIP_INFORMATION:
13952308e108SMilanka Ringwald                     hfp_connection->bnip_type = (uint8_t)btstack_atoi((char*)hfp_connection->line_buffer);
1396ce263fc8SMatthias Ringwald                     break;
13970222a807SMatthias Ringwald                 case HFP_CMD_HF_INDICATOR_STATUS:
13980222a807SMatthias Ringwald                     hfp_connection->parser_indicator_value = btstack_atoi((char *)&hfp_connection->line_buffer[0]);
13990222a807SMatthias Ringwald                     break;
1400ce263fc8SMatthias Ringwald                 default:
1401ce263fc8SMatthias Ringwald                     break;
1402ce263fc8SMatthias Ringwald             }
14031d81c7feSMatthias Ringwald 
14041d81c7feSMatthias Ringwald             hfp_parser_reset_line_buffer(hfp_connection);
14051d81c7feSMatthias Ringwald 
14061d81c7feSMatthias Ringwald             hfp_connection->parser_state = HFP_PARSER_THIRD_ITEM;
14071d81c7feSMatthias Ringwald 
1408ba0de059SMatthias Ringwald             return true;
1409ce263fc8SMatthias Ringwald 
141074c7548aSMatthias Ringwald         case HFP_PARSER_THIRD_ITEM:
14111d81c7feSMatthias Ringwald 
14121d81c7feSMatthias Ringwald             hfp_parser_store_if_token(hfp_connection, byte);
14131d81c7feSMatthias Ringwald             if (!hfp_parser_is_separator(byte)) return true;
14141d81c7feSMatthias Ringwald 
1415a0ffb263SMatthias Ringwald             switch (hfp_connection->command){
1416ce263fc8SMatthias Ringwald                 case HFP_CMD_QUERY_OPERATOR_SELECTION_NAME:
1417c10fde09SMatthias Ringwald                     btstack_strcpy(hfp_connection->network_operator.name, HFP_MAX_NETWORK_OPERATOR_NAME_SIZE,  (char *)hfp_connection->line_buffer);
1418ce263fc8SMatthias Ringwald                     break;
1419ce263fc8SMatthias Ringwald                 case HFP_CMD_RETRIEVE_AG_INDICATORS:
14202308e108SMilanka Ringwald                     hfp_connection->ag_indicators[hfp_connection->parser_item_index].max_range = btstack_atoi((char *)hfp_connection->line_buffer);
142125789943SMilanka Ringwald                     hfp_next_indicators_index(hfp_connection);
142225789943SMilanka Ringwald                     hfp_connection->ag_indicators_nr = hfp_connection->parser_item_index;
1423ce263fc8SMatthias Ringwald                     break;
1424*125560b8SMatthias Ringwald                 case HFP_CMD_AG_SENT_CLIP_INFORMATION:
1425*125560b8SMatthias Ringwald                     // track if last argument exists
1426*125560b8SMatthias Ringwald                     hfp_connection->clip_have_alpha = hfp_connection->line_size != 0;
1427*125560b8SMatthias Ringwald                     break;
1428ce263fc8SMatthias Ringwald                 default:
1429ce263fc8SMatthias Ringwald                     break;
1430ce263fc8SMatthias Ringwald             }
14311d81c7feSMatthias Ringwald 
14321d81c7feSMatthias Ringwald             hfp_parser_reset_line_buffer(hfp_connection);
14331d81c7feSMatthias Ringwald 
14341d81c7feSMatthias Ringwald             if (hfp_connection->command == HFP_CMD_RETRIEVE_AG_INDICATORS){
14351d81c7feSMatthias Ringwald                 hfp_connection->parser_state = HFP_PARSER_CMD_SEQUENCE;
14361d81c7feSMatthias Ringwald             }
1437d6b237acSMatthias Ringwald             return true;
143874c7548aSMatthias Ringwald 
143974c7548aSMatthias Ringwald         default:
144074c7548aSMatthias Ringwald             btstack_assert(false);
144174c7548aSMatthias Ringwald             return true;
144274c7548aSMatthias Ringwald     }
1443d6b237acSMatthias Ringwald }
1444d6b237acSMatthias Ringwald 
1445d6b237acSMatthias Ringwald void hfp_parse(hfp_connection_t * hfp_connection, uint8_t byte, int isHandsFree){
1446d6b237acSMatthias Ringwald     bool processed = false;
1447d6b237acSMatthias Ringwald     while (!processed){
1448d6b237acSMatthias Ringwald         processed = hfp_parse_byte(hfp_connection, byte, isHandsFree);
1449d6b237acSMatthias Ringwald     }
14501d81c7feSMatthias Ringwald     // reset parser state on end-of-line
14511d81c7feSMatthias Ringwald     if (hfp_parser_is_end_of_line(byte)){
14521d81c7feSMatthias Ringwald         hfp_connection->parser_item_index = 0;
14531d81c7feSMatthias Ringwald         hfp_connection->parser_state = HFP_PARSER_CMD_HEADER;
14541d81c7feSMatthias Ringwald     }
1455ce263fc8SMatthias Ringwald }
1456ce263fc8SMatthias Ringwald 
1457a0ffb263SMatthias Ringwald static void parse_sequence(hfp_connection_t * hfp_connection){
1458ce263fc8SMatthias Ringwald     int value;
1459a0ffb263SMatthias Ringwald     switch (hfp_connection->command){
1460667ec068SMatthias Ringwald         case HFP_CMD_SET_GENERIC_STATUS_INDICATOR_STATUS:
14612308e108SMilanka Ringwald             value = btstack_atoi((char *)&hfp_connection->line_buffer[0]);
1462667ec068SMatthias Ringwald             int i;
1463a0ffb263SMatthias Ringwald             switch (hfp_connection->parser_item_index){
1464667ec068SMatthias Ringwald                 case 0:
1465a0ffb263SMatthias Ringwald                     for (i=0;i<hfp_connection->generic_status_indicators_nr;i++){
1466a0ffb263SMatthias Ringwald                         if (hfp_connection->generic_status_indicators[i].uuid == value){
1467a0ffb263SMatthias Ringwald                             hfp_connection->parser_indicator_index = i;
1468667ec068SMatthias Ringwald                             break;
1469667ec068SMatthias Ringwald                         }
1470667ec068SMatthias Ringwald                     }
1471667ec068SMatthias Ringwald                     break;
1472667ec068SMatthias Ringwald                 case 1:
1473a0ffb263SMatthias Ringwald                     if (hfp_connection->parser_indicator_index <0) break;
1474a0ffb263SMatthias Ringwald                     hfp_connection->generic_status_indicators[hfp_connection->parser_indicator_index].state = value;
1475667ec068SMatthias Ringwald                     log_info("HFP_CMD_SET_GENERIC_STATUS_INDICATOR_STATUS set indicator at index %u, to %u\n",
1476a0ffb263SMatthias Ringwald                      hfp_connection->parser_item_index, value);
1477667ec068SMatthias Ringwald                     break;
1478667ec068SMatthias Ringwald                 default:
1479667ec068SMatthias Ringwald                     break;
1480667ec068SMatthias Ringwald             }
148125789943SMilanka Ringwald             hfp_next_indicators_index(hfp_connection);
1482667ec068SMatthias Ringwald             break;
1483667ec068SMatthias Ringwald 
1484667ec068SMatthias Ringwald         case HFP_CMD_GET_SUBSCRIBER_NUMBER_INFORMATION:
1485a0ffb263SMatthias Ringwald             switch(hfp_connection->parser_item_index){
1486667ec068SMatthias Ringwald                 case 0:
148728a4aea3SMilanka Ringwald                     // <alpha>: This optional field is not supported, and shall be left blank.
148828a4aea3SMilanka Ringwald                     break;
148928a4aea3SMilanka Ringwald                 case 1:
149028a4aea3SMilanka Ringwald                     // <number>: Quoted string containing the phone number in the format specified by <type>.
1491c10fde09SMatthias Ringwald                     btstack_strcpy(hfp_connection->bnip_number, sizeof(hfp_connection->bnip_number), (char *)hfp_connection->line_buffer);
1492667ec068SMatthias Ringwald                     break;
149328a4aea3SMilanka Ringwald                 case 2:
149428a4aea3SMilanka Ringwald                     /*
149528a4aea3SMilanka Ringwald                       <type> field specifies the format of the phone number provided, and can be one of the following values:
149628a4aea3SMilanka Ringwald                       - values 128-143: The phone number format may be a national or international format, and may contain prefix and/or escape digits. No changes on the number presentation are required.
149728a4aea3SMilanka Ringwald                      - values 144-159: The phone number format is an international number, including the country code prefix. If the plus sign ("+") is not included as part of the number and shall be added by the AG as needed.
149828a4aea3SMilanka Ringwald                      - values 160-175: National number. No prefix nor escape digits included.
149928a4aea3SMilanka Ringwald                      */
15002308e108SMilanka Ringwald                     value = btstack_atoi((char *)&hfp_connection->line_buffer[0]);
1501a0ffb263SMatthias Ringwald                     hfp_connection->bnip_type = value;
1502667ec068SMatthias Ringwald                     break;
150328a4aea3SMilanka Ringwald                 case 3:
150428a4aea3SMilanka Ringwald                     // <speed>: This optional field is not supported, and shall be left blank.
150528a4aea3SMilanka Ringwald                     break;
150628a4aea3SMilanka Ringwald                 case 4:
150728a4aea3SMilanka Ringwald                     // <service>: Indicates which service this phone number relates to. Shall be either 4 (voice) or 5 (fax).
1508667ec068SMatthias Ringwald                 default:
1509667ec068SMatthias Ringwald                     break;
1510667ec068SMatthias Ringwald             }
1511eed67a37SMilanka Ringwald             // index > 2 are ignored in switch above
1512a0ffb263SMatthias Ringwald             hfp_connection->parser_item_index++;
1513667ec068SMatthias Ringwald             break;
1514667ec068SMatthias Ringwald         case HFP_CMD_LIST_CURRENT_CALLS:
1515a0ffb263SMatthias Ringwald             switch(hfp_connection->parser_item_index){
1516667ec068SMatthias Ringwald                 case 0:
15172308e108SMilanka Ringwald                     value = btstack_atoi((char *)&hfp_connection->line_buffer[0]);
1518a0ffb263SMatthias Ringwald                     hfp_connection->clcc_idx = value;
1519667ec068SMatthias Ringwald                     break;
1520667ec068SMatthias Ringwald                 case 1:
15212308e108SMilanka Ringwald                     value = btstack_atoi((char *)&hfp_connection->line_buffer[0]);
1522a0ffb263SMatthias Ringwald                     hfp_connection->clcc_dir = value;
1523667ec068SMatthias Ringwald                     break;
1524667ec068SMatthias Ringwald                 case 2:
15252308e108SMilanka Ringwald                     value = btstack_atoi((char *)&hfp_connection->line_buffer[0]);
1526a0ffb263SMatthias Ringwald                     hfp_connection->clcc_status = value;
1527667ec068SMatthias Ringwald                     break;
1528667ec068SMatthias Ringwald                 case 3:
15292308e108SMilanka Ringwald                     value = btstack_atoi((char *)&hfp_connection->line_buffer[0]);
15300aee97efSMilanka Ringwald                     hfp_connection->clcc_mode = value;
1531667ec068SMatthias Ringwald                     break;
1532667ec068SMatthias Ringwald                 case 4:
15330aee97efSMilanka Ringwald                     value = btstack_atoi((char *)&hfp_connection->line_buffer[0]);
15340aee97efSMilanka Ringwald                     hfp_connection->clcc_mpty = value;
15350aee97efSMilanka Ringwald                     break;
15360aee97efSMilanka Ringwald                 case 5:
1537c10fde09SMatthias Ringwald                     btstack_strcpy(hfp_connection->bnip_number, sizeof(hfp_connection->bnip_number), (char *)hfp_connection->line_buffer);
1538667ec068SMatthias Ringwald                     break;
15390aee97efSMilanka Ringwald                 case 6:
15402308e108SMilanka Ringwald                     value = btstack_atoi((char *)&hfp_connection->line_buffer[0]);
1541a0ffb263SMatthias Ringwald                     hfp_connection->bnip_type = value;
1542667ec068SMatthias Ringwald                     break;
1543667ec068SMatthias Ringwald                 default:
1544667ec068SMatthias Ringwald                     break;
1545667ec068SMatthias Ringwald             }
1546eed67a37SMilanka Ringwald             // index > 6 are ignored in switch above
1547a0ffb263SMatthias Ringwald             hfp_connection->parser_item_index++;
1548667ec068SMatthias Ringwald             break;
1549aa4dd815SMatthias Ringwald         case HFP_CMD_SET_MICROPHONE_GAIN:
15502308e108SMilanka Ringwald             value = btstack_atoi((char *)&hfp_connection->line_buffer[0]);
1551a0ffb263SMatthias Ringwald             hfp_connection->microphone_gain = value;
1552aa4dd815SMatthias Ringwald             log_info("hfp parse HFP_CMD_SET_MICROPHONE_GAIN %d\n", value);
1553aa4dd815SMatthias Ringwald             break;
1554aa4dd815SMatthias Ringwald         case HFP_CMD_SET_SPEAKER_GAIN:
15552308e108SMilanka Ringwald             value = btstack_atoi((char *)&hfp_connection->line_buffer[0]);
1556a0ffb263SMatthias Ringwald             hfp_connection->speaker_gain = value;
1557aa4dd815SMatthias Ringwald             log_info("hfp parse HFP_CMD_SET_SPEAKER_GAIN %d\n", value);
1558aa4dd815SMatthias Ringwald             break;
1559aa4dd815SMatthias Ringwald         case HFP_CMD_TURN_OFF_EC_AND_NR:
15602308e108SMilanka Ringwald             value = btstack_atoi((char *)&hfp_connection->line_buffer[0]);
1561a0ffb263SMatthias Ringwald             hfp_connection->ag_echo_and_noise_reduction = value;
1562aa4dd815SMatthias Ringwald             log_info("hfp parse HFP_CMD_TURN_OFF_EC_AND_NR %d\n", value);
1563aa4dd815SMatthias Ringwald             break;
1564aa4dd815SMatthias Ringwald         case HFP_CMD_CHANGE_IN_BAND_RING_TONE_SETTING:
15652308e108SMilanka Ringwald             value = btstack_atoi((char *)&hfp_connection->line_buffer[0]);
1566a0ffb263SMatthias Ringwald             hfp_connection->remote_supported_features = store_bit(hfp_connection->remote_supported_features, HFP_AGSF_IN_BAND_RING_TONE, value);
1567aa4dd815SMatthias Ringwald             log_info("hfp parse HFP_CHANGE_IN_BAND_RING_TONE_SETTING %d\n", value);
1568aa4dd815SMatthias Ringwald             break;
15693deb3ec6SMatthias Ringwald         case HFP_CMD_HF_CONFIRMED_CODEC:
15702308e108SMilanka Ringwald             hfp_connection->codec_confirmed = btstack_atoi((char*)hfp_connection->line_buffer);
1571a0ffb263SMatthias Ringwald             log_info("hfp parse HFP_CMD_HF_CONFIRMED_CODEC %d\n", hfp_connection->codec_confirmed);
15723deb3ec6SMatthias Ringwald             break;
15733deb3ec6SMatthias Ringwald         case HFP_CMD_AG_SUGGESTED_CODEC:
15742308e108SMilanka Ringwald             hfp_connection->suggested_codec = btstack_atoi((char*)hfp_connection->line_buffer);
1575a0ffb263SMatthias Ringwald             log_info("hfp parse HFP_CMD_AG_SUGGESTED_CODEC %d\n", hfp_connection->suggested_codec);
15763deb3ec6SMatthias Ringwald             break;
15773deb3ec6SMatthias Ringwald         case HFP_CMD_SUPPORTED_FEATURES:
15782308e108SMilanka Ringwald             hfp_connection->remote_supported_features = btstack_atoi((char*)hfp_connection->line_buffer);
1579bace42efSMatthias Ringwald             log_info("Parsed supported feature %d\n", (int) hfp_connection->remote_supported_features);
15803deb3ec6SMatthias Ringwald             break;
15813deb3ec6SMatthias Ringwald         case HFP_CMD_AVAILABLE_CODECS:
1582a0ffb263SMatthias Ringwald             log_info("Parsed codec %s\n", hfp_connection->line_buffer);
15832308e108SMilanka Ringwald             hfp_connection->remote_codecs[hfp_connection->parser_item_index] = (uint16_t)btstack_atoi((char*)hfp_connection->line_buffer);
158425789943SMilanka Ringwald             hfp_next_codec_index(hfp_connection);
1585a0ffb263SMatthias Ringwald             hfp_connection->remote_codecs_nr = hfp_connection->parser_item_index;
15863deb3ec6SMatthias Ringwald             break;
1587aa4dd815SMatthias Ringwald         case HFP_CMD_RETRIEVE_AG_INDICATORS:
1588c10fde09SMatthias Ringwald             btstack_strcpy((char *)hfp_connection->ag_indicators[hfp_connection->parser_item_index].name, HFP_MAX_INDICATOR_DESC_SIZE, (char *)hfp_connection->line_buffer);
1589a0ffb263SMatthias Ringwald             hfp_connection->ag_indicators[hfp_connection->parser_item_index].index = hfp_connection->parser_item_index+1;
1590a0ffb263SMatthias Ringwald             log_info("Indicator %d: %s (", hfp_connection->ag_indicators_nr+1, hfp_connection->line_buffer);
1591aa4dd815SMatthias Ringwald             break;
1592aa4dd815SMatthias Ringwald         case HFP_CMD_RETRIEVE_AG_INDICATORS_STATUS:
1593a0ffb263SMatthias Ringwald             log_info("Parsed Indicator %d with status: %s\n", hfp_connection->parser_item_index+1, hfp_connection->line_buffer);
15942308e108SMilanka Ringwald             hfp_connection->ag_indicators[hfp_connection->parser_item_index].status = btstack_atoi((char *) hfp_connection->line_buffer);
159525789943SMilanka Ringwald             hfp_next_indicators_index(hfp_connection);
15963deb3ec6SMatthias Ringwald             break;
15973deb3ec6SMatthias Ringwald         case HFP_CMD_ENABLE_INDICATOR_STATUS_UPDATE:
159825789943SMilanka Ringwald             hfp_next_indicators_index(hfp_connection);
1599a0ffb263SMatthias Ringwald             if (hfp_connection->parser_item_index != 4) break;
1600a0ffb263SMatthias Ringwald             log_info("Parsed Enable indicators: %s\n", hfp_connection->line_buffer);
16012308e108SMilanka Ringwald             value = btstack_atoi((char *)&hfp_connection->line_buffer[0]);
1602a0ffb263SMatthias Ringwald             hfp_connection->enable_status_update_for_ag_indicators = (uint8_t) value;
16033deb3ec6SMatthias Ringwald             break;
16043deb3ec6SMatthias Ringwald         case HFP_CMD_SUPPORT_CALL_HOLD_AND_MULTIPARTY_SERVICES:
1605a0ffb263SMatthias Ringwald             log_info("Parsed Support call hold: %s\n", hfp_connection->line_buffer);
1606a0ffb263SMatthias Ringwald             if (hfp_connection->line_size > 2 ) break;
160797d2cfbcSMatthias Ringwald             memcpy((char *)hfp_connection->remote_call_services[hfp_connection->remote_call_services_index].name, (char *)hfp_connection->line_buffer, HFP_CALL_SERVICE_SIZE-1);
160825789943SMilanka Ringwald             hfp_connection->remote_call_services[hfp_connection->remote_call_services_index].name[HFP_CALL_SERVICE_SIZE - 1] = 0;
1609eed67a37SMilanka Ringwald             hfp_next_remote_call_services_index(hfp_connection);
16103deb3ec6SMatthias Ringwald             break;
1611aa4dd815SMatthias Ringwald         case HFP_CMD_LIST_GENERIC_STATUS_INDICATORS:
1612aa4dd815SMatthias Ringwald         case HFP_CMD_RETRIEVE_GENERIC_STATUS_INDICATORS:
1613a0ffb263SMatthias Ringwald             log_info("Parsed Generic status indicator: %s\n", hfp_connection->line_buffer);
16142308e108SMilanka Ringwald             hfp_connection->generic_status_indicators[hfp_connection->parser_item_index].uuid = (uint16_t)btstack_atoi((char*)hfp_connection->line_buffer);
161525789943SMilanka Ringwald             hfp_next_indicators_index(hfp_connection);
1616a0ffb263SMatthias Ringwald             hfp_connection->generic_status_indicators_nr = hfp_connection->parser_item_index;
16173deb3ec6SMatthias Ringwald             break;
1618aa4dd815SMatthias Ringwald         case HFP_CMD_RETRIEVE_GENERIC_STATUS_INDICATORS_STATE:
16193deb3ec6SMatthias Ringwald             // HF parses inital AG gen. ind. state
1620a0ffb263SMatthias Ringwald             log_info("Parsed List generic status indicator %s state: ", hfp_connection->line_buffer);
162125789943SMilanka Ringwald             hfp_connection->parser_item_index = hfp_parse_indicator_index(hfp_connection);
16223deb3ec6SMatthias Ringwald             break;
1623ce263fc8SMatthias Ringwald         case HFP_CMD_HF_INDICATOR_STATUS:
162425789943SMilanka Ringwald             hfp_connection->parser_indicator_index = hfp_parse_indicator_index(hfp_connection);
1625a0ffb263SMatthias Ringwald             log_info("Parsed HF indicator index %u", hfp_connection->parser_indicator_index);
1626ce263fc8SMatthias Ringwald             break;
16273deb3ec6SMatthias Ringwald         case HFP_CMD_ENABLE_INDIVIDUAL_AG_INDICATOR_STATUS_UPDATE:
16283deb3ec6SMatthias Ringwald             // AG parses new gen. ind. state
1629a0ffb263SMatthias Ringwald             if (hfp_connection->ignore_value){
1630a0ffb263SMatthias Ringwald                 hfp_connection->ignore_value = 0;
1631a0ffb263SMatthias Ringwald                 log_info("Parsed Enable AG indicator pos %u('%s') - unchanged (stays %u)\n", hfp_connection->parser_item_index,
1632a0ffb263SMatthias Ringwald                     hfp_connection->ag_indicators[hfp_connection->parser_item_index].name, hfp_connection->ag_indicators[hfp_connection->parser_item_index].enabled);
1633ce263fc8SMatthias Ringwald             }
1634a0ffb263SMatthias Ringwald             else if (hfp_connection->ag_indicators[hfp_connection->parser_item_index].mandatory){
1635ce263fc8SMatthias Ringwald                 log_info("Parsed Enable AG indicator pos %u('%s') - ignore (mandatory)\n",
1636a0ffb263SMatthias Ringwald                     hfp_connection->parser_item_index, hfp_connection->ag_indicators[hfp_connection->parser_item_index].name);
1637ce263fc8SMatthias Ringwald             } else {
16382308e108SMilanka Ringwald                 value = btstack_atoi((char *)&hfp_connection->line_buffer[0]);
1639a0ffb263SMatthias Ringwald                 hfp_connection->ag_indicators[hfp_connection->parser_item_index].enabled = value;
1640a0ffb263SMatthias Ringwald                 log_info("Parsed Enable AG indicator pos %u('%s'): %u\n", hfp_connection->parser_item_index,
1641a0ffb263SMatthias Ringwald                     hfp_connection->ag_indicators[hfp_connection->parser_item_index].name, value);
16423deb3ec6SMatthias Ringwald             }
164325789943SMilanka Ringwald             hfp_next_indicators_index(hfp_connection);
16443deb3ec6SMatthias Ringwald             break;
16453deb3ec6SMatthias Ringwald         case HFP_CMD_TRANSFER_AG_INDICATOR_STATUS:
16463deb3ec6SMatthias Ringwald             // indicators are indexed starting with 1
164725789943SMilanka Ringwald             hfp_connection->parser_item_index = hfp_parse_indicator_index(hfp_connection);
1648a0ffb263SMatthias Ringwald             log_info("Parsed status of the AG indicator %d, status ", hfp_connection->parser_item_index);
16493deb3ec6SMatthias Ringwald             break;
1650aa4dd815SMatthias Ringwald         case HFP_CMD_QUERY_OPERATOR_SELECTION_NAME:
16512308e108SMilanka Ringwald             hfp_connection->network_operator.mode = btstack_atoi((char *)&hfp_connection->line_buffer[0]);
1652a0ffb263SMatthias Ringwald             log_info("Parsed network operator mode: %d, ", hfp_connection->network_operator.mode);
1653aa4dd815SMatthias Ringwald             break;
1654aa4dd815SMatthias Ringwald         case HFP_CMD_QUERY_OPERATOR_SELECTION_NAME_FORMAT:
1655a0ffb263SMatthias Ringwald             if (hfp_connection->line_buffer[0] == '3'){
1656a0ffb263SMatthias Ringwald                 log_info("Parsed Set network operator format : %s, ", hfp_connection->line_buffer);
16573deb3ec6SMatthias Ringwald                 break;
16583deb3ec6SMatthias Ringwald             }
16593deb3ec6SMatthias Ringwald             // TODO emit ERROR, wrong format
1660a0ffb263SMatthias Ringwald             log_info("ERROR Set network operator format: index %s not supported\n", hfp_connection->line_buffer);
16613deb3ec6SMatthias Ringwald             break;
16623deb3ec6SMatthias Ringwald         case HFP_CMD_ERROR:
16633deb3ec6SMatthias Ringwald             break;
16643deb3ec6SMatthias Ringwald         case HFP_CMD_EXTENDED_AUDIO_GATEWAY_ERROR:
1665a0ffb263SMatthias Ringwald             hfp_connection->extended_audio_gateway_error = 1;
16662308e108SMilanka Ringwald             hfp_connection->extended_audio_gateway_error_value = (uint8_t)btstack_atoi((char*)hfp_connection->line_buffer);
16673deb3ec6SMatthias Ringwald             break;
16683deb3ec6SMatthias Ringwald         case HFP_CMD_ENABLE_EXTENDED_AUDIO_GATEWAY_ERROR:
16692308e108SMilanka Ringwald             hfp_connection->enable_extended_audio_gateway_error_report = (uint8_t)btstack_atoi((char*)hfp_connection->line_buffer);
1670a0ffb263SMatthias Ringwald             hfp_connection->ok_pending = 1;
1671a0ffb263SMatthias Ringwald             hfp_connection->extended_audio_gateway_error = 0;
16723deb3ec6SMatthias Ringwald             break;
1673ce263fc8SMatthias Ringwald         case HFP_CMD_AG_SENT_PHONE_NUMBER:
1674a0ffb263SMatthias Ringwald         case HFP_CMD_AG_SENT_CALL_WAITING_NOTIFICATION_UPDATE:
1675a0ffb263SMatthias Ringwald         case HFP_CMD_AG_SENT_CLIP_INFORMATION:
1676c10fde09SMatthias Ringwald             btstack_strcpy((char *)hfp_connection->bnip_number, sizeof(hfp_connection->bnip_number), (char *)hfp_connection->line_buffer);
16773deb3ec6SMatthias Ringwald             break;
16780222a807SMatthias Ringwald         case HFP_CMD_CALL_HOLD:
16790222a807SMatthias Ringwald             hfp_connection->ag_call_hold_action = hfp_connection->line_buffer[0] - '0';
16800222a807SMatthias Ringwald             if (hfp_connection->line_buffer[1] != '\0'){
16810222a807SMatthias Ringwald                 hfp_connection->call_index = btstack_atoi((char *)&hfp_connection->line_buffer[1]);
16820222a807SMatthias Ringwald             }
16830222a807SMatthias Ringwald             break;
16840222a807SMatthias Ringwald         case HFP_CMD_RESPONSE_AND_HOLD_COMMAND:
16850222a807SMatthias Ringwald             hfp_connection->ag_response_and_hold_action = btstack_atoi((char *)&hfp_connection->line_buffer[0]);
16860222a807SMatthias Ringwald             break;
16870222a807SMatthias Ringwald         case HFP_CMD_TRANSMIT_DTMF_CODES:
16880222a807SMatthias Ringwald             hfp_connection->ag_dtmf_code = hfp_connection->line_buffer[0];
16890222a807SMatthias Ringwald             break;
16900222a807SMatthias Ringwald         case HFP_CMD_ENABLE_CLIP:
16910222a807SMatthias Ringwald             hfp_connection->clip_enabled = hfp_connection->line_buffer[0] != '0';
16920222a807SMatthias Ringwald             break;
16930222a807SMatthias Ringwald         case HFP_CMD_ENABLE_CALL_WAITING_NOTIFICATION:
16940222a807SMatthias Ringwald             hfp_connection->call_waiting_notification_enabled = hfp_connection->line_buffer[0] != '0';
16950222a807SMatthias Ringwald             break;
16960b4debbfSMilanka Ringwald         case HFP_CMD_HF_ACTIVATE_VOICE_RECOGNITION:
16970b4debbfSMilanka Ringwald             value = btstack_atoi((char *)&hfp_connection->line_buffer[0]);
16980b4debbfSMilanka Ringwald             hfp_connection->ag_activate_voice_recognition_value = value;
16990b4debbfSMilanka Ringwald             break;
1700db3cdbd4SMilanka Ringwald         case HFP_CMD_AG_ACTIVATE_VOICE_RECOGNITION:
1701db3cdbd4SMilanka Ringwald             switch(hfp_connection->parser_item_index){
1702db3cdbd4SMilanka Ringwald                 case 0:
17030b4debbfSMilanka Ringwald                     hfp_connection->ag_vra_status = btstack_atoi((char *)&hfp_connection->line_buffer[0]);
1704db3cdbd4SMilanka Ringwald                     break;
1705db3cdbd4SMilanka Ringwald                 case 1:
1706c78e7b73SMatthias Ringwald                     hfp_connection->ag_vra_state = (hfp_voice_recognition_state_t) btstack_atoi((char *)&hfp_connection->line_buffer[0]);
1707db3cdbd4SMilanka Ringwald                     break;
1708db3cdbd4SMilanka Ringwald                 case 2:
170945796ff1SMilanka Ringwald                     hfp_connection->ag_msg.text_id = 0;
1710db3cdbd4SMilanka Ringwald                     for (i = 0 ; i < 4; i++){
171145796ff1SMilanka Ringwald                         hfp_connection->ag_msg.text_id = (hfp_connection->ag_msg.text_id << 4) | nibble_for_char(hfp_connection->line_buffer[i]);
1712db3cdbd4SMilanka Ringwald                     }
1713db3cdbd4SMilanka Ringwald                     break;
1714db3cdbd4SMilanka Ringwald                 case 3:
17150d854c7cSMilanka Ringwald                     hfp_connection->ag_msg.text_type = (hfp_text_type_t) btstack_atoi((char *)&hfp_connection->line_buffer[0]);
1716db3cdbd4SMilanka Ringwald                     break;
1717db3cdbd4SMilanka Ringwald                 case 4:
17180d854c7cSMilanka Ringwald                     hfp_connection->ag_msg.text_operation = (hfp_text_operation_t) btstack_atoi((char *)&hfp_connection->line_buffer[0]);
1719db3cdbd4SMilanka Ringwald                     break;
1720db3cdbd4SMilanka Ringwald                 case 5:
172151aa5d5aSMilanka Ringwald                     hfp_connection->line_buffer[hfp_connection->line_size] = 0;
172251aa5d5aSMilanka Ringwald                     hfp_connection->ag_vra_msg_length = hfp_connection->line_size + 1;
1723db3cdbd4SMilanka Ringwald                     break;
1724db3cdbd4SMilanka Ringwald                 default:
1725db3cdbd4SMilanka Ringwald                     break;
1726db3cdbd4SMilanka Ringwald             }
1727ddbf29d2SMilanka Ringwald             hfp_connection->parser_item_index++;
1728db3cdbd4SMilanka Ringwald             break;
17293deb3ec6SMatthias Ringwald         default:
17303deb3ec6SMatthias Ringwald             break;
17313deb3ec6SMatthias Ringwald     }
17323deb3ec6SMatthias Ringwald }
17333deb3ec6SMatthias Ringwald 
17341d9c9c90SMilanka Ringwald static void hfp_handle_start_sdp_client_query(void * context){
17351d9c9c90SMilanka Ringwald     UNUSED(context);
17361d9c9c90SMilanka Ringwald 
17371d9c9c90SMilanka Ringwald     btstack_linked_list_iterator_t it;
17381d9c9c90SMilanka Ringwald     btstack_linked_list_iterator_init(&it, &hfp_connections);
17391d9c9c90SMilanka Ringwald     while (btstack_linked_list_iterator_has_next(&it)){
17401d9c9c90SMilanka Ringwald         hfp_connection_t * connection = (hfp_connection_t *)btstack_linked_list_iterator_next(&it);
17411d9c9c90SMilanka Ringwald 
17421d9c9c90SMilanka Ringwald         if (connection->state != HFP_W2_SEND_SDP_QUERY) continue;
17431d9c9c90SMilanka Ringwald 
17441d9c9c90SMilanka Ringwald         connection->state = HFP_W4_SDP_QUERY_COMPLETE;
1745aeb0f0feSMatthias Ringwald         hfp_sdp_query_context.local_role = connection->local_role;
1746aeb0f0feSMatthias Ringwald         (void)memcpy(hfp_sdp_query_context.remote_address, connection->remote_addr, 6);
1747e55c05e3SMatthias Ringwald         sdp_client_query_rfcomm_channel_and_name_for_service_class_uuid(&handle_query_rfcomm_event, connection->remote_addr, connection->service_uuid);
17481d9c9c90SMilanka Ringwald         return;
17491d9c9c90SMilanka Ringwald     }
17501d9c9c90SMilanka Ringwald }
17511d9c9c90SMilanka Ringwald 
17524eb3f1d8SMilanka Ringwald uint8_t hfp_establish_service_level_connection(bd_addr_t bd_addr, uint16_t service_uuid, hfp_role_t local_role){
17534eb3f1d8SMilanka Ringwald     hfp_connection_t * connection = get_hfp_connection_context_for_bd_addr(bd_addr, local_role);
17544eb3f1d8SMilanka Ringwald     if (connection){
17554eb3f1d8SMilanka Ringwald         return ERROR_CODE_COMMAND_DISALLOWED;
17563deb3ec6SMatthias Ringwald     }
17574eb3f1d8SMilanka Ringwald 
17584eb3f1d8SMilanka Ringwald     connection = hfp_create_connection(bd_addr, local_role);
17594eb3f1d8SMilanka Ringwald     if (!connection){
17604eb3f1d8SMilanka Ringwald         return BTSTACK_MEMORY_ALLOC_FAILED;
17614eb3f1d8SMilanka Ringwald     }
17624eb3f1d8SMilanka Ringwald 
17634eb3f1d8SMilanka Ringwald     connection->state = HFP_W2_SEND_SDP_QUERY;
17644eb3f1d8SMilanka Ringwald 
17654eb3f1d8SMilanka Ringwald     bd_addr_copy(connection->remote_addr, bd_addr);
17664eb3f1d8SMilanka Ringwald     connection->service_uuid = service_uuid;
17671d9c9c90SMilanka Ringwald 
1768aeb0f0feSMatthias Ringwald     hfp_sdp_query_request.callback = &hfp_handle_start_sdp_client_query;
17691d9c9c90SMilanka Ringwald     // ignore ERROR_CODE_COMMAND_DISALLOWED because in that case, we already have requested an SDP callback
1770aeb0f0feSMatthias Ringwald     (void) sdp_client_register_query_callback(&hfp_sdp_query_request);
17714eb3f1d8SMilanka Ringwald     return ERROR_CODE_SUCCESS;
17723deb3ec6SMatthias Ringwald }
17733deb3ec6SMatthias Ringwald 
1774657bc59fSMilanka Ringwald void hfp_trigger_release_service_level_connection(hfp_connection_t * hfp_connection){
17751ffa0dd9SMilanka Ringwald     // called internally, NULL check already performed
1776657bc59fSMilanka Ringwald     btstack_assert(hfp_connection != NULL);
17773deb3ec6SMatthias Ringwald 
1778657bc59fSMilanka Ringwald     hfp_trigger_release_audio_connection(hfp_connection);
1779657bc59fSMilanka Ringwald     if (hfp_connection->state < HFP_W4_RFCOMM_CONNECTED){
1780657bc59fSMilanka Ringwald         hfp_connection->state = HFP_IDLE;
17813deb3ec6SMatthias Ringwald         return;
17823deb3ec6SMatthias Ringwald     }
17833deb3ec6SMatthias Ringwald 
1784657bc59fSMilanka Ringwald     if (hfp_connection->state == HFP_W4_RFCOMM_CONNECTED){
1785657bc59fSMilanka Ringwald         hfp_connection->state = HFP_W4_CONNECTION_ESTABLISHED_TO_SHUTDOWN;
17863deb3ec6SMatthias Ringwald         return;
17873deb3ec6SMatthias Ringwald     }
178852cbdd6dSMilanka Ringwald     hfp_connection->release_slc_connection = 1;
1789657bc59fSMilanka Ringwald     if (hfp_connection->state < HFP_W4_SCO_CONNECTED){
1790657bc59fSMilanka Ringwald         hfp_connection->state = HFP_W2_DISCONNECT_RFCOMM;
17910c3047fbSMatthias Ringwald         return;
17920c3047fbSMatthias Ringwald     }
17930c3047fbSMatthias Ringwald 
1794657bc59fSMilanka Ringwald     if (hfp_connection->state < HFP_W4_SCO_DISCONNECTED){
1795657bc59fSMilanka Ringwald         hfp_connection->state = HFP_W2_DISCONNECT_SCO;
179652cbdd6dSMilanka Ringwald         hfp_connection->release_audio_connection = 1;
17970c3047fbSMatthias Ringwald         return;
17980c3047fbSMatthias Ringwald     }
17993deb3ec6SMatthias Ringwald }
18003deb3ec6SMatthias Ringwald 
18010b4debbfSMilanka Ringwald uint8_t hfp_trigger_release_audio_connection(hfp_connection_t * hfp_connection){
18021ffa0dd9SMilanka Ringwald     // called internally, NULL check already performed
1803657bc59fSMilanka Ringwald     btstack_assert(hfp_connection != NULL);
18040b4debbfSMilanka Ringwald     if (hfp_connection->state <= HFP_SERVICE_LEVEL_CONNECTION_ESTABLISHED){
18050b4debbfSMilanka Ringwald         return ERROR_CODE_COMMAND_DISALLOWED;
18061ffa0dd9SMilanka Ringwald     }
18070b4debbfSMilanka Ringwald     switch (hfp_connection->state) {
18080b4debbfSMilanka Ringwald         case HFP_W2_CONNECT_SCO:
18090b4debbfSMilanka Ringwald             hfp_connection->state = HFP_SERVICE_LEVEL_CONNECTION_ESTABLISHED;
18100b4debbfSMilanka Ringwald             break;
18110b4debbfSMilanka Ringwald         case HFP_W4_SCO_CONNECTED:
18120b4debbfSMilanka Ringwald         case HFP_AUDIO_CONNECTION_ESTABLISHED:
18130b4debbfSMilanka Ringwald             hfp_connection->release_audio_connection = 1;
18140b4debbfSMilanka Ringwald             break;
18150b4debbfSMilanka Ringwald         default:
18160b4debbfSMilanka Ringwald             return ERROR_CODE_COMMAND_DISALLOWED;
18170b4debbfSMilanka Ringwald     }
18180b4debbfSMilanka Ringwald     return ERROR_CODE_SUCCESS;
18193deb3ec6SMatthias Ringwald }
18203deb3ec6SMatthias Ringwald 
1821ce263fc8SMatthias Ringwald static const struct link_settings {
1822ce263fc8SMatthias Ringwald     const uint16_t max_latency;
1823ce263fc8SMatthias Ringwald     const uint8_t  retransmission_effort;
1824ce263fc8SMatthias Ringwald     const uint16_t packet_types;
1825ebc6f15bSMatthias Ringwald     const bool     eSCO;
1826ebc6f15bSMatthias Ringwald     const uint8_t  codec;
1827ce263fc8SMatthias Ringwald } hfp_link_settings [] = {
1828352a0504SMatthias Ringwald     { 0xffff, 0xff, SCO_PACKET_TYPES_HV1,  false, HFP_CODEC_CVSD }, // HFP_LINK_SETTINGS_D0
1829352a0504SMatthias Ringwald     { 0xffff, 0xff, SCO_PACKET_TYPES_HV3,  false, HFP_CODEC_CVSD }, // HFP_LINK_SETTINGS_D1
1830352a0504SMatthias Ringwald     { 0x0007, 0x01, SCO_PACKET_TYPES_EV3,  true,  HFP_CODEC_CVSD }, // HFP_LINK_SETTINGS_S1
1831352a0504SMatthias Ringwald     { 0x0007, 0x01, SCO_PACKET_TYPES_2EV3, true,  HFP_CODEC_CVSD }, // HFP_LINK_SETTINGS_S2
1832352a0504SMatthias Ringwald     { 0x000a, 0x01, SCO_PACKET_TYPES_2EV3, true,  HFP_CODEC_CVSD }, // HFP_LINK_SETTINGS_S3
1833352a0504SMatthias Ringwald     { 0x000c, 0x02, SCO_PACKET_TYPES_2EV3, true,  HFP_CODEC_CVSD }, // HFP_LINK_SETTINGS_S4
1834352a0504SMatthias Ringwald     { 0x0008, 0x02, SCO_PACKET_TYPES_EV3,  true,  HFP_CODEC_MSBC }, // HFP_LINK_SETTINGS_T1
1835352a0504SMatthias Ringwald     { 0x000d, 0x02, SCO_PACKET_TYPES_2EV3, true,  HFP_CODEC_MSBC }  // HFP_LINK_SETTINGS_T2
1836ce263fc8SMatthias Ringwald };
18373deb3ec6SMatthias Ringwald 
1838eddcd308SMatthias Ringwald void hfp_setup_synchronous_connection(hfp_connection_t * hfp_connection){
1839ce263fc8SMatthias Ringwald     // all packet types, fixed bandwidth
1840eddcd308SMatthias Ringwald     int setting = hfp_connection->link_setting;
1841ce263fc8SMatthias Ringwald     log_info("hfp_setup_synchronous_connection using setting nr %u", setting);
1842aeb0f0feSMatthias Ringwald     hfp_sco_establishment_active = hfp_connection;
1843d2c1d59aSMatthias Ringwald     uint16_t sco_voice_setting = hci_get_sco_voice_setting();
1844d2c1d59aSMatthias Ringwald     if (hfp_connection->negotiated_codec == HFP_CODEC_MSBC){
1845689d4323SMatthias Ringwald #ifdef ENABLE_BCM_PCM_WBS
1846689d4323SMatthias Ringwald         sco_voice_setting = 0x0063; // Transparent data, 16-bit for BCM controllers
1847689d4323SMatthias Ringwald #else
1848689d4323SMatthias Ringwald         sco_voice_setting = 0x0043; // Transparent data, 8-bit otherwise
1849689d4323SMatthias Ringwald #endif
1850d2c1d59aSMatthias Ringwald     }
1851352a0504SMatthias Ringwald     // get packet types - bits 6-9 are 'don't allow'
1852352a0504SMatthias Ringwald     uint16_t packet_types = hfp_link_settings[setting].packet_types ^ 0x03c0;
1853eddcd308SMatthias Ringwald     hci_send_cmd(&hci_setup_synchronous_connection, hfp_connection->acl_handle, 8000, 8000, hfp_link_settings[setting].max_latency,
1854352a0504SMatthias Ringwald         sco_voice_setting, hfp_link_settings[setting].retransmission_effort, packet_types);
1855ce263fc8SMatthias Ringwald }
1856d68dcce1SMatthias Ringwald 
1857cb81d35dSMatthias Ringwald void hfp_accept_synchronous_connection(hfp_connection_t * hfp_connection, bool incoming_eSCO){
1858cb81d35dSMatthias Ringwald 
1859cb81d35dSMatthias Ringwald     // remote supported feature eSCO is set if link type is eSCO
1860cb81d35dSMatthias Ringwald     // eSCO: S4 - max latency == transmission interval = 0x000c == 12 ms,
1861cb81d35dSMatthias Ringwald     uint16_t max_latency;
1862cb81d35dSMatthias Ringwald     uint8_t  retransmission_effort;
1863cb81d35dSMatthias Ringwald     uint16_t packet_types;
1864cb81d35dSMatthias Ringwald 
1865cb81d35dSMatthias Ringwald     if (incoming_eSCO && hci_extended_sco_link_supported() && hci_remote_esco_supported(hfp_connection->acl_handle)){
1866cb81d35dSMatthias Ringwald         max_latency = 0x000c;
1867cb81d35dSMatthias Ringwald         retransmission_effort = 0x02;
1868cb81d35dSMatthias Ringwald         // eSCO: EV3 and 2-EV3
1869cb81d35dSMatthias Ringwald         packet_types = 0x0048;
1870cb81d35dSMatthias Ringwald     } else {
1871cb81d35dSMatthias Ringwald         max_latency = 0xffff;
1872cb81d35dSMatthias Ringwald         retransmission_effort = 0xff;
1873cb81d35dSMatthias Ringwald         // sco: HV1 and HV3
1874cb81d35dSMatthias Ringwald         packet_types = 0x005;
1875cb81d35dSMatthias Ringwald     }
1876cb81d35dSMatthias Ringwald 
1877cb81d35dSMatthias Ringwald     // mSBC only allows for transparent data
1878cb81d35dSMatthias Ringwald     uint16_t sco_voice_setting = hci_get_sco_voice_setting();
1879cb81d35dSMatthias Ringwald     if (hfp_connection->negotiated_codec == HFP_CODEC_MSBC){
1880cb81d35dSMatthias Ringwald #ifdef ENABLE_BCM_PCM_WBS
1881cb81d35dSMatthias Ringwald         sco_voice_setting = 0x0063; // Transparent data, 16-bit for BCM controllers
1882cb81d35dSMatthias Ringwald #else
1883cb81d35dSMatthias Ringwald         sco_voice_setting = 0x0043; // Transparent data, 8-bit otherwise
1884cb81d35dSMatthias Ringwald #endif
1885cb81d35dSMatthias Ringwald     }
1886cb81d35dSMatthias Ringwald 
1887cb81d35dSMatthias Ringwald     // filter packet types
1888cb81d35dSMatthias Ringwald     packet_types &= hfp_get_sco_packet_types();
1889cb81d35dSMatthias Ringwald 
1890cb81d35dSMatthias Ringwald     // bits 6-9 are 'don't allow'
1891cb81d35dSMatthias Ringwald     packet_types ^= 0x3c0;
1892cb81d35dSMatthias Ringwald 
1893cb81d35dSMatthias Ringwald     log_info("HFP: sending hci_accept_connection_request, packet types 0x%04x, sco_voice_setting 0x%02x", packet_types, sco_voice_setting);
1894cb81d35dSMatthias Ringwald     hci_send_cmd(&hci_accept_synchronous_connection, hfp_connection->remote_addr, 8000, 8000, max_latency,
1895cb81d35dSMatthias Ringwald                  sco_voice_setting, retransmission_effort, packet_types);
1896cb81d35dSMatthias Ringwald }
1897cb81d35dSMatthias Ringwald 
18983721a235SMatthias Ringwald #ifdef ENABLE_CC256X_ASSISTED_HFP
18993721a235SMatthias Ringwald void hfp_cc256x_prepare_for_sco(hfp_connection_t * hfp_connection){
19003721a235SMatthias Ringwald     hfp_connection->cc256x_send_write_codec_config = true;
19013721a235SMatthias Ringwald     if (hfp_connection->negotiated_codec == HFP_CODEC_MSBC){
19023721a235SMatthias Ringwald         hfp_connection->cc256x_send_wbs_associate = true;
19033721a235SMatthias Ringwald     }
19043721a235SMatthias Ringwald }
19053721a235SMatthias Ringwald 
19063721a235SMatthias Ringwald void hfp_cc256x_write_codec_config(hfp_connection_t * hfp_connection){
19073721a235SMatthias Ringwald     uint32_t sample_rate_hz;
19083721a235SMatthias Ringwald     uint16_t clock_rate_khz;
19093721a235SMatthias Ringwald     if (hfp_connection->negotiated_codec == HFP_CODEC_MSBC){
19103721a235SMatthias Ringwald         clock_rate_khz = 512;
19113721a235SMatthias Ringwald         sample_rate_hz = 16000;
19123721a235SMatthias Ringwald     } else {
19133721a235SMatthias Ringwald         clock_rate_khz = 256;
19143721a235SMatthias Ringwald         sample_rate_hz = 8000;
19153721a235SMatthias Ringwald     }
19163721a235SMatthias Ringwald     uint8_t clock_direction = 0;        // master
19173721a235SMatthias Ringwald     uint16_t frame_sync_duty_cycle = 0; // i2s with 50%
19183721a235SMatthias Ringwald     uint8_t  frame_sync_edge = 1;       // rising edge
19193721a235SMatthias Ringwald     uint8_t  frame_sync_polarity = 0;   // active high
19203721a235SMatthias Ringwald     uint8_t  reserved = 0;
19213721a235SMatthias Ringwald     uint16_t size = 16;
19223721a235SMatthias Ringwald     uint16_t chan_1_offset = 1;
19233721a235SMatthias Ringwald     uint16_t chan_2_offset = chan_1_offset + size;
19243721a235SMatthias Ringwald     uint8_t  out_edge = 1;              // rising
19253721a235SMatthias Ringwald     uint8_t  in_edge = 0;               // falling
19263721a235SMatthias Ringwald     hci_send_cmd(&hci_ti_write_codec_config, clock_rate_khz, clock_direction, sample_rate_hz, frame_sync_duty_cycle,
19273721a235SMatthias Ringwald                  frame_sync_edge, frame_sync_polarity, reserved,
19283721a235SMatthias Ringwald                  size, chan_1_offset, out_edge, size, chan_1_offset, in_edge, reserved,
19293721a235SMatthias Ringwald                  size, chan_2_offset, out_edge, size, chan_2_offset, in_edge, reserved);
19303721a235SMatthias Ringwald }
19313721a235SMatthias Ringwald #endif
19323721a235SMatthias Ringwald 
1933689d4323SMatthias Ringwald #ifdef ENABLE_BCM_PCM_WBS
1934689d4323SMatthias Ringwald void hfp_bcm_prepare_for_sco(hfp_connection_t * hfp_connection){
1935689d4323SMatthias Ringwald     hfp_connection->bcm_send_write_i2spcm_interface_param = true;
1936689d4323SMatthias Ringwald     if (hfp_connection->negotiated_codec == HFP_CODEC_MSBC){
1937689d4323SMatthias Ringwald         hfp_connection->bcm_send_enable_wbs = true;
1938689d4323SMatthias Ringwald     }
1939689d4323SMatthias Ringwald }
1940689d4323SMatthias Ringwald void hfp_bcm_write_i2spcm_interface_param(hfp_connection_t * hfp_connection){
1941689d4323SMatthias Ringwald     uint8_t sample_rate = (hfp_connection->negotiated_codec == HFP_CODEC_MSBC) ? 1 : 0;
19421d2bbd54SMatthias Ringwald     // i2s enable, master, 8/16 kHz, 512 kHz
19431d2bbd54SMatthias Ringwald     hci_send_cmd(&hci_bcm_write_i2spcm_interface_paramhci_bcm_write_i2spcm_interface_param, 1, 1, sample_rate, 2);
1944689d4323SMatthias Ringwald }
1945689d4323SMatthias Ringwald #endif
1946689d4323SMatthias Ringwald 
19471b005648SMatthias Ringwald void hfp_set_hf_callback(btstack_packet_handler_t callback){
19481b005648SMatthias Ringwald     hfp_hf_callback = callback;
19491b005648SMatthias Ringwald }
19501b005648SMatthias Ringwald 
19511b005648SMatthias Ringwald void hfp_set_ag_callback(btstack_packet_handler_t callback){
19521b005648SMatthias Ringwald     hfp_ag_callback = callback;
19531b005648SMatthias Ringwald }
19541b005648SMatthias Ringwald 
1955ca59be51SMatthias Ringwald void hfp_set_ag_rfcomm_packet_handler(btstack_packet_handler_t handler){
1956ca59be51SMatthias Ringwald     hfp_ag_rfcomm_packet_handler = handler;
1957ca59be51SMatthias Ringwald }
19581b005648SMatthias Ringwald 
1959ca59be51SMatthias Ringwald void hfp_set_hf_rfcomm_packet_handler(btstack_packet_handler_t handler){
1960ca59be51SMatthias Ringwald     hfp_hf_rfcomm_packet_handler = handler;
1961d68dcce1SMatthias Ringwald }
1962d68dcce1SMatthias Ringwald 
1963520c92d5SMatthias Ringwald void hfp_init(void){
1964352a0504SMatthias Ringwald     hfp_allowed_sco_packet_types = SCO_PACKET_TYPES_ALL;
1965991c26beSMatthias Ringwald }
1966991c26beSMatthias Ringwald 
196720b2edb6SMatthias Ringwald void hfp_deinit(void){
1968aeb0f0feSMatthias Ringwald     hfp_allowed_sco_packet_types = 0;
196920b2edb6SMatthias Ringwald     hfp_connections = NULL;
197020b2edb6SMatthias Ringwald     hfp_hf_callback = NULL;
197120b2edb6SMatthias Ringwald     hfp_ag_callback = NULL;
197220b2edb6SMatthias Ringwald     hfp_hf_rfcomm_packet_handler = NULL;
197320b2edb6SMatthias Ringwald     hfp_ag_rfcomm_packet_handler = NULL;
1974aeb0f0feSMatthias Ringwald     hfp_sco_establishment_active = NULL;
1975aeb0f0feSMatthias Ringwald     (void) memset(&hfp_sdp_query_context, 0, sizeof(hfp_sdp_query_context_t));
1976aeb0f0feSMatthias Ringwald     (void) memset(&hfp_sdp_query_request, 0, sizeof(btstack_context_callback_registration_t));
197720b2edb6SMatthias Ringwald }
197820b2edb6SMatthias Ringwald 
1979991c26beSMatthias Ringwald void hfp_set_sco_packet_types(uint16_t packet_types){
198001e5b727SMatthias Ringwald     hfp_allowed_sco_packet_types = packet_types;
1981991c26beSMatthias Ringwald }
1982991c26beSMatthias Ringwald 
1983991c26beSMatthias Ringwald uint16_t hfp_get_sco_packet_types(void){
198401e5b727SMatthias Ringwald     return hfp_allowed_sco_packet_types;
1985520c92d5SMatthias Ringwald }
1986186dd3d2SMatthias Ringwald 
1987e453c1d9SMatthias Ringwald hfp_link_settings_t hfp_next_link_setting(hfp_link_settings_t current_setting, bool local_eSCO_supported, bool remote_eSCO_supported, bool eSCO_S4_supported, uint8_t negotiated_codec){
1988e453c1d9SMatthias Ringwald     int8_t setting = (int8_t) current_setting;
1989e453c1d9SMatthias Ringwald     bool can_use_eSCO = local_eSCO_supported && remote_eSCO_supported;
1990e453c1d9SMatthias Ringwald     while (setting > 0){
1991e453c1d9SMatthias Ringwald         setting--;
1992e453c1d9SMatthias Ringwald         // skip if eSCO required but not available
1993e453c1d9SMatthias Ringwald         if (hfp_link_settings[setting].eSCO && !can_use_eSCO) continue;
1994e453c1d9SMatthias Ringwald         // skip if S4 but not supported
1995e453c1d9SMatthias Ringwald         if ((setting == (int8_t) HFP_LINK_SETTINGS_S4) && !eSCO_S4_supported) continue;
1996e453c1d9SMatthias Ringwald         // skip wrong codec
1997e453c1d9SMatthias Ringwald         if ( hfp_link_settings[setting].codec != negotiated_codec) continue;
199801e5b727SMatthias Ringwald         // skip disabled packet types
1999352a0504SMatthias Ringwald         uint16_t required_packet_types = hfp_link_settings[setting].packet_types;
2000352a0504SMatthias Ringwald         uint16_t allowed_packet_types  = hfp_allowed_sco_packet_types;
2001352a0504SMatthias Ringwald         if ((required_packet_types & allowed_packet_types) == 0) continue;
200201e5b727SMatthias Ringwald 
2003e453c1d9SMatthias Ringwald         // found matching setting
2004e453c1d9SMatthias Ringwald         return (hfp_link_settings_t) setting;
2005afac2a04SMilanka Ringwald     }
2006e453c1d9SMatthias Ringwald     return HFP_LINK_SETTINGS_NONE;
2007afac2a04SMilanka Ringwald }
2008e453c1d9SMatthias Ringwald 
20092b7abbfbSMatthias Ringwald static hfp_link_settings_t hfp_next_link_setting_for_connection(hfp_link_settings_t current_setting, hfp_connection_t * hfp_connection, uint8_t eSCO_S4_supported){
2010e453c1d9SMatthias Ringwald     bool local_eSCO_supported  = hci_extended_sco_link_supported();
2011e453c1d9SMatthias Ringwald     bool remote_eSCO_supported = hci_remote_esco_supported(hfp_connection->acl_handle);
2012e453c1d9SMatthias Ringwald     uint8_t negotiated_codec   = hfp_connection->negotiated_codec;
20132b7abbfbSMatthias Ringwald     return  hfp_next_link_setting(current_setting, local_eSCO_supported, remote_eSCO_supported, eSCO_S4_supported, negotiated_codec);
20142b7abbfbSMatthias Ringwald }
20152b7abbfbSMatthias Ringwald 
20162b7abbfbSMatthias Ringwald void hfp_init_link_settings(hfp_connection_t * hfp_connection, uint8_t eSCO_S4_supported){
2017e453c1d9SMatthias Ringwald     // get highest possible link setting
20182b7abbfbSMatthias Ringwald     hfp_connection->link_setting = hfp_next_link_setting_for_connection(HFP_LINK_SETTINGS_NONE, hfp_connection, eSCO_S4_supported);
2019afac2a04SMilanka Ringwald     log_info("hfp_init_link_settings: %u", hfp_connection->link_setting);
2020afac2a04SMilanka Ringwald }
2021afac2a04SMilanka Ringwald 
2022186dd3d2SMatthias Ringwald #define HFP_HF_RX_DEBUG_PRINT_LINE 80
2023186dd3d2SMatthias Ringwald 
2024186dd3d2SMatthias Ringwald void hfp_log_rfcomm_message(const char * tag, uint8_t * packet, uint16_t size){
2025186dd3d2SMatthias Ringwald #ifdef ENABLE_LOG_INFO
2026186dd3d2SMatthias Ringwald     // encode \n\r
2027186dd3d2SMatthias Ringwald     char printable[HFP_HF_RX_DEBUG_PRINT_LINE+2];
202815a27967SMatthias Ringwald     int i = 0;
2029186dd3d2SMatthias Ringwald     int pos;
203015a27967SMatthias Ringwald     for (pos=0 ; (pos < size) && (i < (HFP_HF_RX_DEBUG_PRINT_LINE - 3)) ; pos++){
2031186dd3d2SMatthias Ringwald         switch (packet[pos]){
2032186dd3d2SMatthias Ringwald             case '\n':
2033186dd3d2SMatthias Ringwald                 printable[i++] = '\\';
2034186dd3d2SMatthias Ringwald                 printable[i++] = 'n';
2035186dd3d2SMatthias Ringwald                 break;
2036186dd3d2SMatthias Ringwald             case '\r':
2037186dd3d2SMatthias Ringwald                 printable[i++] = '\\';
2038186dd3d2SMatthias Ringwald                 printable[i++] = 'r';
2039186dd3d2SMatthias Ringwald                 break;
2040186dd3d2SMatthias Ringwald             default:
2041186dd3d2SMatthias Ringwald                 printable[i++] = packet[pos];
2042186dd3d2SMatthias Ringwald                 break;
2043186dd3d2SMatthias Ringwald         }
2044186dd3d2SMatthias Ringwald     }
2045186dd3d2SMatthias Ringwald     printable[i] = 0;
2046186dd3d2SMatthias Ringwald     log_info("%s: '%s'", tag, printable);
2047186dd3d2SMatthias Ringwald #endif
2048186dd3d2SMatthias Ringwald }
2049