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 233deb3ec6SMatthias Ringwald * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL MATTHIAS 243deb3ec6SMatthias Ringwald * RINGWALD 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> 443deb3ec6SMatthias Ringwald #include <string.h> 453deb3ec6SMatthias Ringwald #include <inttypes.h> 463deb3ec6SMatthias Ringwald 47235946f1SMatthias Ringwald #include "bluetooth_sdp.h" 48023f2764SMatthias Ringwald #include "btstack_debug.h" 4959c6af15SMatthias Ringwald #include "btstack_event.h" 5059c6af15SMatthias Ringwald #include "btstack_memory.h" 5159c6af15SMatthias Ringwald #include "btstack_run_loop.h" 5259c6af15SMatthias Ringwald #include "classic/core.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" 6059c6af15SMatthias Ringwald #include "l2cap.h" 613deb3ec6SMatthias Ringwald 623721a235SMatthias Ringwald #if defined(ENABLE_CC256X_ASSISTED_HFP) && !defined(ENABLE_SCO_OVER_PCM) 633721a235SMatthias Ringwald #error "Assisted HFP is only possible over PCM/I2S. Please add define: ENABLE_SCO_OVER_PCM" 643721a235SMatthias Ringwald #endif 653721a235SMatthias Ringwald 66689d4323SMatthias Ringwald #if defined(ENABLE_BCM_PCM_WBS) && !defined(ENABLE_SCO_OVER_PCM) 67689d4323SMatthias Ringwald #error "WBS for PCM is only possible over PCM/I2S. Please add define: ENABLE_SCO_OVER_PCM" 68689d4323SMatthias Ringwald #endif 69689d4323SMatthias Ringwald 703deb3ec6SMatthias Ringwald #define HFP_HF_FEATURES_SIZE 10 713deb3ec6SMatthias Ringwald #define HFP_AG_FEATURES_SIZE 12 723deb3ec6SMatthias Ringwald 7320b2edb6SMatthias Ringwald typedef struct { 7420b2edb6SMatthias Ringwald hfp_role_t local_role; 7520b2edb6SMatthias Ringwald bd_addr_t remote_address; 7620b2edb6SMatthias Ringwald } hfp_sdp_query_context_t; 7720b2edb6SMatthias Ringwald 7820b2edb6SMatthias Ringwald // globals 7920b2edb6SMatthias Ringwald 8020b2edb6SMatthias Ringwald static hfp_sdp_query_context_t sdp_query_context; 8120b2edb6SMatthias Ringwald static btstack_context_callback_registration_t hfp_handle_sdp_client_query_request; 8220b2edb6SMatthias Ringwald 8320b2edb6SMatthias Ringwald static btstack_linked_list_t hfp_connections ; 8420b2edb6SMatthias Ringwald 8520b2edb6SMatthias Ringwald static btstack_packet_handler_t hfp_hf_callback; 8620b2edb6SMatthias Ringwald static btstack_packet_handler_t hfp_ag_callback; 8720b2edb6SMatthias Ringwald 8820b2edb6SMatthias Ringwald static btstack_packet_handler_t hfp_hf_rfcomm_packet_handler; 8920b2edb6SMatthias Ringwald static btstack_packet_handler_t hfp_ag_rfcomm_packet_handler; 9020b2edb6SMatthias Ringwald 9120b2edb6SMatthias Ringwald static hfp_connection_t * sco_establishment_active; 9220b2edb6SMatthias Ringwald 9320b2edb6SMatthias Ringwald static uint16_t hfp_allowed_sco_packet_types; 9420b2edb6SMatthias Ringwald 9520b2edb6SMatthias Ringwald // prototypes 9620b2edb6SMatthias 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); 9720b2edb6SMatthias Ringwald static void parse_sequence(hfp_connection_t * context); 9820b2edb6SMatthias Ringwald 993deb3ec6SMatthias Ringwald 1003deb3ec6SMatthias Ringwald static const char * hfp_hf_features[] = { 1013deb3ec6SMatthias Ringwald "EC and/or NR function", 1023deb3ec6SMatthias Ringwald "Three-way calling", 1033deb3ec6SMatthias Ringwald "CLI presentation capability", 1043deb3ec6SMatthias Ringwald "Voice recognition activation", 1053deb3ec6SMatthias Ringwald "Remote volume control", 1063deb3ec6SMatthias Ringwald 1073deb3ec6SMatthias Ringwald "Enhanced call status", 1083deb3ec6SMatthias Ringwald "Enhanced call control", 1093deb3ec6SMatthias Ringwald 1103deb3ec6SMatthias Ringwald "Codec negotiation", 1113deb3ec6SMatthias Ringwald 1123deb3ec6SMatthias Ringwald "HF Indicators", 1133deb3ec6SMatthias Ringwald "eSCO S4 (and T2) Settings Supported", 1143deb3ec6SMatthias Ringwald "Reserved for future definition" 1153deb3ec6SMatthias Ringwald }; 1163deb3ec6SMatthias Ringwald 1173deb3ec6SMatthias Ringwald static const char * hfp_ag_features[] = { 1183deb3ec6SMatthias Ringwald "Three-way calling", 1193deb3ec6SMatthias Ringwald "EC and/or NR function", 1203deb3ec6SMatthias Ringwald "Voice recognition function", 1213deb3ec6SMatthias Ringwald "In-band ring tone capability", 1223deb3ec6SMatthias Ringwald "Attach a number to a voice tag", 1233deb3ec6SMatthias Ringwald "Ability to reject a call", 1243deb3ec6SMatthias Ringwald "Enhanced call status", 1253deb3ec6SMatthias Ringwald "Enhanced call control", 1263deb3ec6SMatthias Ringwald "Extended Error Result Codes", 1273deb3ec6SMatthias Ringwald "Codec negotiation", 1283deb3ec6SMatthias Ringwald "HF Indicators", 1293deb3ec6SMatthias Ringwald "eSCO S4 (and T2) Settings Supported", 1303deb3ec6SMatthias Ringwald "Reserved for future definition" 1313deb3ec6SMatthias Ringwald }; 1323deb3ec6SMatthias Ringwald 1330aee97efSMilanka Ringwald static const char * hfp_enhanced_call_dir[] = { 1340aee97efSMilanka Ringwald "outgoing", 1350aee97efSMilanka Ringwald "incoming" 1360aee97efSMilanka Ringwald }; 1370aee97efSMilanka Ringwald 1380aee97efSMilanka Ringwald static const char * hfp_enhanced_call_status[] = { 1390aee97efSMilanka Ringwald "active", 1400aee97efSMilanka Ringwald "held", 1410aee97efSMilanka Ringwald "outgoing dialing", 1420aee97efSMilanka Ringwald "outgoing alerting", 1430aee97efSMilanka Ringwald "incoming", 1440aee97efSMilanka Ringwald "incoming waiting", 1450aee97efSMilanka Ringwald "call held by response and hold" 1460aee97efSMilanka Ringwald }; 1470aee97efSMilanka Ringwald 1480aee97efSMilanka Ringwald static const char * hfp_enhanced_call_mode[] = { 1490aee97efSMilanka Ringwald "voice", 1500aee97efSMilanka Ringwald "data", 1510aee97efSMilanka Ringwald "fax" 1520aee97efSMilanka Ringwald }; 1530aee97efSMilanka Ringwald 1540aee97efSMilanka Ringwald static const char * hfp_enhanced_call_mpty[] = { 1550aee97efSMilanka Ringwald "not a conference call", 1560aee97efSMilanka Ringwald "conference call" 1570aee97efSMilanka Ringwald }; 1580aee97efSMilanka Ringwald 1590aee97efSMilanka Ringwald const char * hfp_enhanced_call_dir2str(uint16_t index){ 1600aee97efSMilanka Ringwald if (index <= HFP_ENHANCED_CALL_DIR_INCOMING) return hfp_enhanced_call_dir[index]; 1610aee97efSMilanka Ringwald return "not defined"; 1620aee97efSMilanka Ringwald } 1630aee97efSMilanka Ringwald 1640aee97efSMilanka Ringwald const char * hfp_enhanced_call_status2str(uint16_t index){ 1650aee97efSMilanka Ringwald if (index <= HFP_ENHANCED_CALL_STATUS_CALL_HELD_BY_RESPONSE_AND_HOLD) return hfp_enhanced_call_status[index]; 1660aee97efSMilanka Ringwald return "not defined"; 1670aee97efSMilanka Ringwald } 1680aee97efSMilanka Ringwald 1690aee97efSMilanka Ringwald const char * hfp_enhanced_call_mode2str(uint16_t index){ 1700aee97efSMilanka Ringwald if (index <= HFP_ENHANCED_CALL_MODE_FAX) return hfp_enhanced_call_mode[index]; 1710aee97efSMilanka Ringwald return "not defined"; 1720aee97efSMilanka Ringwald } 1730aee97efSMilanka Ringwald 1740aee97efSMilanka Ringwald const char * hfp_enhanced_call_mpty2str(uint16_t index){ 1750aee97efSMilanka Ringwald if (index <= HFP_ENHANCED_CALL_MPTY_CONFERENCE_CALL) return hfp_enhanced_call_mpty[index]; 1760aee97efSMilanka Ringwald return "not defined"; 1770aee97efSMilanka Ringwald } 1780aee97efSMilanka Ringwald 17925789943SMilanka Ringwald static uint16_t hfp_parse_indicator_index(hfp_connection_t * hfp_connection){ 18025789943SMilanka Ringwald uint16_t index = btstack_atoi((char *)&hfp_connection->line_buffer[0]); 18125789943SMilanka Ringwald 18225789943SMilanka Ringwald if (index > HFP_MAX_NUM_INDICATORS){ 18325789943SMilanka Ringwald log_info("ignoring invalid indicator index bigger then HFP_MAX_NUM_INDICATORS"); 18425789943SMilanka Ringwald return HFP_MAX_NUM_INDICATORS - 1; 18525789943SMilanka Ringwald } 18625789943SMilanka Ringwald 18725789943SMilanka Ringwald // indicator index enumeration starts with 1, we substract 1 to store in array with starting index 0 18825789943SMilanka Ringwald if (index > 0){ 18925789943SMilanka Ringwald index -= 1; 19025789943SMilanka Ringwald } else { 19125789943SMilanka Ringwald log_info("ignoring invalid indicator index 0"); 19225789943SMilanka Ringwald return 0; 19325789943SMilanka Ringwald } 19425789943SMilanka Ringwald return index; 19525789943SMilanka Ringwald } 19625789943SMilanka Ringwald 19725789943SMilanka Ringwald static void hfp_next_indicators_index(hfp_connection_t * hfp_connection){ 19825789943SMilanka Ringwald if (hfp_connection->parser_item_index < HFP_MAX_NUM_INDICATORS - 1){ 19925789943SMilanka Ringwald hfp_connection->parser_item_index++; 20025789943SMilanka Ringwald } else { 20125789943SMilanka Ringwald log_info("Ignoring additional indicator"); 20225789943SMilanka Ringwald } 20325789943SMilanka Ringwald } 20425789943SMilanka Ringwald 20525789943SMilanka Ringwald static void hfp_next_codec_index(hfp_connection_t * hfp_connection){ 20625789943SMilanka Ringwald if (hfp_connection->parser_item_index < HFP_MAX_NUM_CODECS - 1){ 20725789943SMilanka Ringwald hfp_connection->parser_item_index++; 20825789943SMilanka Ringwald } else { 20925789943SMilanka Ringwald log_info("Ignoring additional codec index"); 21025789943SMilanka Ringwald } 21125789943SMilanka Ringwald } 21225789943SMilanka Ringwald 213eed67a37SMilanka Ringwald static void hfp_next_remote_call_services_index(hfp_connection_t * hfp_connection){ 214eed67a37SMilanka Ringwald if (hfp_connection->remote_call_services_index < HFP_MAX_NUM_CALL_SERVICES - 1){ 215eed67a37SMilanka Ringwald hfp_connection->remote_call_services_index++; 216eed67a37SMilanka Ringwald } else { 217eed67a37SMilanka Ringwald log_info("Ignoring additional remote_call_services"); 218eed67a37SMilanka Ringwald } 219eed67a37SMilanka Ringwald } 22025789943SMilanka Ringwald 2213deb3ec6SMatthias Ringwald const char * hfp_hf_feature(int index){ 2223deb3ec6SMatthias Ringwald if (index > HFP_HF_FEATURES_SIZE){ 2233deb3ec6SMatthias Ringwald return hfp_hf_features[HFP_HF_FEATURES_SIZE]; 2243deb3ec6SMatthias Ringwald } 2253deb3ec6SMatthias Ringwald return hfp_hf_features[index]; 2263deb3ec6SMatthias Ringwald } 2273deb3ec6SMatthias Ringwald 2283deb3ec6SMatthias Ringwald const char * hfp_ag_feature(int index){ 2293deb3ec6SMatthias Ringwald if (index > HFP_AG_FEATURES_SIZE){ 2303deb3ec6SMatthias Ringwald return hfp_ag_features[HFP_AG_FEATURES_SIZE]; 2313deb3ec6SMatthias Ringwald } 2323deb3ec6SMatthias Ringwald return hfp_ag_features[index]; 2333deb3ec6SMatthias Ringwald } 2343deb3ec6SMatthias Ringwald 2353deb3ec6SMatthias Ringwald int send_str_over_rfcomm(uint16_t cid, char * command){ 2363deb3ec6SMatthias Ringwald if (!rfcomm_can_send_packet_now(cid)) return 1; 23774386ee0SMatthias Ringwald log_info("HFP_TX %s", command); 23828190c0bSMatthias Ringwald int err = rfcomm_send(cid, (uint8_t*) command, strlen(command)); 2393deb3ec6SMatthias Ringwald if (err){ 24028190c0bSMatthias Ringwald log_error("rfcomm_send -> error 0x%02x \n", err); 2413deb3ec6SMatthias Ringwald } 242e43d1938SMatthias Ringwald #ifdef ENABLE_HFP_AT_MESSAGES 243e43d1938SMatthias Ringwald hfp_connection_t * hfp_connection = get_hfp_connection_context_for_rfcomm_cid(cid); 244e43d1938SMatthias Ringwald hfp_emit_string_event(hfp_connection, HFP_SUBEVENT_AT_MESSAGE_SENT, command); 245e43d1938SMatthias Ringwald #endif 2463deb3ec6SMatthias Ringwald return 1; 2473deb3ec6SMatthias Ringwald } 2483deb3ec6SMatthias Ringwald 2496a7f44bdSMilanka Ringwald int hfp_supports_codec(uint8_t codec, int codecs_nr, uint8_t * codecs){ 250e8d1dc0dSMatthias Ringwald 251e8d1dc0dSMatthias Ringwald // mSBC requires support for eSCO connections 252c1ab6cc1SMatthias Ringwald if ((codec == HFP_CODEC_MSBC) && !hci_extended_sco_link_supported()) return 0; 253e8d1dc0dSMatthias Ringwald 254df327ff3SMilanka Ringwald int i; 255df327ff3SMilanka Ringwald for (i = 0; i < codecs_nr; i++){ 256e8d1dc0dSMatthias Ringwald if (codecs[i] != codec) continue; 257e8d1dc0dSMatthias Ringwald return 1; 258df327ff3SMilanka Ringwald } 259df327ff3SMilanka Ringwald return 0; 260df327ff3SMilanka Ringwald } 261df327ff3SMilanka Ringwald 262d715cf51SMatthias Ringwald void hfp_hf_drop_mSBC_if_eSCO_not_supported(uint8_t * codecs, uint8_t * codecs_nr){ 263d715cf51SMatthias Ringwald if (hci_extended_sco_link_supported()) return; 264d715cf51SMatthias Ringwald uint8_t tmp_codecs[HFP_MAX_NUM_CODECS]; 265d715cf51SMatthias Ringwald int i; 266d715cf51SMatthias Ringwald int tmp_codec_nr = 0; 267d715cf51SMatthias Ringwald for (i=0; i < *codecs_nr; i++){ 268d715cf51SMatthias Ringwald if (codecs[i] == HFP_CODEC_MSBC) continue; 269d715cf51SMatthias Ringwald tmp_codecs[tmp_codec_nr++] = codecs[i]; 270d715cf51SMatthias Ringwald } 271d715cf51SMatthias Ringwald *codecs_nr = tmp_codec_nr; 2726535961aSMatthias Ringwald (void)memcpy(codecs, tmp_codecs, tmp_codec_nr); 273d715cf51SMatthias Ringwald } 274d715cf51SMatthias Ringwald 2753deb3ec6SMatthias Ringwald // UTILS 2763deb3ec6SMatthias Ringwald int get_bit(uint16_t bitmap, int position){ 2773deb3ec6SMatthias Ringwald return (bitmap >> position) & 1; 2783deb3ec6SMatthias Ringwald } 2793deb3ec6SMatthias Ringwald 2803deb3ec6SMatthias Ringwald int store_bit(uint32_t bitmap, int position, uint8_t value){ 2813deb3ec6SMatthias Ringwald if (value){ 2823deb3ec6SMatthias Ringwald bitmap |= 1 << position; 2833deb3ec6SMatthias Ringwald } else { 2843deb3ec6SMatthias Ringwald bitmap &= ~ (1 << position); 2853deb3ec6SMatthias Ringwald } 2863deb3ec6SMatthias Ringwald return bitmap; 2873deb3ec6SMatthias Ringwald } 2883deb3ec6SMatthias Ringwald 2893deb3ec6SMatthias Ringwald int join(char * buffer, int buffer_size, uint8_t * values, int values_nr){ 290c1ab6cc1SMatthias Ringwald if (buffer_size < (values_nr * 3)) return 0; 2913deb3ec6SMatthias Ringwald int i; 2923deb3ec6SMatthias Ringwald int offset = 0; 293c1ab6cc1SMatthias Ringwald for (i = 0; i < (values_nr-1); i++) { 2943deb3ec6SMatthias Ringwald offset += snprintf(buffer+offset, buffer_size-offset, "%d,", values[i]); // puts string into buffer 2953deb3ec6SMatthias Ringwald } 2963deb3ec6SMatthias Ringwald if (i<values_nr){ 2973deb3ec6SMatthias Ringwald offset += snprintf(buffer+offset, buffer_size-offset, "%d", values[i]); 2983deb3ec6SMatthias Ringwald } 2993deb3ec6SMatthias Ringwald return offset; 3003deb3ec6SMatthias Ringwald } 3013deb3ec6SMatthias Ringwald 3023deb3ec6SMatthias Ringwald int join_bitmap(char * buffer, int buffer_size, uint32_t values, int values_nr){ 303c1ab6cc1SMatthias Ringwald if (buffer_size < (values_nr * 3)) return 0; 3043deb3ec6SMatthias Ringwald 3053deb3ec6SMatthias Ringwald int i; 3063deb3ec6SMatthias Ringwald int offset = 0; 307c1ab6cc1SMatthias Ringwald for (i = 0; i < (values_nr-1); i++) { 3083deb3ec6SMatthias Ringwald offset += snprintf(buffer+offset, buffer_size-offset, "%d,", get_bit(values,i)); // puts string into buffer 3093deb3ec6SMatthias Ringwald } 3103deb3ec6SMatthias Ringwald 3113deb3ec6SMatthias Ringwald if (i<values_nr){ 3123deb3ec6SMatthias Ringwald offset += snprintf(buffer+offset, buffer_size-offset, "%d", get_bit(values,i)); 3133deb3ec6SMatthias Ringwald } 3143deb3ec6SMatthias Ringwald return offset; 3153deb3ec6SMatthias Ringwald } 3163deb3ec6SMatthias Ringwald 317ca59be51SMatthias Ringwald static void hfp_emit_event_for_context(hfp_connection_t * hfp_connection, uint8_t * packet, uint16_t size){ 318ca59be51SMatthias Ringwald if (!hfp_connection) return; 319ca59be51SMatthias Ringwald btstack_packet_handler_t callback = NULL; 320ca59be51SMatthias Ringwald switch (hfp_connection->local_role){ 321ca59be51SMatthias Ringwald case HFP_ROLE_HF: 322ca59be51SMatthias Ringwald callback = hfp_hf_callback; 323671f1aa2SMatthias Ringwald break; 324ca59be51SMatthias Ringwald case HFP_ROLE_AG: 325ca59be51SMatthias Ringwald callback = hfp_ag_callback; 326671f1aa2SMatthias Ringwald break; 327ca59be51SMatthias Ringwald default: 328ca59be51SMatthias Ringwald return; 329ca59be51SMatthias Ringwald } 330ca59be51SMatthias Ringwald (*callback)(HCI_EVENT_PACKET, 0, packet, size); 331ca59be51SMatthias Ringwald } 332ca59be51SMatthias Ringwald 333ca59be51SMatthias Ringwald void hfp_emit_simple_event(hfp_connection_t * hfp_connection, uint8_t event_subtype){ 334a0ffb263SMatthias Ringwald uint8_t event[3]; 335a0ffb263SMatthias Ringwald event[0] = HCI_EVENT_HFP_META; 336a0ffb263SMatthias Ringwald event[1] = sizeof(event) - 2; 337a0ffb263SMatthias Ringwald event[2] = event_subtype; 338ca59be51SMatthias Ringwald hfp_emit_event_for_context(hfp_connection, event, sizeof(event)); 339a0ffb263SMatthias Ringwald } 340a0ffb263SMatthias Ringwald 341ca59be51SMatthias Ringwald void hfp_emit_event(hfp_connection_t * hfp_connection, uint8_t event_subtype, uint8_t value){ 3423deb3ec6SMatthias Ringwald uint8_t event[4]; 3433deb3ec6SMatthias Ringwald event[0] = HCI_EVENT_HFP_META; 3443deb3ec6SMatthias Ringwald event[1] = sizeof(event) - 2; 3453deb3ec6SMatthias Ringwald event[2] = event_subtype; 3463deb3ec6SMatthias Ringwald event[3] = value; // status 0 == OK 347ca59be51SMatthias Ringwald hfp_emit_event_for_context(hfp_connection, event, sizeof(event)); 3483deb3ec6SMatthias Ringwald } 3493deb3ec6SMatthias Ringwald 350ca59be51SMatthias Ringwald void hfp_emit_slc_connection_event(hfp_connection_t * hfp_connection, uint8_t status, hci_con_handle_t con_handle, bd_addr_t addr){ 3518901a7c4SMatthias Ringwald uint8_t event[12]; 3526a7f44bdSMilanka Ringwald int pos = 0; 3536a7f44bdSMilanka Ringwald event[pos++] = HCI_EVENT_HFP_META; 3546a7f44bdSMilanka Ringwald event[pos++] = sizeof(event) - 2; 355d0c4aea6SMilanka Ringwald event[pos++] = HFP_SUBEVENT_SERVICE_LEVEL_CONNECTION_ESTABLISHED; 3566a7f44bdSMilanka Ringwald event[pos++] = status; // status 0 == OK 3576a7f44bdSMilanka Ringwald little_endian_store_16(event, pos, con_handle); 3586a7f44bdSMilanka Ringwald pos += 2; 3596a7f44bdSMilanka Ringwald reverse_bd_addr(addr,&event[pos]); 3606a7f44bdSMilanka Ringwald pos += 6; 361ca59be51SMatthias Ringwald hfp_emit_event_for_context(hfp_connection, event, sizeof(event)); 362a0653c3bSMilanka Ringwald } 363a0653c3bSMilanka Ringwald 364*5441d52fSMatthias Ringwald static void hfp_emit_audio_connection_released(hfp_connection_t * hfp_connection){ 365*5441d52fSMatthias Ringwald uint8_t event[3]; 366*5441d52fSMatthias Ringwald int pos = 0; 367*5441d52fSMatthias Ringwald event[pos++] = HCI_EVENT_HFP_META; 368*5441d52fSMatthias Ringwald event[pos++] = sizeof(event) - 2; 369*5441d52fSMatthias Ringwald event[pos++] = HFP_SUBEVENT_AUDIO_CONNECTION_RELEASED; 370*5441d52fSMatthias Ringwald hfp_emit_event_for_context(hfp_connection, event, sizeof(event)); 371*5441d52fSMatthias Ringwald } 372*5441d52fSMatthias Ringwald 373f2a3f984SMilanka Ringwald void hfp_emit_sco_event(hfp_connection_t * hfp_connection, uint8_t status, hci_con_handle_t con_handle, bd_addr_t addr, uint8_t negotiated_codec){ 374d0c4aea6SMilanka Ringwald uint8_t event[13]; 375d0c4aea6SMilanka Ringwald int pos = 0; 376d0c4aea6SMilanka Ringwald event[pos++] = HCI_EVENT_HFP_META; 377d0c4aea6SMilanka Ringwald event[pos++] = sizeof(event) - 2; 378d0c4aea6SMilanka Ringwald event[pos++] = HFP_SUBEVENT_AUDIO_CONNECTION_ESTABLISHED; 379d0c4aea6SMilanka Ringwald event[pos++] = status; // status 0 == OK 380d0c4aea6SMilanka Ringwald little_endian_store_16(event, pos, con_handle); 381d0c4aea6SMilanka Ringwald pos += 2; 382d0c4aea6SMilanka Ringwald reverse_bd_addr(addr,&event[pos]); 383d0c4aea6SMilanka Ringwald pos += 6; 384d0c4aea6SMilanka Ringwald event[pos++] = negotiated_codec; 385ca59be51SMatthias Ringwald hfp_emit_event_for_context(hfp_connection, event, sizeof(event)); 386d0c4aea6SMilanka Ringwald } 387d0c4aea6SMilanka Ringwald 388ca59be51SMatthias Ringwald void hfp_emit_string_event(hfp_connection_t * hfp_connection, uint8_t event_subtype, const char * value){ 3892c50df93SBjoern Hartmann #ifdef ENABLE_HFP_AT_MESSAGES 3902c50df93SBjoern Hartmann uint8_t event[256]; 3912c50df93SBjoern Hartmann #else 392c1797c7dSMatthias Ringwald uint8_t event[40]; 3932c50df93SBjoern Hartmann #endif 394aa4dd815SMatthias Ringwald event[0] = HCI_EVENT_HFP_META; 395aa4dd815SMatthias Ringwald event[1] = sizeof(event) - 2; 396aa4dd815SMatthias Ringwald event[2] = event_subtype; 39709ca35c4SMilanka Ringwald uint16_t size = btstack_min(strlen(value), sizeof(event) - 4); 398aa4dd815SMatthias Ringwald strncpy((char*)&event[3], value, size); 399aa4dd815SMatthias Ringwald event[3 + size] = 0; 400ca59be51SMatthias Ringwald hfp_emit_event_for_context(hfp_connection, event, sizeof(event)); 401aa4dd815SMatthias Ringwald } 402aa4dd815SMatthias Ringwald 4030cb5b971SMatthias Ringwald btstack_linked_list_t * hfp_get_connections(void){ 4048f2a52f4SMatthias Ringwald return (btstack_linked_list_t *) &hfp_connections; 4053deb3ec6SMatthias Ringwald } 4063deb3ec6SMatthias Ringwald 4073deb3ec6SMatthias Ringwald hfp_connection_t * get_hfp_connection_context_for_rfcomm_cid(uint16_t cid){ 408665d90f2SMatthias Ringwald btstack_linked_list_iterator_t it; 409665d90f2SMatthias Ringwald btstack_linked_list_iterator_init(&it, hfp_get_connections()); 410665d90f2SMatthias Ringwald while (btstack_linked_list_iterator_has_next(&it)){ 411a0ffb263SMatthias Ringwald hfp_connection_t * hfp_connection = (hfp_connection_t *)btstack_linked_list_iterator_next(&it); 412a0ffb263SMatthias Ringwald if (hfp_connection->rfcomm_cid == cid){ 413a0ffb263SMatthias Ringwald return hfp_connection; 4143deb3ec6SMatthias Ringwald } 4153deb3ec6SMatthias Ringwald } 4163deb3ec6SMatthias Ringwald return NULL; 4173deb3ec6SMatthias Ringwald } 4183deb3ec6SMatthias Ringwald 419405014fbSMatthias Ringwald hfp_connection_t * get_hfp_connection_context_for_bd_addr(bd_addr_t bd_addr, hfp_role_t hfp_role){ 420665d90f2SMatthias Ringwald btstack_linked_list_iterator_t it; 421665d90f2SMatthias Ringwald btstack_linked_list_iterator_init(&it, hfp_get_connections()); 422665d90f2SMatthias Ringwald while (btstack_linked_list_iterator_has_next(&it)){ 423a0ffb263SMatthias Ringwald hfp_connection_t * hfp_connection = (hfp_connection_t *)btstack_linked_list_iterator_next(&it); 4245df9dc78SMatthias Ringwald if ((memcmp(hfp_connection->remote_addr, bd_addr, 6) == 0) && (hfp_connection->local_role == hfp_role)) { 425a0ffb263SMatthias Ringwald return hfp_connection; 4263deb3ec6SMatthias Ringwald } 4273deb3ec6SMatthias Ringwald } 4283deb3ec6SMatthias Ringwald return NULL; 4293deb3ec6SMatthias Ringwald } 4303deb3ec6SMatthias Ringwald 431405014fbSMatthias Ringwald hfp_connection_t * get_hfp_connection_context_for_sco_handle(uint16_t handle, hfp_role_t hfp_role){ 432665d90f2SMatthias Ringwald btstack_linked_list_iterator_t it; 433665d90f2SMatthias Ringwald btstack_linked_list_iterator_init(&it, hfp_get_connections()); 434665d90f2SMatthias Ringwald while (btstack_linked_list_iterator_has_next(&it)){ 435a0ffb263SMatthias Ringwald hfp_connection_t * hfp_connection = (hfp_connection_t *)btstack_linked_list_iterator_next(&it); 436c1ab6cc1SMatthias Ringwald if ((hfp_connection->sco_handle == handle) && (hfp_connection->local_role == hfp_role)){ 437a0ffb263SMatthias Ringwald return hfp_connection; 4383deb3ec6SMatthias Ringwald } 4393deb3ec6SMatthias Ringwald } 4403deb3ec6SMatthias Ringwald return NULL; 4413deb3ec6SMatthias Ringwald } 4423deb3ec6SMatthias Ringwald 443405014fbSMatthias Ringwald hfp_connection_t * get_hfp_connection_context_for_acl_handle(uint16_t handle, hfp_role_t hfp_role){ 444d97d752dSMilanka Ringwald btstack_linked_list_iterator_t it; 445d97d752dSMilanka Ringwald btstack_linked_list_iterator_init(&it, hfp_get_connections()); 446d97d752dSMilanka Ringwald while (btstack_linked_list_iterator_has_next(&it)){ 447d97d752dSMilanka Ringwald hfp_connection_t * hfp_connection = (hfp_connection_t *)btstack_linked_list_iterator_next(&it); 448c1ab6cc1SMatthias Ringwald if ((hfp_connection->acl_handle == handle) && (hfp_connection->local_role == hfp_role)){ 449d97d752dSMilanka Ringwald return hfp_connection; 450d97d752dSMilanka Ringwald } 451d97d752dSMilanka Ringwald } 452d97d752dSMilanka Ringwald return NULL; 453d97d752dSMilanka Ringwald } 454d97d752dSMilanka Ringwald 455a0ffb263SMatthias Ringwald void hfp_reset_context_flags(hfp_connection_t * hfp_connection){ 456a0ffb263SMatthias Ringwald if (!hfp_connection) return; 457a0ffb263SMatthias Ringwald hfp_connection->ok_pending = 0; 458a0ffb263SMatthias Ringwald hfp_connection->send_error = 0; 4593deb3ec6SMatthias Ringwald 460dd533208SMatthias Ringwald hfp_connection->found_equal_sign = false; 4613deb3ec6SMatthias Ringwald 462a0ffb263SMatthias Ringwald hfp_connection->change_status_update_for_individual_ag_indicators = 0; 463a0ffb263SMatthias Ringwald hfp_connection->operator_name_changed = 0; 4643deb3ec6SMatthias Ringwald 465a0ffb263SMatthias Ringwald hfp_connection->enable_extended_audio_gateway_error_report = 0; 466a0ffb263SMatthias Ringwald hfp_connection->extended_audio_gateway_error = 0; 4673deb3ec6SMatthias Ringwald 468a0ffb263SMatthias Ringwald // establish codecs hfp_connection 469a0ffb263SMatthias Ringwald hfp_connection->suggested_codec = 0; 4707522e673SMatthias Ringwald hfp_connection->negotiated_codec = 0; 471a0ffb263SMatthias Ringwald hfp_connection->codec_confirmed = 0; 4723deb3ec6SMatthias Ringwald 473a0ffb263SMatthias Ringwald hfp_connection->establish_audio_connection = 0; 474a0ffb263SMatthias Ringwald hfp_connection->call_waiting_notification_enabled = 0; 475a0ffb263SMatthias Ringwald hfp_connection->command = HFP_CMD_NONE; 476a0ffb263SMatthias Ringwald hfp_connection->enable_status_update_for_ag_indicators = 0xFF; 4773deb3ec6SMatthias Ringwald } 4783deb3ec6SMatthias Ringwald 479fffdd288SMatthias Ringwald static hfp_connection_t * create_hfp_connection_context(void){ 480a0ffb263SMatthias Ringwald hfp_connection_t * hfp_connection = btstack_memory_hfp_connection_get(); 481a0ffb263SMatthias Ringwald if (!hfp_connection) return NULL; 4823deb3ec6SMatthias Ringwald 483a0ffb263SMatthias Ringwald hfp_connection->state = HFP_IDLE; 484a0ffb263SMatthias Ringwald hfp_connection->call_state = HFP_CALL_IDLE; 485a0ffb263SMatthias Ringwald hfp_connection->codecs_state = HFP_CODECS_IDLE; 486aa4dd815SMatthias Ringwald 487a0ffb263SMatthias Ringwald hfp_connection->parser_state = HFP_PARSER_CMD_HEADER; 488a0ffb263SMatthias Ringwald hfp_connection->command = HFP_CMD_NONE; 4893deb3ec6SMatthias Ringwald 490d751f069SMatthias Ringwald hfp_connection->acl_handle = HCI_CON_HANDLE_INVALID; 491d751f069SMatthias Ringwald hfp_connection->sco_handle = HCI_CON_HANDLE_INVALID; 492d751f069SMatthias Ringwald 493a0ffb263SMatthias Ringwald hfp_reset_context_flags(hfp_connection); 4943deb3ec6SMatthias Ringwald 495d63c37a1SMatthias Ringwald btstack_linked_list_add(&hfp_connections, (btstack_linked_item_t*)hfp_connection); 496a0ffb263SMatthias Ringwald return hfp_connection; 4973deb3ec6SMatthias Ringwald } 4983deb3ec6SMatthias Ringwald 49948e6eeeeSMatthias Ringwald void hfp_finalize_connection_context(hfp_connection_t * hfp_connection){ 500a0ffb263SMatthias Ringwald btstack_linked_list_remove(&hfp_connections, (btstack_linked_item_t*) hfp_connection); 50109a233a1SMatthias Ringwald btstack_memory_hfp_connection_free(hfp_connection); 5023deb3ec6SMatthias Ringwald } 5033deb3ec6SMatthias Ringwald 504323d3000SMatthias Ringwald static hfp_connection_t * provide_hfp_connection_context_for_bd_addr(bd_addr_t bd_addr, hfp_role_t local_role){ 505405014fbSMatthias Ringwald hfp_connection_t * hfp_connection = get_hfp_connection_context_for_bd_addr(bd_addr, local_role); 506a0ffb263SMatthias Ringwald if (hfp_connection) return hfp_connection; 507a0ffb263SMatthias Ringwald hfp_connection = create_hfp_connection_context(); 5086535961aSMatthias Ringwald (void)memcpy(hfp_connection->remote_addr, bd_addr, 6); 509323d3000SMatthias Ringwald hfp_connection->local_role = local_role; 510bdf572f4SMatthias Ringwald log_info("Create HFP context %p: role %u, addr %s", hfp_connection, local_role, bd_addr_to_str(bd_addr)); 511bdf572f4SMatthias Ringwald 512a0ffb263SMatthias Ringwald return hfp_connection; 5133deb3ec6SMatthias Ringwald } 5143deb3ec6SMatthias Ringwald 515aa4dd815SMatthias Ringwald /* @param network. 516aa4dd815SMatthias Ringwald * 0 == no ability to reject a call. 517aa4dd815SMatthias Ringwald * 1 == ability to reject a call. 518aa4dd815SMatthias Ringwald */ 5193deb3ec6SMatthias Ringwald 5203deb3ec6SMatthias Ringwald /* @param suported_features 5213deb3ec6SMatthias Ringwald * HF bit 0: EC and/or NR function (yes/no, 1 = yes, 0 = no) 5223deb3ec6SMatthias Ringwald * HF bit 1: Call waiting or three-way calling(yes/no, 1 = yes, 0 = no) 5233deb3ec6SMatthias Ringwald * HF bit 2: CLI presentation capability (yes/no, 1 = yes, 0 = no) 5243deb3ec6SMatthias Ringwald * HF bit 3: Voice recognition activation (yes/no, 1= yes, 0 = no) 5253deb3ec6SMatthias Ringwald * HF bit 4: Remote volume control (yes/no, 1 = yes, 0 = no) 5263deb3ec6SMatthias Ringwald * HF bit 5: Wide band speech (yes/no, 1 = yes, 0 = no) 5273deb3ec6SMatthias Ringwald */ 5283deb3ec6SMatthias Ringwald /* Bit position: 5293deb3ec6SMatthias Ringwald * AG bit 0: Three-way calling (yes/no, 1 = yes, 0 = no) 5303deb3ec6SMatthias Ringwald * AG bit 1: EC and/or NR function (yes/no, 1 = yes, 0 = no) 5313deb3ec6SMatthias Ringwald * AG bit 2: Voice recognition function (yes/no, 1 = yes, 0 = no) 5323deb3ec6SMatthias Ringwald * AG bit 3: In-band ring tone capability (yes/no, 1 = yes, 0 = no) 5333deb3ec6SMatthias Ringwald * AG bit 4: Attach a phone number to a voice tag (yes/no, 1 = yes, 0 = no) 5343deb3ec6SMatthias Ringwald * AG bit 5: Wide band speech (yes/no, 1 = yes, 0 = no) 5353deb3ec6SMatthias Ringwald */ 5363deb3ec6SMatthias Ringwald 5379b1c3b4dSMatthias 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){ 5383deb3ec6SMatthias Ringwald uint8_t* attribute; 5393deb3ec6SMatthias Ringwald de_create_sequence(service); 5403deb3ec6SMatthias Ringwald 5413deb3ec6SMatthias Ringwald // 0x0000 "Service Record Handle" 542235946f1SMatthias Ringwald de_add_number(service, DE_UINT, DE_SIZE_16, BLUETOOTH_ATTRIBUTE_SERVICE_RECORD_HANDLE); 5439b1c3b4dSMatthias Ringwald de_add_number(service, DE_UINT, DE_SIZE_32, service_record_handle); 5443deb3ec6SMatthias Ringwald 5453deb3ec6SMatthias Ringwald // 0x0001 "Service Class ID List" 546235946f1SMatthias Ringwald de_add_number(service, DE_UINT, DE_SIZE_16, BLUETOOTH_ATTRIBUTE_SERVICE_CLASS_ID_LIST); 5473deb3ec6SMatthias Ringwald attribute = de_push_sequence(service); 5483deb3ec6SMatthias Ringwald { 5493deb3ec6SMatthias Ringwald // "UUID for Service" 5503deb3ec6SMatthias Ringwald de_add_number(attribute, DE_UUID, DE_SIZE_16, service_uuid); 551235946f1SMatthias Ringwald de_add_number(attribute, DE_UUID, DE_SIZE_16, BLUETOOTH_SERVICE_CLASS_GENERIC_AUDIO); 5523deb3ec6SMatthias Ringwald } 5533deb3ec6SMatthias Ringwald de_pop_sequence(service, attribute); 5543deb3ec6SMatthias Ringwald 5553deb3ec6SMatthias Ringwald // 0x0004 "Protocol Descriptor List" 556235946f1SMatthias Ringwald de_add_number(service, DE_UINT, DE_SIZE_16, BLUETOOTH_ATTRIBUTE_PROTOCOL_DESCRIPTOR_LIST); 5573deb3ec6SMatthias Ringwald attribute = de_push_sequence(service); 5583deb3ec6SMatthias Ringwald { 5593deb3ec6SMatthias Ringwald uint8_t* l2cpProtocol = de_push_sequence(attribute); 5603deb3ec6SMatthias Ringwald { 561235946f1SMatthias Ringwald de_add_number(l2cpProtocol, DE_UUID, DE_SIZE_16, BLUETOOTH_PROTOCOL_L2CAP); 5623deb3ec6SMatthias Ringwald } 5633deb3ec6SMatthias Ringwald de_pop_sequence(attribute, l2cpProtocol); 5643deb3ec6SMatthias Ringwald 5653deb3ec6SMatthias Ringwald uint8_t* rfcomm = de_push_sequence(attribute); 5663deb3ec6SMatthias Ringwald { 567235946f1SMatthias Ringwald de_add_number(rfcomm, DE_UUID, DE_SIZE_16, BLUETOOTH_PROTOCOL_RFCOMM); // rfcomm_service 5683deb3ec6SMatthias Ringwald de_add_number(rfcomm, DE_UINT, DE_SIZE_8, rfcomm_channel_nr); // rfcomm channel 5693deb3ec6SMatthias Ringwald } 5703deb3ec6SMatthias Ringwald de_pop_sequence(attribute, rfcomm); 5713deb3ec6SMatthias Ringwald } 5723deb3ec6SMatthias Ringwald de_pop_sequence(service, attribute); 5733deb3ec6SMatthias Ringwald 5743deb3ec6SMatthias Ringwald 5753deb3ec6SMatthias Ringwald // 0x0005 "Public Browse Group" 576235946f1SMatthias Ringwald de_add_number(service, DE_UINT, DE_SIZE_16, BLUETOOTH_ATTRIBUTE_BROWSE_GROUP_LIST); // public browse group 5773deb3ec6SMatthias Ringwald attribute = de_push_sequence(service); 5783deb3ec6SMatthias Ringwald { 579235946f1SMatthias Ringwald de_add_number(attribute, DE_UUID, DE_SIZE_16, BLUETOOTH_ATTRIBUTE_PUBLIC_BROWSE_ROOT); 5803deb3ec6SMatthias Ringwald } 5813deb3ec6SMatthias Ringwald de_pop_sequence(service, attribute); 5823deb3ec6SMatthias Ringwald 5833deb3ec6SMatthias Ringwald // 0x0009 "Bluetooth Profile Descriptor List" 584235946f1SMatthias Ringwald de_add_number(service, DE_UINT, DE_SIZE_16, BLUETOOTH_ATTRIBUTE_BLUETOOTH_PROFILE_DESCRIPTOR_LIST); 5853deb3ec6SMatthias Ringwald attribute = de_push_sequence(service); 5863deb3ec6SMatthias Ringwald { 5873deb3ec6SMatthias Ringwald uint8_t *sppProfile = de_push_sequence(attribute); 5883deb3ec6SMatthias Ringwald { 589235946f1SMatthias Ringwald de_add_number(sppProfile, DE_UUID, DE_SIZE_16, BLUETOOTH_SERVICE_CLASS_HANDSFREE); 5903deb3ec6SMatthias Ringwald de_add_number(sppProfile, DE_UINT, DE_SIZE_16, 0x0107); // Verision 1.7 5913deb3ec6SMatthias Ringwald } 5923deb3ec6SMatthias Ringwald de_pop_sequence(attribute, sppProfile); 5933deb3ec6SMatthias Ringwald } 5943deb3ec6SMatthias Ringwald de_pop_sequence(service, attribute); 5953deb3ec6SMatthias Ringwald 5963deb3ec6SMatthias Ringwald // 0x0100 "Service Name" 5973deb3ec6SMatthias Ringwald de_add_number(service, DE_UINT, DE_SIZE_16, 0x0100); 5983deb3ec6SMatthias Ringwald de_add_data(service, DE_STRING, strlen(name), (uint8_t *) name); 5993deb3ec6SMatthias Ringwald } 6003deb3ec6SMatthias Ringwald 6016c927b22SMatthias Ringwald static void handle_query_rfcomm_event(uint8_t packet_type, uint16_t channel, uint8_t *packet, uint16_t size){ 6028a46ec40SMatthias Ringwald UNUSED(packet_type); // ok: handling own sdp events 6038a46ec40SMatthias Ringwald UNUSED(channel); // ok: no channel 6048a46ec40SMatthias Ringwald UNUSED(size); // ok: handling own sdp events 6051d9c9c90SMilanka Ringwald 6061d9c9c90SMilanka Ringwald hfp_connection_t * hfp_connection = get_hfp_connection_context_for_bd_addr(sdp_query_context.remote_address, sdp_query_context.local_role); 6071d9c9c90SMilanka Ringwald if (hfp_connection == NULL) { 6081d9c9c90SMilanka Ringwald log_info("connection with %s and local role %d not found", sdp_query_context.remote_address, sdp_query_context.local_role); 60984904e95SMilanka Ringwald return; 61084904e95SMilanka Ringwald } 6113deb3ec6SMatthias Ringwald 6120e2df43fSMatthias Ringwald switch (hci_event_packet_get_type(packet)){ 6135611a760SMatthias Ringwald case SDP_EVENT_QUERY_RFCOMM_SERVICE: 614a0ffb263SMatthias Ringwald hfp_connection->rfcomm_channel_nr = sdp_event_query_rfcomm_service_get_rfcomm_channel(packet); 6153deb3ec6SMatthias Ringwald break; 6165611a760SMatthias Ringwald case SDP_EVENT_QUERY_COMPLETE: 617a0ffb263SMatthias Ringwald if (hfp_connection->rfcomm_channel_nr > 0){ 618a0ffb263SMatthias Ringwald hfp_connection->state = HFP_W4_RFCOMM_CONNECTED; 619520c92d5SMatthias Ringwald btstack_packet_handler_t packet_handler; 620520c92d5SMatthias Ringwald switch (hfp_connection->local_role){ 621520c92d5SMatthias Ringwald case HFP_ROLE_AG: 622520c92d5SMatthias Ringwald packet_handler = hfp_ag_rfcomm_packet_handler; 623520c92d5SMatthias Ringwald break; 624520c92d5SMatthias Ringwald case HFP_ROLE_HF: 625520c92d5SMatthias Ringwald packet_handler = hfp_hf_rfcomm_packet_handler; 626520c92d5SMatthias Ringwald break; 627520c92d5SMatthias Ringwald default: 6281d9c9c90SMilanka Ringwald btstack_assert(false); 629520c92d5SMatthias Ringwald return; 630520c92d5SMatthias Ringwald } 6311d9c9c90SMilanka Ringwald 632ca59be51SMatthias Ringwald rfcomm_create_channel(packet_handler, hfp_connection->remote_addr, hfp_connection->rfcomm_channel_nr, NULL); 6331d9c9c90SMilanka Ringwald 6341d9c9c90SMilanka Ringwald } else { 63584904e95SMilanka Ringwald hfp_connection->state = HFP_IDLE; 636cc92f22bSMatthias Ringwald uint8_t status = sdp_event_query_complete_get_status(packet); 637cc92f22bSMatthias Ringwald if (status == ERROR_CODE_SUCCESS){ 638cc92f22bSMatthias Ringwald // report service not found 639cc92f22bSMatthias Ringwald status = SDP_SERVICE_NOT_FOUND; 640cc92f22bSMatthias Ringwald } 641cc92f22bSMatthias Ringwald hfp_emit_slc_connection_event(hfp_connection, status, HCI_CON_HANDLE_INVALID, hfp_connection->remote_addr); 642cc92f22bSMatthias Ringwald log_info("rfcomm service not found, status 0x%02x", status); 6431d9c9c90SMilanka Ringwald } 6441d9c9c90SMilanka Ringwald 6451d9c9c90SMilanka Ringwald // register the SDP Query request to check if there is another connection waiting for the query 6461d9c9c90SMilanka Ringwald // ignore ERROR_CODE_COMMAND_DISALLOWED because in that case, we already have requested an SDP callback 6471d9c9c90SMilanka Ringwald (void) sdp_client_register_query_callback(&hfp_handle_sdp_client_query_request); 6483deb3ec6SMatthias Ringwald break; 6493deb3ec6SMatthias Ringwald default: 6503deb3ec6SMatthias Ringwald break; 6513deb3ec6SMatthias Ringwald } 6523deb3ec6SMatthias Ringwald } 6533deb3ec6SMatthias Ringwald 65438200c1dSMilanka Ringwald // returns 0 if unexpected error or no other link options remained, otherwise 1 65538200c1dSMilanka Ringwald static int hfp_handle_failed_sco_connection(uint8_t status){ 656eddcd308SMatthias Ringwald 657eddcd308SMatthias Ringwald if (!sco_establishment_active){ 6583427dd75SMatthias Ringwald log_info("(e)SCO Connection failed but not started by us"); 65938200c1dSMilanka Ringwald return 0; 660eddcd308SMatthias Ringwald } 661eddcd308SMatthias Ringwald 6623427dd75SMatthias Ringwald log_info("(e)SCO Connection failed 0x%02x", status); 6633427dd75SMatthias Ringwald switch (status){ 6643427dd75SMatthias Ringwald case ERROR_CODE_UNSUPPORTED_FEATURE_OR_PARAMETER_VALUE: 6653427dd75SMatthias Ringwald case ERROR_CODE_UNSPECIFIED_ERROR: 6663427dd75SMatthias Ringwald case ERROR_CODE_CONNECTION_REJECTED_DUE_TO_LIMITED_RESOURCES: 667eddcd308SMatthias Ringwald break; 6683427dd75SMatthias Ringwald default: 6693427dd75SMatthias Ringwald return 0; 6703427dd75SMatthias Ringwald } 6713427dd75SMatthias Ringwald 6723427dd75SMatthias Ringwald // note: eSCO_S4 supported flag not available, but it's only relevant for highest CVSD link setting (and the current failed) 6733427dd75SMatthias Ringwald hfp_link_settings_t next_setting = hfp_next_link_setting_for_connection(sco_establishment_active->link_setting, sco_establishment_active, false); 6743427dd75SMatthias Ringwald 6753427dd75SMatthias Ringwald // handle no valid setting found 6763427dd75SMatthias Ringwald if (next_setting == HFP_LINK_SETTINGS_NONE) { 6773427dd75SMatthias Ringwald if (sco_establishment_active->negotiated_codec == HFP_CODEC_MSBC){ 6783427dd75SMatthias Ringwald log_info("T2/T1 failed, fallback to CVSD - D1"); 6797522e673SMatthias Ringwald sco_establishment_active->negotiated_codec = HFP_CODEC_CVSD; 680bc1b1537SMilanka Ringwald sco_establishment_active->sco_for_msbc_failed = 1; 681bc1b1537SMilanka Ringwald sco_establishment_active->command = HFP_CMD_AG_SEND_COMMON_CODEC; 6827522e673SMatthias Ringwald sco_establishment_active->link_setting = HFP_LINK_SETTINGS_D1; 6833427dd75SMatthias Ringwald } else { 6843427dd75SMatthias Ringwald // no other options 6853427dd75SMatthias Ringwald return 0; 686eddcd308SMatthias Ringwald } 6873427dd75SMatthias Ringwald } 6883427dd75SMatthias Ringwald 6893427dd75SMatthias Ringwald log_info("e)SCO Connection: try new link_setting %d", next_setting); 690eddcd308SMatthias Ringwald sco_establishment_active->establish_audio_connection = 1; 6913427dd75SMatthias Ringwald sco_establishment_active->link_setting = next_setting; 69238200c1dSMilanka Ringwald sco_establishment_active = NULL; 69338200c1dSMilanka Ringwald return 1; 694eddcd308SMatthias Ringwald } 695eddcd308SMatthias Ringwald 696eddcd308SMatthias Ringwald 697405014fbSMatthias Ringwald void hfp_handle_hci_event(uint8_t packet_type, uint16_t channel, uint8_t *packet, uint16_t size, hfp_role_t local_role){ 6985575558eSMilanka Ringwald UNUSED(packet_type); 6998a46ec40SMatthias Ringwald UNUSED(channel); // ok: no channel 7005575558eSMilanka Ringwald UNUSED(size); 7019ec2630cSMatthias Ringwald 7023deb3ec6SMatthias Ringwald bd_addr_t event_addr; 70327950165SMatthias Ringwald hci_con_handle_t handle; 704a0ffb263SMatthias Ringwald hfp_connection_t * hfp_connection = NULL; 705674515e8SMatthias Ringwald uint8_t status; 7063deb3ec6SMatthias Ringwald 70727950165SMatthias Ringwald log_debug("HFP HCI event handler type %u, event type %x, size %u", packet_type, hci_event_packet_get_type(packet), size); 708aa4dd815SMatthias Ringwald 7090e2df43fSMatthias Ringwald switch (hci_event_packet_get_type(packet)) { 7101b005648SMatthias Ringwald 711011577abSMilanka Ringwald case HCI_EVENT_CONNECTION_REQUEST: 7127522e673SMatthias Ringwald switch(hci_event_connection_request_get_link_type(packet)){ 7137522e673SMatthias Ringwald case 0: // SCO 7147522e673SMatthias Ringwald case 2: // eSCO 715011577abSMilanka Ringwald hci_event_connection_request_get_bd_addr(packet, event_addr); 716405014fbSMatthias Ringwald hfp_connection = get_hfp_connection_context_for_bd_addr(event_addr, local_role); 717011577abSMilanka Ringwald if (!hfp_connection) break; 718c169df2fSMatthias Ringwald if (hci_event_connection_request_get_link_type(packet) == 2){ 719c169df2fSMatthias Ringwald hfp_connection->hf_accept_sco = 2; 720c169df2fSMatthias Ringwald } else { 721b72c4a9eSMatthias Ringwald hfp_connection->hf_accept_sco = 1; 722c169df2fSMatthias Ringwald } 7233721a235SMatthias Ringwald #ifdef ENABLE_CC256X_ASSISTED_HFP 7243721a235SMatthias Ringwald hfp_cc256x_prepare_for_sco(hfp_connection); 7253721a235SMatthias Ringwald #endif 726689d4323SMatthias Ringwald #ifdef ENABLE_BCM_PCM_WBS 727689d4323SMatthias Ringwald hfp_bcm_prepare_for_sco(hfp_connection); 728689d4323SMatthias Ringwald #endif 729c169df2fSMatthias Ringwald log_info("hf accept sco %u\n", hfp_connection->hf_accept_sco); 730719aedb8SMatthias Ringwald sco_establishment_active = hfp_connection; 731202c8a4cSMatthias Ringwald break; 7327522e673SMatthias Ringwald default: 7337522e673SMatthias Ringwald break; 7347522e673SMatthias Ringwald } 735011577abSMilanka Ringwald break; 7363deb3ec6SMatthias Ringwald 737eddcd308SMatthias Ringwald case HCI_EVENT_COMMAND_STATUS: 738eddcd308SMatthias Ringwald if (hci_event_command_status_get_command_opcode(packet) == hci_setup_synchronous_connection.opcode) { 739b87963a5SMatthias Ringwald if (sco_establishment_active == NULL) break; 740be2a1a78SMatthias Ringwald status = hci_event_command_status_get_status(packet); 74138200c1dSMilanka Ringwald if (status == ERROR_CODE_SUCCESS) break; 74238200c1dSMilanka Ringwald 74338200c1dSMilanka Ringwald hfp_connection = sco_establishment_active; 74438200c1dSMilanka Ringwald if (hfp_handle_failed_sco_connection(status)) break; 74538200c1dSMilanka Ringwald hfp_connection->establish_audio_connection = 0; 74638200c1dSMilanka Ringwald hfp_connection->state = HFP_SERVICE_LEVEL_CONNECTION_ESTABLISHED; 74738200c1dSMilanka Ringwald hfp_emit_sco_event(hfp_connection, status, 0, hfp_connection->remote_addr, hfp_connection->negotiated_codec); 7486c5b2002SMatthias Ringwald } 749eddcd308SMatthias Ringwald break; 750eddcd308SMatthias Ringwald 7513deb3ec6SMatthias Ringwald case HCI_EVENT_SYNCHRONOUS_CONNECTION_COMPLETE:{ 752b87963a5SMatthias Ringwald if (sco_establishment_active == NULL) break; 753011577abSMilanka Ringwald hci_event_synchronous_connection_complete_get_bd_addr(packet, event_addr); 754405014fbSMatthias Ringwald hfp_connection = get_hfp_connection_context_for_bd_addr(event_addr, local_role); 755011577abSMilanka Ringwald if (!hfp_connection) { 756011577abSMilanka Ringwald log_error("HFP: connection does not exist for remote with addr %s.", bd_addr_to_str(event_addr)); 757011577abSMilanka Ringwald return; 758011577abSMilanka Ringwald } 759ce263fc8SMatthias Ringwald 760011577abSMilanka Ringwald status = hci_event_synchronous_connection_complete_get_status(packet); 76138200c1dSMilanka Ringwald if (status != ERROR_CODE_SUCCESS){ 762b72c4a9eSMatthias Ringwald hfp_connection->hf_accept_sco = 0; 76338200c1dSMilanka Ringwald if (hfp_handle_failed_sco_connection(status)) break; 76438200c1dSMilanka Ringwald 76538200c1dSMilanka Ringwald hfp_connection->establish_audio_connection = 0; 76638200c1dSMilanka Ringwald hfp_connection->state = HFP_SERVICE_LEVEL_CONNECTION_ESTABLISHED; 76738200c1dSMilanka Ringwald hfp_emit_sco_event(hfp_connection, status, 0, event_addr, hfp_connection->negotiated_codec); 768aa4dd815SMatthias Ringwald break; 769aa4dd815SMatthias Ringwald } 770aa4dd815SMatthias Ringwald 771011577abSMilanka Ringwald uint16_t sco_handle = hci_event_synchronous_connection_complete_get_handle(packet); 772011577abSMilanka Ringwald uint8_t link_type = hci_event_synchronous_connection_complete_get_link_type(packet); 773011577abSMilanka Ringwald uint8_t transmission_interval = hci_event_synchronous_connection_complete_get_transmission_interval(packet); // measured in slots 774011577abSMilanka Ringwald uint8_t retransmission_interval = hci_event_synchronous_connection_complete_get_retransmission_interval(packet);// measured in slots 775011577abSMilanka Ringwald uint16_t rx_packet_length = hci_event_synchronous_connection_complete_get_rx_packet_length(packet); // measured in bytes 776011577abSMilanka Ringwald uint16_t tx_packet_length = hci_event_synchronous_connection_complete_get_tx_packet_length(packet); // measured in bytes 7773deb3ec6SMatthias Ringwald 7783deb3ec6SMatthias Ringwald switch (link_type){ 7793deb3ec6SMatthias Ringwald case 0x00: 780aa4dd815SMatthias Ringwald log_info("SCO Connection established."); 7813deb3ec6SMatthias Ringwald if (transmission_interval != 0) log_error("SCO Connection: transmission_interval not zero: %d.", transmission_interval); 7823deb3ec6SMatthias Ringwald if (retransmission_interval != 0) log_error("SCO Connection: retransmission_interval not zero: %d.", retransmission_interval); 7833deb3ec6SMatthias Ringwald if (rx_packet_length != 0) log_error("SCO Connection: rx_packet_length not zero: %d.", rx_packet_length); 7843deb3ec6SMatthias Ringwald if (tx_packet_length != 0) log_error("SCO Connection: tx_packet_length not zero: %d.", tx_packet_length); 7853deb3ec6SMatthias Ringwald break; 7863deb3ec6SMatthias Ringwald case 0x02: 787aa4dd815SMatthias Ringwald log_info("eSCO Connection established. \n"); 7883deb3ec6SMatthias Ringwald break; 7893deb3ec6SMatthias Ringwald default: 7903deb3ec6SMatthias Ringwald log_error("(e)SCO reserved link_type 0x%2x", link_type); 7913deb3ec6SMatthias Ringwald break; 7923deb3ec6SMatthias Ringwald } 793e0d13a19SMilanka Ringwald 7943deb3ec6SMatthias Ringwald log_info("sco_handle 0x%2x, address %s, transmission_interval %u slots, retransmission_interval %u slots, " 795aa4dd815SMatthias Ringwald " rx_packet_length %u bytes, tx_packet_length %u bytes, air_mode 0x%2x (0x02 == CVSD)\n", sco_handle, 796e0d13a19SMilanka Ringwald bd_addr_to_str(event_addr), transmission_interval, retransmission_interval, rx_packet_length, tx_packet_length, 797e0d13a19SMilanka Ringwald hci_event_synchronous_connection_complete_get_air_mode(packet)); 7983deb3ec6SMatthias Ringwald 799d63c37a1SMatthias Ringwald if (hfp_connection->state == HFP_W4_CONNECTION_ESTABLISHED_TO_SHUTDOWN){ 800aa4dd815SMatthias Ringwald log_info("SCO about to disconnect: HFP_W4_CONNECTION_ESTABLISHED_TO_SHUTDOWN"); 801d63c37a1SMatthias Ringwald hfp_connection->state = HFP_W2_DISCONNECT_SCO; 802aa4dd815SMatthias Ringwald break; 803aa4dd815SMatthias Ringwald } 804d63c37a1SMatthias Ringwald hfp_connection->sco_handle = sco_handle; 805d63c37a1SMatthias Ringwald hfp_connection->establish_audio_connection = 0; 806d63c37a1SMatthias Ringwald hfp_connection->state = HFP_AUDIO_CONNECTION_ESTABLISHED; 80738200c1dSMilanka Ringwald hfp_emit_sco_event(hfp_connection, status, sco_handle, event_addr, hfp_connection->negotiated_codec); 8083deb3ec6SMatthias Ringwald break; 8093deb3ec6SMatthias Ringwald } 8103deb3ec6SMatthias Ringwald 8113deb3ec6SMatthias Ringwald case HCI_EVENT_DISCONNECTION_COMPLETE: 812f8fbdce0SMatthias Ringwald handle = little_endian_read_16(packet,3); 813405014fbSMatthias Ringwald hfp_connection = get_hfp_connection_context_for_sco_handle(handle, local_role); 814aa4dd815SMatthias Ringwald 815d63c37a1SMatthias Ringwald if (!hfp_connection) break; 816aa4dd815SMatthias Ringwald 8173721a235SMatthias Ringwald #ifdef ENABLE_CC256X_ASSISTED_HFP 8183721a235SMatthias Ringwald hfp_connection->cc256x_send_wbs_disassociate = true; 8193721a235SMatthias Ringwald #endif 820689d4323SMatthias Ringwald #ifdef ENABLE_BCM_PCM_WBS 821689d4323SMatthias Ringwald hfp_connection->bcm_send_disable_wbs = true; 822689d4323SMatthias Ringwald #endif 823d751f069SMatthias Ringwald hfp_connection->sco_handle = HCI_CON_HANDLE_INVALID; 824d63c37a1SMatthias Ringwald hfp_connection->release_audio_connection = 0; 82548e6eeeeSMatthias Ringwald 82648e6eeeeSMatthias Ringwald if (hfp_connection->state == HFP_W4_SCO_DISCONNECTED_TO_SHUTDOWN){ 82748e6eeeeSMatthias Ringwald // RFCOMM already closed -> remote power off 82848e6eeeeSMatthias Ringwald #if defined(ENABLE_CC256X_ASSISTED_HFP) || defined (ENABLE_BCM_PCM_WBS) 82948e6eeeeSMatthias Ringwald hfp_connection->state = HFP_W4_WBS_SHUTDOWN; 83048e6eeeeSMatthias Ringwald #else 83148e6eeeeSMatthias Ringwald hfp_finalize_connection_context(hfp_connection); 83248e6eeeeSMatthias Ringwald #endif 83348e6eeeeSMatthias Ringwald break; 83448e6eeeeSMatthias Ringwald } 83548e6eeeeSMatthias Ringwald 836d63c37a1SMatthias Ringwald hfp_connection->state = HFP_SERVICE_LEVEL_CONNECTION_ESTABLISHED; 837*5441d52fSMatthias Ringwald hfp_emit_audio_connection_released(hfp_connection); 8380c3047fbSMatthias Ringwald 8395f053052SMilanka Ringwald if (hfp_connection->release_slc_connection){ 8405f053052SMilanka Ringwald hfp_connection->release_slc_connection = 0; 8410c3047fbSMatthias Ringwald log_info("SCO disconnected, w2 disconnect RFCOMM\n"); 8420c3047fbSMatthias Ringwald hfp_connection->state = HFP_W2_DISCONNECT_RFCOMM; 8435f053052SMilanka Ringwald } 8443deb3ec6SMatthias Ringwald break; 8453deb3ec6SMatthias Ringwald 846fc64f94aSMatthias Ringwald default: 8473deb3ec6SMatthias Ringwald break; 8483deb3ec6SMatthias Ringwald } 8493deb3ec6SMatthias Ringwald } 8503deb3ec6SMatthias Ringwald 8513721a235SMatthias Ringwald 85227950165SMatthias Ringwald void hfp_handle_rfcomm_event(uint8_t packet_type, uint16_t channel, uint8_t *packet, uint16_t size, hfp_role_t local_role){ 8535575558eSMilanka Ringwald UNUSED(packet_type); 85427950165SMatthias Ringwald UNUSED(channel); // ok: no channel 8555575558eSMilanka Ringwald UNUSED(size); 85627950165SMatthias Ringwald 85727950165SMatthias Ringwald bd_addr_t event_addr; 85827950165SMatthias Ringwald uint16_t rfcomm_cid; 85927950165SMatthias Ringwald hfp_connection_t * hfp_connection = NULL; 86027950165SMatthias Ringwald uint8_t status; 86127950165SMatthias Ringwald 86227950165SMatthias Ringwald log_debug("HFP packet_handler type %u, event type %x, size %u", packet_type, hci_event_packet_get_type(packet), size); 86327950165SMatthias Ringwald 86427950165SMatthias Ringwald switch (hci_event_packet_get_type(packet)) { 86527950165SMatthias Ringwald 86627950165SMatthias Ringwald case RFCOMM_EVENT_INCOMING_CONNECTION: 86727950165SMatthias Ringwald // data: event (8), len(8), address(48), channel (8), rfcomm_cid (16) 86827950165SMatthias Ringwald rfcomm_event_incoming_connection_get_bd_addr(packet, event_addr); 86927950165SMatthias Ringwald hfp_connection = provide_hfp_connection_context_for_bd_addr(event_addr, local_role); 87027950165SMatthias Ringwald if (!hfp_connection){ 87127950165SMatthias Ringwald log_info("hfp: no memory to accept incoming connection - decline"); 87227950165SMatthias Ringwald rfcomm_decline_connection(rfcomm_event_incoming_connection_get_rfcomm_cid(packet)); 87327950165SMatthias Ringwald return; 87427950165SMatthias Ringwald } 87527950165SMatthias Ringwald if (hfp_connection->state != HFP_IDLE) { 8764960f9e7SMatthias Ringwald log_error("hfp: incoming connection but not idle, reject"); 8774960f9e7SMatthias Ringwald rfcomm_decline_connection(rfcomm_event_incoming_connection_get_rfcomm_cid(packet)); 87827950165SMatthias Ringwald return; 87927950165SMatthias Ringwald } 88027950165SMatthias Ringwald 88127950165SMatthias Ringwald hfp_connection->rfcomm_cid = rfcomm_event_incoming_connection_get_rfcomm_cid(packet); 88227950165SMatthias Ringwald hfp_connection->state = HFP_W4_RFCOMM_CONNECTED; 88327950165SMatthias Ringwald rfcomm_accept_connection(hfp_connection->rfcomm_cid); 88427950165SMatthias Ringwald break; 88527950165SMatthias Ringwald 88627950165SMatthias Ringwald case RFCOMM_EVENT_CHANNEL_OPENED: 88727950165SMatthias Ringwald // data: event(8), len(8), status (8), address (48), handle(16), server channel(8), rfcomm_cid(16), max frame size(16) 88827950165SMatthias Ringwald 88927950165SMatthias Ringwald rfcomm_event_channel_opened_get_bd_addr(packet, event_addr); 89027950165SMatthias Ringwald status = rfcomm_event_channel_opened_get_status(packet); 89127950165SMatthias Ringwald 892405014fbSMatthias Ringwald hfp_connection = get_hfp_connection_context_for_bd_addr(event_addr, local_role); 893505f1c30SMatthias Ringwald if (!hfp_connection || (hfp_connection->state != HFP_W4_RFCOMM_CONNECTED)) return; 89427950165SMatthias Ringwald 89527950165SMatthias Ringwald if (status) { 89627950165SMatthias Ringwald hfp_emit_slc_connection_event(hfp_connection, status, rfcomm_event_channel_opened_get_con_handle(packet), event_addr); 89748e6eeeeSMatthias Ringwald hfp_finalize_connection_context(hfp_connection); 89827950165SMatthias Ringwald } else { 89927950165SMatthias Ringwald hfp_connection->acl_handle = rfcomm_event_channel_opened_get_con_handle(packet); 90027950165SMatthias Ringwald hfp_connection->rfcomm_cid = rfcomm_event_channel_opened_get_rfcomm_cid(packet); 90127950165SMatthias Ringwald bd_addr_copy(hfp_connection->remote_addr, event_addr); 90227950165SMatthias Ringwald 90327950165SMatthias Ringwald switch (hfp_connection->state){ 90427950165SMatthias Ringwald case HFP_W4_RFCOMM_CONNECTED: 90527950165SMatthias Ringwald hfp_connection->state = HFP_EXCHANGE_SUPPORTED_FEATURES; 90627950165SMatthias Ringwald break; 90727950165SMatthias Ringwald case HFP_W4_CONNECTION_ESTABLISHED_TO_SHUTDOWN: 90827950165SMatthias Ringwald hfp_connection->state = HFP_W2_DISCONNECT_RFCOMM; 90927950165SMatthias Ringwald break; 91027950165SMatthias Ringwald default: 91127950165SMatthias Ringwald break; 91227950165SMatthias Ringwald } 91327950165SMatthias Ringwald rfcomm_request_can_send_now_event(hfp_connection->rfcomm_cid); 91427950165SMatthias Ringwald } 91527950165SMatthias Ringwald break; 91627950165SMatthias Ringwald 91727950165SMatthias Ringwald case RFCOMM_EVENT_CHANNEL_CLOSED: 91827950165SMatthias Ringwald rfcomm_cid = little_endian_read_16(packet,2); 91927950165SMatthias Ringwald hfp_connection = get_hfp_connection_context_for_rfcomm_cid(rfcomm_cid); 92027950165SMatthias Ringwald if (!hfp_connection) break; 92127950165SMatthias Ringwald if (hfp_connection->state == HFP_W4_RFCOMM_DISCONNECTED_AND_RESTART){ 92227950165SMatthias Ringwald hfp_connection->state = HFP_IDLE; 92327950165SMatthias Ringwald hfp_establish_service_level_connection(hfp_connection->remote_addr, hfp_connection->service_uuid, local_role); 92427950165SMatthias Ringwald break; 92527950165SMatthias Ringwald } 92648e6eeeeSMatthias Ringwald if ( hfp_connection->state == HFP_AUDIO_CONNECTION_ESTABLISHED){ 92748e6eeeeSMatthias Ringwald // service connection was released, this implicitly releases audio connection as well 92848e6eeeeSMatthias Ringwald hfp_connection->release_audio_connection = 0; 92948e6eeeeSMatthias Ringwald gap_disconnect(hfp_connection->sco_handle); 93048e6eeeeSMatthias Ringwald hfp_connection->state = HFP_W4_SCO_DISCONNECTED_TO_SHUTDOWN; 931*5441d52fSMatthias Ringwald hfp_emit_audio_connection_released(hfp_connection); 93227950165SMatthias Ringwald hfp_emit_event(hfp_connection, HFP_SUBEVENT_SERVICE_LEVEL_CONNECTION_RELEASED, 0); 93348e6eeeeSMatthias Ringwald } else { 93448e6eeeeSMatthias Ringwald // regular case 93548e6eeeeSMatthias Ringwald hfp_emit_event(hfp_connection, HFP_SUBEVENT_SERVICE_LEVEL_CONNECTION_RELEASED, 0); 93648e6eeeeSMatthias Ringwald hfp_finalize_connection_context(hfp_connection); 93748e6eeeeSMatthias Ringwald } 93827950165SMatthias Ringwald break; 93927950165SMatthias Ringwald 94027950165SMatthias Ringwald default: 94127950165SMatthias Ringwald break; 94227950165SMatthias Ringwald } 94327950165SMatthias Ringwald } 944aa4dd815SMatthias Ringwald // translates command string into hfp_command_t CMD 94594a27792SMatthias Ringwald 94694a27792SMatthias Ringwald typedef struct { 94794a27792SMatthias Ringwald const char * command; 94894a27792SMatthias Ringwald hfp_command_t command_id; 94994a27792SMatthias Ringwald } hfp_command_entry_t; 95094a27792SMatthias Ringwald 95194a27792SMatthias Ringwald static hfp_command_entry_t hfp_ag_commmand_table[] = { 952cb33905eSMatthias Ringwald { "AT+BAC=", HFP_CMD_AVAILABLE_CODECS }, 953cb33905eSMatthias Ringwald { "AT+BCC", HFP_CMD_TRIGGER_CODEC_CONNECTION_SETUP }, 954cb33905eSMatthias Ringwald { "AT+BCS=", HFP_CMD_HF_CONFIRMED_CODEC }, 955cb33905eSMatthias Ringwald { "AT+BIA=", HFP_CMD_ENABLE_INDIVIDUAL_AG_INDICATOR_STATUS_UPDATE, }, // +BIA:<enabled>,,<enabled>,,,<enabled> 956cb33905eSMatthias Ringwald { "AT+BIEV=", HFP_CMD_HF_INDICATOR_STATUS }, 95794a27792SMatthias Ringwald { "AT+BIND=", HFP_CMD_LIST_GENERIC_STATUS_INDICATORS }, 95894a27792SMatthias Ringwald { "AT+BIND=?", HFP_CMD_RETRIEVE_GENERIC_STATUS_INDICATORS }, 95994a27792SMatthias Ringwald { "AT+BIND?", HFP_CMD_RETRIEVE_GENERIC_STATUS_INDICATORS_STATE }, 960cb33905eSMatthias Ringwald { "AT+BINP", HFP_CMD_HF_REQUEST_PHONE_NUMBER }, 961cb33905eSMatthias Ringwald { "AT+BLDN", HFP_CMD_REDIAL_LAST_NUMBER }, 962cb33905eSMatthias Ringwald { "AT+BRSF=", HFP_CMD_SUPPORTED_FEATURES }, 96394a27792SMatthias Ringwald { "AT+BTRH=", HFP_CMD_RESPONSE_AND_HOLD_COMMAND }, 96494a27792SMatthias Ringwald { "AT+BTRH?", HFP_CMD_RESPONSE_AND_HOLD_QUERY }, 965cb33905eSMatthias Ringwald { "AT+BVRA=", HFP_CMD_AG_ACTIVATE_VOICE_RECOGNITION }, 966cb33905eSMatthias Ringwald { "AT+CCWA=", HFP_CMD_ENABLE_CALL_WAITING_NOTIFICATION}, 96794a27792SMatthias Ringwald { "AT+CHLD=", HFP_CMD_CALL_HOLD }, 96894a27792SMatthias Ringwald { "AT+CHLD=?", HFP_CMD_SUPPORT_CALL_HOLD_AND_MULTIPARTY_SERVICES }, 969cb33905eSMatthias Ringwald { "AT+CHUP", HFP_CMD_HANG_UP_CALL }, 97094a27792SMatthias Ringwald { "AT+CIND=?", HFP_CMD_RETRIEVE_AG_INDICATORS }, 97194a27792SMatthias Ringwald { "AT+CIND?", HFP_CMD_RETRIEVE_AG_INDICATORS_STATUS }, 972cb33905eSMatthias Ringwald { "AT+CLCC", HFP_CMD_LIST_CURRENT_CALLS }, 973cb33905eSMatthias Ringwald { "AT+CLIP=", HFP_CMD_ENABLE_CLIP}, 974cb33905eSMatthias Ringwald { "AT+CMEE=", HFP_CMD_ENABLE_EXTENDED_AUDIO_GATEWAY_ERROR}, 975cb33905eSMatthias Ringwald { "AT+CMER=", HFP_CMD_ENABLE_INDICATOR_STATUS_UPDATE }, 976cb33905eSMatthias Ringwald { "AT+CNUM", HFP_CMD_GET_SUBSCRIBER_NUMBER_INFORMATION }, 97794a27792SMatthias Ringwald { "AT+COPS=", HFP_CMD_QUERY_OPERATOR_SELECTION_NAME_FORMAT }, 97894a27792SMatthias Ringwald { "AT+COPS?", HFP_CMD_QUERY_OPERATOR_SELECTION_NAME }, 979cb33905eSMatthias Ringwald { "AT+NREC=", HFP_CMD_TURN_OFF_EC_AND_NR, }, 980cb33905eSMatthias Ringwald { "AT+VGM=", HFP_CMD_SET_MICROPHONE_GAIN }, 981cb33905eSMatthias Ringwald { "AT+VGS=", HFP_CMD_SET_SPEAKER_GAIN }, 982cb33905eSMatthias Ringwald { "AT+VTS:", HFP_CMD_TRANSMIT_DTMF_CODES }, 98394a27792SMatthias Ringwald { "ATA", HFP_CMD_CALL_ANSWERED }, 98494a27792SMatthias Ringwald }; 98594a27792SMatthias Ringwald 98694a27792SMatthias Ringwald static hfp_command_entry_t hfp_hf_commmand_table[] = { 987cb33905eSMatthias Ringwald { "+BCS:", HFP_CMD_AG_SUGGESTED_CODEC }, 98894a27792SMatthias Ringwald { "+BIND:", HFP_CMD_SET_GENERIC_STATUS_INDICATOR_STATUS }, 989cb33905eSMatthias Ringwald { "+BINP", HFP_CMD_AG_SENT_PHONE_NUMBER }, 990cb33905eSMatthias Ringwald { "+BRSF:", HFP_CMD_SUPPORTED_FEATURES }, 991cb33905eSMatthias Ringwald { "+BSIR:", HFP_CMD_CHANGE_IN_BAND_RING_TONE_SETTING }, 99294a27792SMatthias Ringwald { "+BTRH:", HFP_CMD_RESPONSE_AND_HOLD_STATUS }, 993cb33905eSMatthias Ringwald { "+BVRA:", HFP_CMD_AG_ACTIVATE_VOICE_RECOGNITION }, 994cb33905eSMatthias Ringwald { "+CCWA:", HFP_CMD_AG_SENT_CALL_WAITING_NOTIFICATION_UPDATE, }, 99594a27792SMatthias Ringwald { "+CHLD:", HFP_CMD_SUPPORT_CALL_HOLD_AND_MULTIPARTY_SERVICES }, 996cb33905eSMatthias Ringwald { "+CIEV:", HFP_CMD_TRANSFER_AG_INDICATOR_STATUS}, 99784a0c24eSMatthias Ringwald { "+CIND:", HFP_CMD_RETRIEVE_AG_INDICATORS_GENERIC }, 998cb33905eSMatthias Ringwald { "+CLCC:", HFP_CMD_LIST_CURRENT_CALLS }, 999cb33905eSMatthias Ringwald { "+CLIP:", HFP_CMD_AG_SENT_CLIP_INFORMATION }, 1000cb33905eSMatthias Ringwald { "+CME ERROR:", HFP_CMD_EXTENDED_AUDIO_GATEWAY_ERROR }, 1001cb33905eSMatthias Ringwald { "+CNUM:", HFP_CMD_GET_SUBSCRIBER_NUMBER_INFORMATION}, 1002cb33905eSMatthias Ringwald { "+COPS:", HFP_CMD_QUERY_OPERATOR_SELECTION_NAME }, 1003cb33905eSMatthias Ringwald { "+VGM:", HFP_CMD_SET_MICROPHONE_GAIN }, 1004cb33905eSMatthias Ringwald { "+VGS:", HFP_CMD_SET_SPEAKER_GAIN}, 1005cb33905eSMatthias Ringwald { "ERROR", HFP_CMD_ERROR}, 1006cb33905eSMatthias Ringwald { "NOP", HFP_CMD_NONE}, // dummy command used by unit tests 1007cb33905eSMatthias Ringwald { "OK", HFP_CMD_OK }, 1008cb33905eSMatthias Ringwald { "RING", HFP_CMD_RING }, 100994a27792SMatthias Ringwald }; 101094a27792SMatthias Ringwald 1011aa4dd815SMatthias Ringwald static hfp_command_t parse_command(const char * line_buffer, int isHandsFree){ 10123deb3ec6SMatthias Ringwald 1013cb33905eSMatthias Ringwald // table lookup based on role 101494a27792SMatthias Ringwald uint16_t num_entries; 101594a27792SMatthias Ringwald hfp_command_entry_t * table; 101694a27792SMatthias Ringwald if (isHandsFree == 0){ 101794a27792SMatthias Ringwald table = hfp_ag_commmand_table; 101894a27792SMatthias Ringwald num_entries = sizeof(hfp_ag_commmand_table) / sizeof(hfp_command_entry_t); 10193deb3ec6SMatthias Ringwald } else { 102094a27792SMatthias Ringwald table = hfp_hf_commmand_table; 102194a27792SMatthias Ringwald num_entries = sizeof(hfp_hf_commmand_table) / sizeof(hfp_command_entry_t); 102294a27792SMatthias Ringwald } 1023791f0d0aSMatthias Ringwald // binary search 1024791f0d0aSMatthias Ringwald uint16_t left = 0; 1025791f0d0aSMatthias Ringwald uint16_t right = num_entries - 1; 1026791f0d0aSMatthias Ringwald while (left <= right){ 1027791f0d0aSMatthias Ringwald uint16_t middle = left + (right - left) / 2; 1028791f0d0aSMatthias Ringwald hfp_command_entry_t *entry = &table[middle]; 102994a27792SMatthias Ringwald int match = strcmp(line_buffer, entry->command); 1030791f0d0aSMatthias Ringwald if (match < 0){ 1031791f0d0aSMatthias Ringwald // search term is lower than middle element 103247005182SMilanka Ringwald if (right == 0) break; 1033791f0d0aSMatthias Ringwald right = middle - 1; 1034791f0d0aSMatthias Ringwald } else if (match == 0){ 103594a27792SMatthias Ringwald return entry->command_id; 1036791f0d0aSMatthias Ringwald } else { 1037791f0d0aSMatthias Ringwald // search term is higher than middle element 1038791f0d0aSMatthias Ringwald left = middle + 1; 103994a27792SMatthias Ringwald } 104094a27792SMatthias Ringwald } 104194a27792SMatthias Ringwald 1042cb33905eSMatthias Ringwald // note: if parser in CMD_HEADER state would treats digits and maybe '+' as separator, match on "ATD" would work. 10430222a807SMatthias Ringwald // note: phone number is currently expected in line_buffer[3..] 1044cb33905eSMatthias Ringwald // prefix match on 'ATD', AG only 1045cb33905eSMatthias Ringwald if ((isHandsFree == 0) && (strncmp(line_buffer, HFP_CALL_PHONE_NUMBER, strlen(HFP_CALL_PHONE_NUMBER)) == 0)){ 1046cb33905eSMatthias Ringwald return HFP_CMD_CALL_PHONE_NUMBER; 10473deb3ec6SMatthias Ringwald } 10483deb3ec6SMatthias Ringwald 1049cb33905eSMatthias Ringwald // Valid looking, but unknown commands/responses 1050cb33905eSMatthias Ringwald if ((isHandsFree == 0) && (strncmp(line_buffer, "AT+", 3) == 0)){ 1051aa4dd815SMatthias Ringwald return HFP_CMD_UNKNOWN; 10523deb3ec6SMatthias Ringwald } 10533deb3ec6SMatthias Ringwald 1054cb33905eSMatthias Ringwald if ((isHandsFree != 0) && (strncmp(line_buffer, "+", 1) == 0)){ 1055aa4dd815SMatthias Ringwald return HFP_CMD_UNKNOWN; 1056aa4dd815SMatthias Ringwald } 10573deb3ec6SMatthias Ringwald 1058aa4dd815SMatthias Ringwald return HFP_CMD_NONE; 10593deb3ec6SMatthias Ringwald } 10603deb3ec6SMatthias Ringwald 1061a0ffb263SMatthias Ringwald static void hfp_parser_store_byte(hfp_connection_t * hfp_connection, uint8_t byte){ 106262c7768eSMatthias Ringwald if ((hfp_connection->line_size + 1 ) >= HFP_MAX_INDICATOR_DESC_SIZE) return; 1063a0ffb263SMatthias Ringwald hfp_connection->line_buffer[hfp_connection->line_size++] = byte; 1064a0ffb263SMatthias Ringwald hfp_connection->line_buffer[hfp_connection->line_size] = 0; 10653deb3ec6SMatthias Ringwald } 1066a0ffb263SMatthias Ringwald static int hfp_parser_is_buffer_empty(hfp_connection_t * hfp_connection){ 1067a0ffb263SMatthias Ringwald return hfp_connection->line_size == 0; 10683deb3ec6SMatthias Ringwald } 10693deb3ec6SMatthias Ringwald 10703deb3ec6SMatthias Ringwald static int hfp_parser_is_end_of_line(uint8_t byte){ 1071c1ab6cc1SMatthias Ringwald return (byte == '\n') || (byte == '\r'); 10723deb3ec6SMatthias Ringwald } 10733deb3ec6SMatthias Ringwald 107494a27792SMatthias Ringwald static void hfp_parser_reset_line_buffer(hfp_connection_t *hfp_connection) { 1075a0ffb263SMatthias Ringwald hfp_connection->line_size = 0; 10763deb3ec6SMatthias Ringwald } 10771d81c7feSMatthias Ringwald 10781d81c7feSMatthias Ringwald static void hfp_parser_store_if_token(hfp_connection_t * hfp_connection, uint8_t byte){ 10791d81c7feSMatthias Ringwald switch (byte){ 10801d81c7feSMatthias Ringwald case ',': 1081f8301d46SMatthias Ringwald case '-': 10821d81c7feSMatthias Ringwald case ';': 10831d81c7feSMatthias Ringwald case '(': 10841d81c7feSMatthias Ringwald case ')': 10851d81c7feSMatthias Ringwald case '\n': 10861d81c7feSMatthias Ringwald case '\r': 10873deb3ec6SMatthias Ringwald break; 10883deb3ec6SMatthias Ringwald default: 10891d81c7feSMatthias Ringwald hfp_parser_store_byte(hfp_connection, byte); 10903deb3ec6SMatthias Ringwald break; 10913deb3ec6SMatthias Ringwald } 10923deb3ec6SMatthias Ringwald } 10931d81c7feSMatthias Ringwald 10941d81c7feSMatthias Ringwald static bool hfp_parser_is_separator( uint8_t byte){ 10951d81c7feSMatthias Ringwald switch (byte){ 10961d81c7feSMatthias Ringwald case ',': 1097f8301d46SMatthias Ringwald case '-': 10981d81c7feSMatthias Ringwald case ';': 10991d81c7feSMatthias Ringwald case '\n': 11001d81c7feSMatthias Ringwald case '\r': 11011d81c7feSMatthias Ringwald return true; 1102dd533208SMatthias Ringwald default: 11031d81c7feSMatthias Ringwald return false; 11043deb3ec6SMatthias Ringwald } 11053deb3ec6SMatthias Ringwald } 11063deb3ec6SMatthias Ringwald 1107d6b237acSMatthias Ringwald static bool hfp_parse_byte(hfp_connection_t * hfp_connection, uint8_t byte, int isHandsFree){ 1108aa4dd815SMatthias Ringwald 11091dddc4f4SMatthias Ringwald // handle doubles quotes 11101dddc4f4SMatthias Ringwald if (byte == '"'){ 11111dddc4f4SMatthias Ringwald hfp_connection->parser_quoted = !hfp_connection->parser_quoted; 1112d6b237acSMatthias Ringwald return true; 11131dddc4f4SMatthias Ringwald } 11141dddc4f4SMatthias Ringwald if (hfp_connection->parser_quoted) { 11151dddc4f4SMatthias Ringwald hfp_parser_store_byte(hfp_connection, byte); 1116d6b237acSMatthias Ringwald return true; 11171dddc4f4SMatthias Ringwald } 11183deb3ec6SMatthias Ringwald 11191dddc4f4SMatthias Ringwald // ignore spaces outside command or double quotes (required e.g. for '+CME ERROR:..") command 1120d6b237acSMatthias Ringwald if ((byte == ' ') && (hfp_connection->parser_state != HFP_PARSER_CMD_HEADER)) return true; 11211dddc4f4SMatthias Ringwald 1122bfeaf344SMatthias Ringwald bool processed = true; 1123bfeaf344SMatthias Ringwald 1124a0ffb263SMatthias Ringwald switch (hfp_connection->parser_state) { 1125dd533208SMatthias Ringwald case HFP_PARSER_CMD_HEADER: 1126d28b2d5dSMilanka Ringwald switch (byte) { 1127dd533208SMatthias Ringwald case '\n': 1128dd533208SMatthias Ringwald case '\r': 1129dd533208SMatthias Ringwald case ';': 1130bfeaf344SMatthias Ringwald // ignore separator 1131bfeaf344SMatthias Ringwald break; 1132bfeaf344SMatthias Ringwald case ':': 1133bfeaf344SMatthias Ringwald case '?': 1134bfeaf344SMatthias Ringwald // store separator 1135bfeaf344SMatthias Ringwald hfp_parser_store_byte(hfp_connection, byte); 1136dd533208SMatthias Ringwald break; 1137d28b2d5dSMilanka Ringwald case '=': 1138bfeaf344SMatthias Ringwald // equal sign: remember and wait for next char to decided between '=?' and '=\?' 1139dd533208SMatthias Ringwald hfp_connection->found_equal_sign = true; 1140a0ffb263SMatthias Ringwald hfp_parser_store_byte(hfp_connection, byte); 1141d6b237acSMatthias Ringwald return true; 1142d28b2d5dSMilanka Ringwald default: 1143bfeaf344SMatthias Ringwald // store if not lookahead 1144d7f16ff1SMatthias Ringwald if (!hfp_connection->found_equal_sign) { 1145dd533208SMatthias Ringwald hfp_parser_store_byte(hfp_connection, byte); 1146d6b237acSMatthias Ringwald return true; 1147dd533208SMatthias Ringwald } 1148bfeaf344SMatthias Ringwald // mark as lookahead 1149bfeaf344SMatthias Ringwald processed = false; 1150d7f16ff1SMatthias Ringwald break; 1151d7f16ff1SMatthias Ringwald } 1152ce263fc8SMatthias Ringwald 11531d81c7feSMatthias Ringwald // ignore empty tokens 1154d6b237acSMatthias Ringwald if (hfp_parser_is_buffer_empty(hfp_connection)) return true; 1155dd533208SMatthias Ringwald 1156bfeaf344SMatthias Ringwald // parse 1157dd533208SMatthias Ringwald hfp_connection->command = parse_command((char *)hfp_connection->line_buffer, isHandsFree); 1158aa4dd815SMatthias Ringwald 115984a0c24eSMatthias Ringwald // pick +CIND version based on connection state: descriptions during SLC vs. states later 116084a0c24eSMatthias Ringwald if (hfp_connection->command == HFP_CMD_RETRIEVE_AG_INDICATORS_GENERIC){ 1161a0ffb263SMatthias Ringwald switch(hfp_connection->state){ 1162aa4dd815SMatthias Ringwald case HFP_W4_RETRIEVE_INDICATORS_STATUS: 1163a0ffb263SMatthias Ringwald hfp_connection->command = HFP_CMD_RETRIEVE_AG_INDICATORS_STATUS; 1164aa4dd815SMatthias Ringwald break; 1165aa4dd815SMatthias Ringwald case HFP_W4_RETRIEVE_INDICATORS: 1166a0ffb263SMatthias Ringwald hfp_connection->command = HFP_CMD_RETRIEVE_AG_INDICATORS; 1167aa4dd815SMatthias Ringwald break; 1168aa4dd815SMatthias Ringwald default: 116984a0c24eSMatthias Ringwald hfp_connection->command = HFP_CMD_UNKNOWN; 1170aa4dd815SMatthias Ringwald break; 1171aa4dd815SMatthias Ringwald } 1172aa4dd815SMatthias Ringwald } 11733deb3ec6SMatthias Ringwald 1174c0c0437aSMatthias Ringwald log_info("command string '%s', handsfree %u -> cmd id %u", (char *)hfp_connection->line_buffer, isHandsFree, hfp_connection->command); 1175c0c0437aSMatthias Ringwald 1176bfeaf344SMatthias Ringwald // next state 1177bfeaf344SMatthias Ringwald hfp_connection->found_equal_sign = false; 11781d81c7feSMatthias Ringwald hfp_parser_reset_line_buffer(hfp_connection); 1179dd533208SMatthias Ringwald hfp_connection->parser_state = HFP_PARSER_CMD_SEQUENCE; 1180dd533208SMatthias Ringwald 1181bfeaf344SMatthias Ringwald return processed; 1182dd533208SMatthias Ringwald 1183bfeaf344SMatthias Ringwald case HFP_PARSER_CMD_SEQUENCE: 11841d81c7feSMatthias Ringwald // handle empty fields 11851d81c7feSMatthias Ringwald if ((byte == ',' ) && (hfp_connection->line_size == 0)){ 1186dd533208SMatthias Ringwald hfp_connection->line_buffer[0] = 0; 1187dd533208SMatthias Ringwald hfp_connection->ignore_value = 1; 1188dd533208SMatthias Ringwald parse_sequence(hfp_connection); 11893d051a53SMatthias Ringwald return true; 11903d051a53SMatthias Ringwald } 11913d051a53SMatthias Ringwald 11921d81c7feSMatthias Ringwald hfp_parser_store_if_token(hfp_connection, byte); 11931d81c7feSMatthias Ringwald if (!hfp_parser_is_separator(byte)) return true; 11941d81c7feSMatthias Ringwald 11951d81c7feSMatthias Ringwald // ignore empty tokens 11963d051a53SMatthias Ringwald if (hfp_parser_is_buffer_empty(hfp_connection) && (hfp_connection->ignore_value == 0)) return true; 11973d051a53SMatthias Ringwald 11983d051a53SMatthias Ringwald parse_sequence(hfp_connection); 11991d81c7feSMatthias Ringwald 12001d81c7feSMatthias Ringwald hfp_parser_reset_line_buffer(hfp_connection); 12011d81c7feSMatthias Ringwald 12021d81c7feSMatthias Ringwald switch (hfp_connection->command){ 12031d81c7feSMatthias Ringwald case HFP_CMD_AG_SENT_PHONE_NUMBER: 12041d81c7feSMatthias Ringwald case HFP_CMD_AG_SENT_CALL_WAITING_NOTIFICATION_UPDATE: 12051d81c7feSMatthias Ringwald case HFP_CMD_AG_SENT_CLIP_INFORMATION: 12061d81c7feSMatthias Ringwald case HFP_CMD_TRANSFER_AG_INDICATOR_STATUS: 12071d81c7feSMatthias Ringwald case HFP_CMD_QUERY_OPERATOR_SELECTION_NAME: 12081d81c7feSMatthias Ringwald case HFP_CMD_QUERY_OPERATOR_SELECTION_NAME_FORMAT: 12091d81c7feSMatthias Ringwald case HFP_CMD_RETRIEVE_AG_INDICATORS: 12101d81c7feSMatthias Ringwald case HFP_CMD_RETRIEVE_GENERIC_STATUS_INDICATORS_STATE: 12111d81c7feSMatthias Ringwald case HFP_CMD_HF_INDICATOR_STATUS: 12121d81c7feSMatthias Ringwald hfp_connection->parser_state = HFP_PARSER_SECOND_ITEM; 12131d81c7feSMatthias Ringwald break; 12141d81c7feSMatthias Ringwald default: 12151d81c7feSMatthias Ringwald break; 12161d81c7feSMatthias Ringwald } 12173d051a53SMatthias Ringwald return true; 12183d051a53SMatthias Ringwald 1219ba0de059SMatthias Ringwald case HFP_PARSER_SECOND_ITEM: 12201d81c7feSMatthias Ringwald 12211d81c7feSMatthias Ringwald hfp_parser_store_if_token(hfp_connection, byte); 12221d81c7feSMatthias Ringwald if (!hfp_parser_is_separator(byte)) return true; 1223dd533208SMatthias Ringwald 1224a0ffb263SMatthias Ringwald switch (hfp_connection->command){ 1225ce263fc8SMatthias Ringwald case HFP_CMD_QUERY_OPERATOR_SELECTION_NAME: 1226a0ffb263SMatthias Ringwald log_info("format %s, ", hfp_connection->line_buffer); 12272308e108SMilanka Ringwald hfp_connection->network_operator.format = btstack_atoi((char *)&hfp_connection->line_buffer[0]); 1228ce263fc8SMatthias Ringwald break; 1229ce263fc8SMatthias Ringwald case HFP_CMD_QUERY_OPERATOR_SELECTION_NAME_FORMAT: 1230a0ffb263SMatthias Ringwald log_info("format %s \n", hfp_connection->line_buffer); 12312308e108SMilanka Ringwald hfp_connection->network_operator.format = btstack_atoi((char *)&hfp_connection->line_buffer[0]); 1232ce263fc8SMatthias Ringwald break; 1233ce263fc8SMatthias Ringwald case HFP_CMD_LIST_GENERIC_STATUS_INDICATORS: 1234ce263fc8SMatthias Ringwald case HFP_CMD_RETRIEVE_GENERIC_STATUS_INDICATORS: 1235ce263fc8SMatthias Ringwald case HFP_CMD_RETRIEVE_GENERIC_STATUS_INDICATORS_STATE: 12362308e108SMilanka Ringwald hfp_connection->generic_status_indicators[hfp_connection->parser_item_index].state = (uint8_t)btstack_atoi((char*)hfp_connection->line_buffer); 1237ce263fc8SMatthias Ringwald break; 1238ce263fc8SMatthias Ringwald case HFP_CMD_TRANSFER_AG_INDICATOR_STATUS: 12392308e108SMilanka Ringwald hfp_connection->ag_indicators[hfp_connection->parser_item_index].status = (uint8_t)btstack_atoi((char*)hfp_connection->line_buffer); 1240a0ffb263SMatthias Ringwald log_info("%d \n", hfp_connection->ag_indicators[hfp_connection->parser_item_index].status); 1241a0ffb263SMatthias Ringwald hfp_connection->ag_indicators[hfp_connection->parser_item_index].status_changed = 1; 1242ce263fc8SMatthias Ringwald break; 1243ce263fc8SMatthias Ringwald case HFP_CMD_RETRIEVE_AG_INDICATORS: 12442308e108SMilanka Ringwald hfp_connection->ag_indicators[hfp_connection->parser_item_index].min_range = btstack_atoi((char *)hfp_connection->line_buffer); 1245a0ffb263SMatthias Ringwald log_info("%s, ", hfp_connection->line_buffer); 1246ce263fc8SMatthias Ringwald break; 1247ce263fc8SMatthias Ringwald case HFP_CMD_AG_SENT_PHONE_NUMBER: 1248a0ffb263SMatthias Ringwald case HFP_CMD_AG_SENT_CALL_WAITING_NOTIFICATION_UPDATE: 1249a0ffb263SMatthias Ringwald case HFP_CMD_AG_SENT_CLIP_INFORMATION: 12502308e108SMilanka Ringwald hfp_connection->bnip_type = (uint8_t)btstack_atoi((char*)hfp_connection->line_buffer); 1251ce263fc8SMatthias Ringwald break; 12520222a807SMatthias Ringwald case HFP_CMD_HF_INDICATOR_STATUS: 12530222a807SMatthias Ringwald hfp_connection->parser_indicator_value = btstack_atoi((char *)&hfp_connection->line_buffer[0]); 12540222a807SMatthias Ringwald break; 1255ce263fc8SMatthias Ringwald default: 1256ce263fc8SMatthias Ringwald break; 1257ce263fc8SMatthias Ringwald } 12581d81c7feSMatthias Ringwald 12591d81c7feSMatthias Ringwald hfp_parser_reset_line_buffer(hfp_connection); 12601d81c7feSMatthias Ringwald 12611d81c7feSMatthias Ringwald hfp_connection->parser_state = HFP_PARSER_THIRD_ITEM; 12621d81c7feSMatthias Ringwald 1263ba0de059SMatthias Ringwald return true; 1264ce263fc8SMatthias Ringwald 126574c7548aSMatthias Ringwald case HFP_PARSER_THIRD_ITEM: 12661d81c7feSMatthias Ringwald 12671d81c7feSMatthias Ringwald hfp_parser_store_if_token(hfp_connection, byte); 12681d81c7feSMatthias Ringwald if (!hfp_parser_is_separator(byte)) return true; 12691d81c7feSMatthias Ringwald 1270a0ffb263SMatthias Ringwald switch (hfp_connection->command){ 1271ce263fc8SMatthias Ringwald case HFP_CMD_QUERY_OPERATOR_SELECTION_NAME: 127289425bfcSMilanka Ringwald strncpy(hfp_connection->network_operator.name, (char *)hfp_connection->line_buffer, HFP_MAX_NETWORK_OPERATOR_NAME_SIZE); 127389425bfcSMilanka Ringwald hfp_connection->network_operator.name[HFP_MAX_NETWORK_OPERATOR_NAME_SIZE - 1] = 0; 1274a0ffb263SMatthias Ringwald log_info("name %s\n", hfp_connection->line_buffer); 1275ce263fc8SMatthias Ringwald break; 1276ce263fc8SMatthias Ringwald case HFP_CMD_RETRIEVE_AG_INDICATORS: 12772308e108SMilanka Ringwald hfp_connection->ag_indicators[hfp_connection->parser_item_index].max_range = btstack_atoi((char *)hfp_connection->line_buffer); 127825789943SMilanka Ringwald hfp_next_indicators_index(hfp_connection); 127925789943SMilanka Ringwald hfp_connection->ag_indicators_nr = hfp_connection->parser_item_index; 1280a0ffb263SMatthias Ringwald log_info("%s)\n", hfp_connection->line_buffer); 1281ce263fc8SMatthias Ringwald break; 1282ce263fc8SMatthias Ringwald default: 1283ce263fc8SMatthias Ringwald break; 1284ce263fc8SMatthias Ringwald } 12851d81c7feSMatthias Ringwald 12861d81c7feSMatthias Ringwald hfp_parser_reset_line_buffer(hfp_connection); 12871d81c7feSMatthias Ringwald 12881d81c7feSMatthias Ringwald if (hfp_connection->command == HFP_CMD_RETRIEVE_AG_INDICATORS){ 12891d81c7feSMatthias Ringwald hfp_connection->parser_state = HFP_PARSER_CMD_SEQUENCE; 12901d81c7feSMatthias Ringwald } else { 12911d81c7feSMatthias Ringwald hfp_connection->parser_state = HFP_PARSER_CMD_HEADER; 12921d81c7feSMatthias Ringwald } 1293d6b237acSMatthias Ringwald return true; 129474c7548aSMatthias Ringwald 129574c7548aSMatthias Ringwald default: 129674c7548aSMatthias Ringwald btstack_assert(false); 129774c7548aSMatthias Ringwald return true; 129874c7548aSMatthias Ringwald } 1299d6b237acSMatthias Ringwald } 1300d6b237acSMatthias Ringwald 1301d6b237acSMatthias Ringwald void hfp_parse(hfp_connection_t * hfp_connection, uint8_t byte, int isHandsFree){ 1302d6b237acSMatthias Ringwald bool processed = false; 1303d6b237acSMatthias Ringwald while (!processed){ 1304d6b237acSMatthias Ringwald processed = hfp_parse_byte(hfp_connection, byte, isHandsFree); 1305d6b237acSMatthias Ringwald } 13061d81c7feSMatthias Ringwald // reset parser state on end-of-line 13071d81c7feSMatthias Ringwald if (hfp_parser_is_end_of_line(byte)){ 13081d81c7feSMatthias Ringwald hfp_connection->parser_item_index = 0; 13091d81c7feSMatthias Ringwald hfp_connection->parser_state = HFP_PARSER_CMD_HEADER; 13101d81c7feSMatthias Ringwald } 1311ce263fc8SMatthias Ringwald } 1312ce263fc8SMatthias Ringwald 1313a0ffb263SMatthias Ringwald static void parse_sequence(hfp_connection_t * hfp_connection){ 1314ce263fc8SMatthias Ringwald int value; 1315a0ffb263SMatthias Ringwald switch (hfp_connection->command){ 1316667ec068SMatthias Ringwald case HFP_CMD_SET_GENERIC_STATUS_INDICATOR_STATUS: 13172308e108SMilanka Ringwald value = btstack_atoi((char *)&hfp_connection->line_buffer[0]); 1318667ec068SMatthias Ringwald int i; 1319a0ffb263SMatthias Ringwald switch (hfp_connection->parser_item_index){ 1320667ec068SMatthias Ringwald case 0: 1321a0ffb263SMatthias Ringwald for (i=0;i<hfp_connection->generic_status_indicators_nr;i++){ 1322a0ffb263SMatthias Ringwald if (hfp_connection->generic_status_indicators[i].uuid == value){ 1323a0ffb263SMatthias Ringwald hfp_connection->parser_indicator_index = i; 1324667ec068SMatthias Ringwald break; 1325667ec068SMatthias Ringwald } 1326667ec068SMatthias Ringwald } 1327667ec068SMatthias Ringwald break; 1328667ec068SMatthias Ringwald case 1: 1329a0ffb263SMatthias Ringwald if (hfp_connection->parser_indicator_index <0) break; 1330a0ffb263SMatthias Ringwald hfp_connection->generic_status_indicators[hfp_connection->parser_indicator_index].state = value; 1331667ec068SMatthias Ringwald log_info("HFP_CMD_SET_GENERIC_STATUS_INDICATOR_STATUS set indicator at index %u, to %u\n", 1332a0ffb263SMatthias Ringwald hfp_connection->parser_item_index, value); 1333667ec068SMatthias Ringwald break; 1334667ec068SMatthias Ringwald default: 1335667ec068SMatthias Ringwald break; 1336667ec068SMatthias Ringwald } 133725789943SMilanka Ringwald hfp_next_indicators_index(hfp_connection); 1338667ec068SMatthias Ringwald break; 1339667ec068SMatthias Ringwald 1340667ec068SMatthias Ringwald case HFP_CMD_GET_SUBSCRIBER_NUMBER_INFORMATION: 1341a0ffb263SMatthias Ringwald switch(hfp_connection->parser_item_index){ 1342667ec068SMatthias Ringwald case 0: 1343a0ffb263SMatthias Ringwald strncpy(hfp_connection->bnip_number, (char *)hfp_connection->line_buffer, sizeof(hfp_connection->bnip_number)); 1344a0ffb263SMatthias Ringwald hfp_connection->bnip_number[sizeof(hfp_connection->bnip_number)-1] = 0; 1345667ec068SMatthias Ringwald break; 1346667ec068SMatthias Ringwald case 1: 13472308e108SMilanka Ringwald value = btstack_atoi((char *)&hfp_connection->line_buffer[0]); 1348a0ffb263SMatthias Ringwald hfp_connection->bnip_type = value; 1349667ec068SMatthias Ringwald break; 1350667ec068SMatthias Ringwald default: 1351667ec068SMatthias Ringwald break; 1352667ec068SMatthias Ringwald } 1353eed67a37SMilanka Ringwald // index > 2 are ignored in switch above 1354a0ffb263SMatthias Ringwald hfp_connection->parser_item_index++; 1355667ec068SMatthias Ringwald break; 1356667ec068SMatthias Ringwald case HFP_CMD_LIST_CURRENT_CALLS: 1357a0ffb263SMatthias Ringwald switch(hfp_connection->parser_item_index){ 1358667ec068SMatthias Ringwald case 0: 13592308e108SMilanka Ringwald value = btstack_atoi((char *)&hfp_connection->line_buffer[0]); 1360a0ffb263SMatthias Ringwald hfp_connection->clcc_idx = value; 1361667ec068SMatthias Ringwald break; 1362667ec068SMatthias Ringwald case 1: 13632308e108SMilanka Ringwald value = btstack_atoi((char *)&hfp_connection->line_buffer[0]); 1364a0ffb263SMatthias Ringwald hfp_connection->clcc_dir = value; 1365667ec068SMatthias Ringwald break; 1366667ec068SMatthias Ringwald case 2: 13672308e108SMilanka Ringwald value = btstack_atoi((char *)&hfp_connection->line_buffer[0]); 1368a0ffb263SMatthias Ringwald hfp_connection->clcc_status = value; 1369667ec068SMatthias Ringwald break; 1370667ec068SMatthias Ringwald case 3: 13712308e108SMilanka Ringwald value = btstack_atoi((char *)&hfp_connection->line_buffer[0]); 13720aee97efSMilanka Ringwald hfp_connection->clcc_mode = value; 1373667ec068SMatthias Ringwald break; 1374667ec068SMatthias Ringwald case 4: 13750aee97efSMilanka Ringwald value = btstack_atoi((char *)&hfp_connection->line_buffer[0]); 13760aee97efSMilanka Ringwald hfp_connection->clcc_mpty = value; 13770aee97efSMilanka Ringwald break; 13780aee97efSMilanka Ringwald case 5: 1379a0ffb263SMatthias Ringwald strncpy(hfp_connection->bnip_number, (char *)hfp_connection->line_buffer, sizeof(hfp_connection->bnip_number)); 1380a0ffb263SMatthias Ringwald hfp_connection->bnip_number[sizeof(hfp_connection->bnip_number)-1] = 0; 1381667ec068SMatthias Ringwald break; 13820aee97efSMilanka Ringwald case 6: 13832308e108SMilanka Ringwald value = btstack_atoi((char *)&hfp_connection->line_buffer[0]); 1384a0ffb263SMatthias Ringwald hfp_connection->bnip_type = value; 1385667ec068SMatthias Ringwald break; 1386667ec068SMatthias Ringwald default: 1387667ec068SMatthias Ringwald break; 1388667ec068SMatthias Ringwald } 1389eed67a37SMilanka Ringwald // index > 6 are ignored in switch above 1390a0ffb263SMatthias Ringwald hfp_connection->parser_item_index++; 1391667ec068SMatthias Ringwald break; 1392aa4dd815SMatthias Ringwald case HFP_CMD_SET_MICROPHONE_GAIN: 13932308e108SMilanka Ringwald value = btstack_atoi((char *)&hfp_connection->line_buffer[0]); 1394a0ffb263SMatthias Ringwald hfp_connection->microphone_gain = value; 1395aa4dd815SMatthias Ringwald log_info("hfp parse HFP_CMD_SET_MICROPHONE_GAIN %d\n", value); 1396aa4dd815SMatthias Ringwald break; 1397aa4dd815SMatthias Ringwald case HFP_CMD_SET_SPEAKER_GAIN: 13982308e108SMilanka Ringwald value = btstack_atoi((char *)&hfp_connection->line_buffer[0]); 1399a0ffb263SMatthias Ringwald hfp_connection->speaker_gain = value; 1400aa4dd815SMatthias Ringwald log_info("hfp parse HFP_CMD_SET_SPEAKER_GAIN %d\n", value); 1401aa4dd815SMatthias Ringwald break; 1402aa4dd815SMatthias Ringwald case HFP_CMD_HF_ACTIVATE_VOICE_RECOGNITION: 14032308e108SMilanka Ringwald value = btstack_atoi((char *)&hfp_connection->line_buffer[0]); 1404a0ffb263SMatthias Ringwald hfp_connection->ag_activate_voice_recognition = value; 1405aa4dd815SMatthias Ringwald log_info("hfp parse HFP_CMD_HF_ACTIVATE_VOICE_RECOGNITION %d\n", value); 1406aa4dd815SMatthias Ringwald break; 1407aa4dd815SMatthias Ringwald case HFP_CMD_TURN_OFF_EC_AND_NR: 14082308e108SMilanka Ringwald value = btstack_atoi((char *)&hfp_connection->line_buffer[0]); 1409a0ffb263SMatthias Ringwald hfp_connection->ag_echo_and_noise_reduction = value; 1410aa4dd815SMatthias Ringwald log_info("hfp parse HFP_CMD_TURN_OFF_EC_AND_NR %d\n", value); 1411aa4dd815SMatthias Ringwald break; 1412aa4dd815SMatthias Ringwald case HFP_CMD_CHANGE_IN_BAND_RING_TONE_SETTING: 14132308e108SMilanka Ringwald value = btstack_atoi((char *)&hfp_connection->line_buffer[0]); 1414a0ffb263SMatthias Ringwald hfp_connection->remote_supported_features = store_bit(hfp_connection->remote_supported_features, HFP_AGSF_IN_BAND_RING_TONE, value); 1415aa4dd815SMatthias Ringwald log_info("hfp parse HFP_CHANGE_IN_BAND_RING_TONE_SETTING %d\n", value); 1416aa4dd815SMatthias Ringwald break; 14173deb3ec6SMatthias Ringwald case HFP_CMD_HF_CONFIRMED_CODEC: 14182308e108SMilanka Ringwald hfp_connection->codec_confirmed = btstack_atoi((char*)hfp_connection->line_buffer); 1419a0ffb263SMatthias Ringwald log_info("hfp parse HFP_CMD_HF_CONFIRMED_CODEC %d\n", hfp_connection->codec_confirmed); 14203deb3ec6SMatthias Ringwald break; 14213deb3ec6SMatthias Ringwald case HFP_CMD_AG_SUGGESTED_CODEC: 14222308e108SMilanka Ringwald hfp_connection->suggested_codec = btstack_atoi((char*)hfp_connection->line_buffer); 1423a0ffb263SMatthias Ringwald log_info("hfp parse HFP_CMD_AG_SUGGESTED_CODEC %d\n", hfp_connection->suggested_codec); 14243deb3ec6SMatthias Ringwald break; 14253deb3ec6SMatthias Ringwald case HFP_CMD_SUPPORTED_FEATURES: 14262308e108SMilanka Ringwald hfp_connection->remote_supported_features = btstack_atoi((char*)hfp_connection->line_buffer); 1427bace42efSMatthias Ringwald log_info("Parsed supported feature %d\n", (int) hfp_connection->remote_supported_features); 14283deb3ec6SMatthias Ringwald break; 14293deb3ec6SMatthias Ringwald case HFP_CMD_AVAILABLE_CODECS: 1430a0ffb263SMatthias Ringwald log_info("Parsed codec %s\n", hfp_connection->line_buffer); 14312308e108SMilanka Ringwald hfp_connection->remote_codecs[hfp_connection->parser_item_index] = (uint16_t)btstack_atoi((char*)hfp_connection->line_buffer); 143225789943SMilanka Ringwald hfp_next_codec_index(hfp_connection); 1433a0ffb263SMatthias Ringwald hfp_connection->remote_codecs_nr = hfp_connection->parser_item_index; 14343deb3ec6SMatthias Ringwald break; 1435aa4dd815SMatthias Ringwald case HFP_CMD_RETRIEVE_AG_INDICATORS: 143689425bfcSMilanka Ringwald strncpy((char *)hfp_connection->ag_indicators[hfp_connection->parser_item_index].name, (char *)hfp_connection->line_buffer, HFP_MAX_INDICATOR_DESC_SIZE); 143789425bfcSMilanka Ringwald hfp_connection->ag_indicators[hfp_connection->parser_item_index].name[HFP_MAX_INDICATOR_DESC_SIZE-1] = 0; 1438a0ffb263SMatthias Ringwald hfp_connection->ag_indicators[hfp_connection->parser_item_index].index = hfp_connection->parser_item_index+1; 1439a0ffb263SMatthias Ringwald log_info("Indicator %d: %s (", hfp_connection->ag_indicators_nr+1, hfp_connection->line_buffer); 1440aa4dd815SMatthias Ringwald break; 1441aa4dd815SMatthias Ringwald case HFP_CMD_RETRIEVE_AG_INDICATORS_STATUS: 1442a0ffb263SMatthias Ringwald log_info("Parsed Indicator %d with status: %s\n", hfp_connection->parser_item_index+1, hfp_connection->line_buffer); 14432308e108SMilanka Ringwald hfp_connection->ag_indicators[hfp_connection->parser_item_index].status = btstack_atoi((char *) hfp_connection->line_buffer); 144425789943SMilanka Ringwald hfp_next_indicators_index(hfp_connection); 14453deb3ec6SMatthias Ringwald break; 14463deb3ec6SMatthias Ringwald case HFP_CMD_ENABLE_INDICATOR_STATUS_UPDATE: 144725789943SMilanka Ringwald hfp_next_indicators_index(hfp_connection); 1448a0ffb263SMatthias Ringwald if (hfp_connection->parser_item_index != 4) break; 1449a0ffb263SMatthias Ringwald log_info("Parsed Enable indicators: %s\n", hfp_connection->line_buffer); 14502308e108SMilanka Ringwald value = btstack_atoi((char *)&hfp_connection->line_buffer[0]); 1451a0ffb263SMatthias Ringwald hfp_connection->enable_status_update_for_ag_indicators = (uint8_t) value; 14523deb3ec6SMatthias Ringwald break; 14533deb3ec6SMatthias Ringwald case HFP_CMD_SUPPORT_CALL_HOLD_AND_MULTIPARTY_SERVICES: 1454a0ffb263SMatthias Ringwald log_info("Parsed Support call hold: %s\n", hfp_connection->line_buffer); 1455a0ffb263SMatthias Ringwald if (hfp_connection->line_size > 2 ) break; 145697d2cfbcSMatthias 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); 145725789943SMilanka Ringwald hfp_connection->remote_call_services[hfp_connection->remote_call_services_index].name[HFP_CALL_SERVICE_SIZE - 1] = 0; 1458eed67a37SMilanka Ringwald hfp_next_remote_call_services_index(hfp_connection); 14593deb3ec6SMatthias Ringwald break; 1460aa4dd815SMatthias Ringwald case HFP_CMD_LIST_GENERIC_STATUS_INDICATORS: 1461aa4dd815SMatthias Ringwald case HFP_CMD_RETRIEVE_GENERIC_STATUS_INDICATORS: 1462a0ffb263SMatthias Ringwald log_info("Parsed Generic status indicator: %s\n", hfp_connection->line_buffer); 14632308e108SMilanka Ringwald hfp_connection->generic_status_indicators[hfp_connection->parser_item_index].uuid = (uint16_t)btstack_atoi((char*)hfp_connection->line_buffer); 146425789943SMilanka Ringwald hfp_next_indicators_index(hfp_connection); 1465a0ffb263SMatthias Ringwald hfp_connection->generic_status_indicators_nr = hfp_connection->parser_item_index; 14663deb3ec6SMatthias Ringwald break; 1467aa4dd815SMatthias Ringwald case HFP_CMD_RETRIEVE_GENERIC_STATUS_INDICATORS_STATE: 14683deb3ec6SMatthias Ringwald // HF parses inital AG gen. ind. state 1469a0ffb263SMatthias Ringwald log_info("Parsed List generic status indicator %s state: ", hfp_connection->line_buffer); 147025789943SMilanka Ringwald hfp_connection->parser_item_index = hfp_parse_indicator_index(hfp_connection); 14713deb3ec6SMatthias Ringwald break; 1472ce263fc8SMatthias Ringwald case HFP_CMD_HF_INDICATOR_STATUS: 147325789943SMilanka Ringwald hfp_connection->parser_indicator_index = hfp_parse_indicator_index(hfp_connection); 1474a0ffb263SMatthias Ringwald log_info("Parsed HF indicator index %u", hfp_connection->parser_indicator_index); 1475ce263fc8SMatthias Ringwald break; 14763deb3ec6SMatthias Ringwald case HFP_CMD_ENABLE_INDIVIDUAL_AG_INDICATOR_STATUS_UPDATE: 14773deb3ec6SMatthias Ringwald // AG parses new gen. ind. state 1478a0ffb263SMatthias Ringwald if (hfp_connection->ignore_value){ 1479a0ffb263SMatthias Ringwald hfp_connection->ignore_value = 0; 1480a0ffb263SMatthias Ringwald log_info("Parsed Enable AG indicator pos %u('%s') - unchanged (stays %u)\n", hfp_connection->parser_item_index, 1481a0ffb263SMatthias Ringwald hfp_connection->ag_indicators[hfp_connection->parser_item_index].name, hfp_connection->ag_indicators[hfp_connection->parser_item_index].enabled); 1482ce263fc8SMatthias Ringwald } 1483a0ffb263SMatthias Ringwald else if (hfp_connection->ag_indicators[hfp_connection->parser_item_index].mandatory){ 1484ce263fc8SMatthias Ringwald log_info("Parsed Enable AG indicator pos %u('%s') - ignore (mandatory)\n", 1485a0ffb263SMatthias Ringwald hfp_connection->parser_item_index, hfp_connection->ag_indicators[hfp_connection->parser_item_index].name); 1486ce263fc8SMatthias Ringwald } else { 14872308e108SMilanka Ringwald value = btstack_atoi((char *)&hfp_connection->line_buffer[0]); 1488a0ffb263SMatthias Ringwald hfp_connection->ag_indicators[hfp_connection->parser_item_index].enabled = value; 1489a0ffb263SMatthias Ringwald log_info("Parsed Enable AG indicator pos %u('%s'): %u\n", hfp_connection->parser_item_index, 1490a0ffb263SMatthias Ringwald hfp_connection->ag_indicators[hfp_connection->parser_item_index].name, value); 14913deb3ec6SMatthias Ringwald } 149225789943SMilanka Ringwald hfp_next_indicators_index(hfp_connection); 14933deb3ec6SMatthias Ringwald break; 14943deb3ec6SMatthias Ringwald case HFP_CMD_TRANSFER_AG_INDICATOR_STATUS: 14953deb3ec6SMatthias Ringwald // indicators are indexed starting with 1 149625789943SMilanka Ringwald hfp_connection->parser_item_index = hfp_parse_indicator_index(hfp_connection); 1497a0ffb263SMatthias Ringwald log_info("Parsed status of the AG indicator %d, status ", hfp_connection->parser_item_index); 14983deb3ec6SMatthias Ringwald break; 1499aa4dd815SMatthias Ringwald case HFP_CMD_QUERY_OPERATOR_SELECTION_NAME: 15002308e108SMilanka Ringwald hfp_connection->network_operator.mode = btstack_atoi((char *)&hfp_connection->line_buffer[0]); 1501a0ffb263SMatthias Ringwald log_info("Parsed network operator mode: %d, ", hfp_connection->network_operator.mode); 1502aa4dd815SMatthias Ringwald break; 1503aa4dd815SMatthias Ringwald case HFP_CMD_QUERY_OPERATOR_SELECTION_NAME_FORMAT: 1504a0ffb263SMatthias Ringwald if (hfp_connection->line_buffer[0] == '3'){ 1505a0ffb263SMatthias Ringwald log_info("Parsed Set network operator format : %s, ", hfp_connection->line_buffer); 15063deb3ec6SMatthias Ringwald break; 15073deb3ec6SMatthias Ringwald } 15083deb3ec6SMatthias Ringwald // TODO emit ERROR, wrong format 1509a0ffb263SMatthias Ringwald log_info("ERROR Set network operator format: index %s not supported\n", hfp_connection->line_buffer); 15103deb3ec6SMatthias Ringwald break; 15113deb3ec6SMatthias Ringwald case HFP_CMD_ERROR: 15123deb3ec6SMatthias Ringwald break; 15133deb3ec6SMatthias Ringwald case HFP_CMD_EXTENDED_AUDIO_GATEWAY_ERROR: 1514a0ffb263SMatthias Ringwald hfp_connection->extended_audio_gateway_error = 1; 15152308e108SMilanka Ringwald hfp_connection->extended_audio_gateway_error_value = (uint8_t)btstack_atoi((char*)hfp_connection->line_buffer); 15163deb3ec6SMatthias Ringwald break; 15173deb3ec6SMatthias Ringwald case HFP_CMD_ENABLE_EXTENDED_AUDIO_GATEWAY_ERROR: 15182308e108SMilanka Ringwald hfp_connection->enable_extended_audio_gateway_error_report = (uint8_t)btstack_atoi((char*)hfp_connection->line_buffer); 1519a0ffb263SMatthias Ringwald hfp_connection->ok_pending = 1; 1520a0ffb263SMatthias Ringwald hfp_connection->extended_audio_gateway_error = 0; 15213deb3ec6SMatthias Ringwald break; 1522ce263fc8SMatthias Ringwald case HFP_CMD_AG_SENT_PHONE_NUMBER: 1523a0ffb263SMatthias Ringwald case HFP_CMD_AG_SENT_CALL_WAITING_NOTIFICATION_UPDATE: 1524a0ffb263SMatthias Ringwald case HFP_CMD_AG_SENT_CLIP_INFORMATION: 1525a0ffb263SMatthias Ringwald strncpy(hfp_connection->bnip_number, (char *)hfp_connection->line_buffer, sizeof(hfp_connection->bnip_number)); 1526a0ffb263SMatthias Ringwald hfp_connection->bnip_number[sizeof(hfp_connection->bnip_number)-1] = 0; 15273deb3ec6SMatthias Ringwald break; 15280222a807SMatthias Ringwald case HFP_CMD_CALL_HOLD: 15290222a807SMatthias Ringwald hfp_connection->ag_call_hold_action = hfp_connection->line_buffer[0] - '0'; 15300222a807SMatthias Ringwald if (hfp_connection->line_buffer[1] != '\0'){ 15310222a807SMatthias Ringwald hfp_connection->call_index = btstack_atoi((char *)&hfp_connection->line_buffer[1]); 15320222a807SMatthias Ringwald } 15330222a807SMatthias Ringwald break; 15340222a807SMatthias Ringwald case HFP_CMD_RESPONSE_AND_HOLD_COMMAND: 15350222a807SMatthias Ringwald hfp_connection->ag_response_and_hold_action = btstack_atoi((char *)&hfp_connection->line_buffer[0]); 15360222a807SMatthias Ringwald break; 15370222a807SMatthias Ringwald case HFP_CMD_TRANSMIT_DTMF_CODES: 15380222a807SMatthias Ringwald hfp_connection->ag_dtmf_code = hfp_connection->line_buffer[0]; 15390222a807SMatthias Ringwald break; 15400222a807SMatthias Ringwald case HFP_CMD_ENABLE_CLIP: 15410222a807SMatthias Ringwald hfp_connection->clip_enabled = hfp_connection->line_buffer[0] != '0'; 15420222a807SMatthias Ringwald break; 15430222a807SMatthias Ringwald case HFP_CMD_ENABLE_CALL_WAITING_NOTIFICATION: 15440222a807SMatthias Ringwald hfp_connection->call_waiting_notification_enabled = hfp_connection->line_buffer[0] != '0'; 15450222a807SMatthias Ringwald break; 15463deb3ec6SMatthias Ringwald default: 15473deb3ec6SMatthias Ringwald break; 15483deb3ec6SMatthias Ringwald } 15493deb3ec6SMatthias Ringwald } 15503deb3ec6SMatthias Ringwald 15511d9c9c90SMilanka Ringwald static void hfp_handle_start_sdp_client_query(void * context){ 15521d9c9c90SMilanka Ringwald UNUSED(context); 15531d9c9c90SMilanka Ringwald 15541d9c9c90SMilanka Ringwald btstack_linked_list_iterator_t it; 15551d9c9c90SMilanka Ringwald btstack_linked_list_iterator_init(&it, &hfp_connections); 15561d9c9c90SMilanka Ringwald while (btstack_linked_list_iterator_has_next(&it)){ 15571d9c9c90SMilanka Ringwald hfp_connection_t * connection = (hfp_connection_t *)btstack_linked_list_iterator_next(&it); 15581d9c9c90SMilanka Ringwald 15591d9c9c90SMilanka Ringwald if (connection->state != HFP_W2_SEND_SDP_QUERY) continue; 15601d9c9c90SMilanka Ringwald 15611d9c9c90SMilanka Ringwald connection->state = HFP_W4_SDP_QUERY_COMPLETE; 15621d9c9c90SMilanka Ringwald sdp_query_context.local_role = connection->local_role; 15631d9c9c90SMilanka Ringwald (void)memcpy(sdp_query_context.remote_address, connection->remote_addr, 6); 1564e55c05e3SMatthias Ringwald sdp_client_query_rfcomm_channel_and_name_for_service_class_uuid(&handle_query_rfcomm_event, connection->remote_addr, connection->service_uuid); 15651d9c9c90SMilanka Ringwald return; 15661d9c9c90SMilanka Ringwald } 15671d9c9c90SMilanka Ringwald } 15681d9c9c90SMilanka Ringwald 1569323d3000SMatthias Ringwald void hfp_establish_service_level_connection(bd_addr_t bd_addr, uint16_t service_uuid, hfp_role_t local_role){ 1570323d3000SMatthias Ringwald hfp_connection_t * hfp_connection = provide_hfp_connection_context_for_bd_addr(bd_addr, local_role); 1571a0ffb263SMatthias Ringwald log_info("hfp_connect %s, hfp_connection %p", bd_addr_to_str(bd_addr), hfp_connection); 15723deb3ec6SMatthias Ringwald 1573a0ffb263SMatthias Ringwald if (!hfp_connection) { 15743deb3ec6SMatthias Ringwald log_error("hfp_establish_service_level_connection for addr %s failed", bd_addr_to_str(bd_addr)); 15753deb3ec6SMatthias Ringwald return; 15763deb3ec6SMatthias Ringwald } 1577a0ffb263SMatthias Ringwald switch (hfp_connection->state){ 15783deb3ec6SMatthias Ringwald case HFP_W2_DISCONNECT_RFCOMM: 1579a0ffb263SMatthias Ringwald hfp_connection->state = HFP_SERVICE_LEVEL_CONNECTION_ESTABLISHED; 15803deb3ec6SMatthias Ringwald return; 15813deb3ec6SMatthias Ringwald case HFP_W4_RFCOMM_DISCONNECTED: 1582a0ffb263SMatthias Ringwald hfp_connection->state = HFP_W4_RFCOMM_DISCONNECTED_AND_RESTART; 15833deb3ec6SMatthias Ringwald return; 15843deb3ec6SMatthias Ringwald case HFP_IDLE: 15856535961aSMatthias Ringwald (void)memcpy(hfp_connection->remote_addr, bd_addr, 6); 15861d9c9c90SMilanka Ringwald hfp_connection->state = HFP_W2_SEND_SDP_QUERY; 1587a0ffb263SMatthias Ringwald hfp_connection->service_uuid = service_uuid; 15881d9c9c90SMilanka Ringwald 15891d9c9c90SMilanka Ringwald hfp_handle_sdp_client_query_request.callback = &hfp_handle_start_sdp_client_query; 15901d9c9c90SMilanka Ringwald // ignore ERROR_CODE_COMMAND_DISALLOWED because in that case, we already have requested an SDP callback 15911d9c9c90SMilanka Ringwald (void) sdp_client_register_query_callback(&hfp_handle_sdp_client_query_request); 15923deb3ec6SMatthias Ringwald break; 15933deb3ec6SMatthias Ringwald default: 15943deb3ec6SMatthias Ringwald break; 15953deb3ec6SMatthias Ringwald } 15963deb3ec6SMatthias Ringwald } 15973deb3ec6SMatthias Ringwald 1598a0ffb263SMatthias Ringwald void hfp_release_service_level_connection(hfp_connection_t * hfp_connection){ 1599a0ffb263SMatthias Ringwald if (!hfp_connection) return; 1600a0ffb263SMatthias Ringwald hfp_release_audio_connection(hfp_connection); 16013deb3ec6SMatthias Ringwald 1602a0ffb263SMatthias Ringwald if (hfp_connection->state < HFP_W4_RFCOMM_CONNECTED){ 1603a0ffb263SMatthias Ringwald hfp_connection->state = HFP_IDLE; 16043deb3ec6SMatthias Ringwald return; 16053deb3ec6SMatthias Ringwald } 16063deb3ec6SMatthias Ringwald 1607a0ffb263SMatthias Ringwald if (hfp_connection->state == HFP_W4_RFCOMM_CONNECTED){ 1608a0ffb263SMatthias Ringwald hfp_connection->state = HFP_W4_CONNECTION_ESTABLISHED_TO_SHUTDOWN; 16093deb3ec6SMatthias Ringwald return; 16103deb3ec6SMatthias Ringwald } 16113deb3ec6SMatthias Ringwald 16120c3047fbSMatthias Ringwald if (hfp_connection->state < HFP_W4_SCO_CONNECTED){ 16130c3047fbSMatthias Ringwald hfp_connection->state = HFP_W2_DISCONNECT_RFCOMM; 16140c3047fbSMatthias Ringwald return; 16150c3047fbSMatthias Ringwald } 16160c3047fbSMatthias Ringwald 16170c3047fbSMatthias Ringwald if (hfp_connection->state < HFP_W4_SCO_DISCONNECTED){ 16180c3047fbSMatthias Ringwald hfp_connection->state = HFP_W2_DISCONNECT_SCO; 16190c3047fbSMatthias Ringwald return; 16200c3047fbSMatthias Ringwald } 16210c3047fbSMatthias Ringwald 16220c3047fbSMatthias Ringwald // HFP_W4_SCO_DISCONNECTED or later 16235f053052SMilanka Ringwald hfp_connection->release_slc_connection = 1; 16243deb3ec6SMatthias Ringwald } 16253deb3ec6SMatthias Ringwald 1626a0ffb263SMatthias Ringwald void hfp_release_audio_connection(hfp_connection_t * hfp_connection){ 1627a0ffb263SMatthias Ringwald if (!hfp_connection) return; 1628a0ffb263SMatthias Ringwald if (hfp_connection->state >= HFP_W2_DISCONNECT_SCO) return; 1629a0ffb263SMatthias Ringwald hfp_connection->release_audio_connection = 1; 16303deb3ec6SMatthias Ringwald } 16313deb3ec6SMatthias Ringwald 1632ce263fc8SMatthias Ringwald static const struct link_settings { 1633ce263fc8SMatthias Ringwald const uint16_t max_latency; 1634ce263fc8SMatthias Ringwald const uint8_t retransmission_effort; 1635ce263fc8SMatthias Ringwald const uint16_t packet_types; 1636ebc6f15bSMatthias Ringwald const bool eSCO; 1637ebc6f15bSMatthias Ringwald const uint8_t codec; 1638ce263fc8SMatthias Ringwald } hfp_link_settings [] = { 1639352a0504SMatthias Ringwald { 0xffff, 0xff, SCO_PACKET_TYPES_HV1, false, HFP_CODEC_CVSD }, // HFP_LINK_SETTINGS_D0 1640352a0504SMatthias Ringwald { 0xffff, 0xff, SCO_PACKET_TYPES_HV3, false, HFP_CODEC_CVSD }, // HFP_LINK_SETTINGS_D1 1641352a0504SMatthias Ringwald { 0x0007, 0x01, SCO_PACKET_TYPES_EV3, true, HFP_CODEC_CVSD }, // HFP_LINK_SETTINGS_S1 1642352a0504SMatthias Ringwald { 0x0007, 0x01, SCO_PACKET_TYPES_2EV3, true, HFP_CODEC_CVSD }, // HFP_LINK_SETTINGS_S2 1643352a0504SMatthias Ringwald { 0x000a, 0x01, SCO_PACKET_TYPES_2EV3, true, HFP_CODEC_CVSD }, // HFP_LINK_SETTINGS_S3 1644352a0504SMatthias Ringwald { 0x000c, 0x02, SCO_PACKET_TYPES_2EV3, true, HFP_CODEC_CVSD }, // HFP_LINK_SETTINGS_S4 1645352a0504SMatthias Ringwald { 0x0008, 0x02, SCO_PACKET_TYPES_EV3, true, HFP_CODEC_MSBC }, // HFP_LINK_SETTINGS_T1 1646352a0504SMatthias Ringwald { 0x000d, 0x02, SCO_PACKET_TYPES_2EV3, true, HFP_CODEC_MSBC } // HFP_LINK_SETTINGS_T2 1647ce263fc8SMatthias Ringwald }; 16483deb3ec6SMatthias Ringwald 1649eddcd308SMatthias Ringwald void hfp_setup_synchronous_connection(hfp_connection_t * hfp_connection){ 1650ce263fc8SMatthias Ringwald // all packet types, fixed bandwidth 1651eddcd308SMatthias Ringwald int setting = hfp_connection->link_setting; 1652ce263fc8SMatthias Ringwald log_info("hfp_setup_synchronous_connection using setting nr %u", setting); 1653eddcd308SMatthias Ringwald sco_establishment_active = hfp_connection; 1654d2c1d59aSMatthias Ringwald uint16_t sco_voice_setting = hci_get_sco_voice_setting(); 1655d2c1d59aSMatthias Ringwald if (hfp_connection->negotiated_codec == HFP_CODEC_MSBC){ 1656689d4323SMatthias Ringwald #ifdef ENABLE_BCM_PCM_WBS 1657689d4323SMatthias Ringwald sco_voice_setting = 0x0063; // Transparent data, 16-bit for BCM controllers 1658689d4323SMatthias Ringwald #else 1659689d4323SMatthias Ringwald sco_voice_setting = 0x0043; // Transparent data, 8-bit otherwise 1660689d4323SMatthias Ringwald #endif 1661d2c1d59aSMatthias Ringwald } 1662352a0504SMatthias Ringwald // get packet types - bits 6-9 are 'don't allow' 1663352a0504SMatthias Ringwald uint16_t packet_types = hfp_link_settings[setting].packet_types ^ 0x03c0; 1664eddcd308SMatthias Ringwald hci_send_cmd(&hci_setup_synchronous_connection, hfp_connection->acl_handle, 8000, 8000, hfp_link_settings[setting].max_latency, 1665352a0504SMatthias Ringwald sco_voice_setting, hfp_link_settings[setting].retransmission_effort, packet_types); 1666ce263fc8SMatthias Ringwald } 1667d68dcce1SMatthias Ringwald 16683721a235SMatthias Ringwald #ifdef ENABLE_CC256X_ASSISTED_HFP 16693721a235SMatthias Ringwald void hfp_cc256x_prepare_for_sco(hfp_connection_t * hfp_connection){ 16703721a235SMatthias Ringwald hfp_connection->cc256x_send_write_codec_config = true; 16713721a235SMatthias Ringwald if (hfp_connection->negotiated_codec == HFP_CODEC_MSBC){ 16723721a235SMatthias Ringwald hfp_connection->cc256x_send_wbs_associate = true; 16733721a235SMatthias Ringwald } 16743721a235SMatthias Ringwald } 16753721a235SMatthias Ringwald 16763721a235SMatthias Ringwald void hfp_cc256x_write_codec_config(hfp_connection_t * hfp_connection){ 16773721a235SMatthias Ringwald uint32_t sample_rate_hz; 16783721a235SMatthias Ringwald uint16_t clock_rate_khz; 16793721a235SMatthias Ringwald if (hfp_connection->negotiated_codec == HFP_CODEC_MSBC){ 16803721a235SMatthias Ringwald clock_rate_khz = 512; 16813721a235SMatthias Ringwald sample_rate_hz = 16000; 16823721a235SMatthias Ringwald } else { 16833721a235SMatthias Ringwald clock_rate_khz = 256; 16843721a235SMatthias Ringwald sample_rate_hz = 8000; 16853721a235SMatthias Ringwald } 16863721a235SMatthias Ringwald uint8_t clock_direction = 0; // master 16873721a235SMatthias Ringwald uint16_t frame_sync_duty_cycle = 0; // i2s with 50% 16883721a235SMatthias Ringwald uint8_t frame_sync_edge = 1; // rising edge 16893721a235SMatthias Ringwald uint8_t frame_sync_polarity = 0; // active high 16903721a235SMatthias Ringwald uint8_t reserved = 0; 16913721a235SMatthias Ringwald uint16_t size = 16; 16923721a235SMatthias Ringwald uint16_t chan_1_offset = 1; 16933721a235SMatthias Ringwald uint16_t chan_2_offset = chan_1_offset + size; 16943721a235SMatthias Ringwald uint8_t out_edge = 1; // rising 16953721a235SMatthias Ringwald uint8_t in_edge = 0; // falling 16963721a235SMatthias Ringwald hci_send_cmd(&hci_ti_write_codec_config, clock_rate_khz, clock_direction, sample_rate_hz, frame_sync_duty_cycle, 16973721a235SMatthias Ringwald frame_sync_edge, frame_sync_polarity, reserved, 16983721a235SMatthias Ringwald size, chan_1_offset, out_edge, size, chan_1_offset, in_edge, reserved, 16993721a235SMatthias Ringwald size, chan_2_offset, out_edge, size, chan_2_offset, in_edge, reserved); 17003721a235SMatthias Ringwald } 17013721a235SMatthias Ringwald #endif 17023721a235SMatthias Ringwald 1703689d4323SMatthias Ringwald #ifdef ENABLE_BCM_PCM_WBS 1704689d4323SMatthias Ringwald void hfp_bcm_prepare_for_sco(hfp_connection_t * hfp_connection){ 1705689d4323SMatthias Ringwald hfp_connection->bcm_send_write_i2spcm_interface_param = true; 1706689d4323SMatthias Ringwald if (hfp_connection->negotiated_codec == HFP_CODEC_MSBC){ 1707689d4323SMatthias Ringwald hfp_connection->bcm_send_enable_wbs = true; 1708689d4323SMatthias Ringwald } 1709689d4323SMatthias Ringwald } 1710689d4323SMatthias Ringwald void hfp_bcm_write_i2spcm_interface_param(hfp_connection_t * hfp_connection){ 1711689d4323SMatthias Ringwald uint8_t sample_rate = (hfp_connection->negotiated_codec == HFP_CODEC_MSBC) ? 1 : 0; 17121d2bbd54SMatthias Ringwald // i2s enable, master, 8/16 kHz, 512 kHz 17131d2bbd54SMatthias Ringwald hci_send_cmd(&hci_bcm_write_i2spcm_interface_paramhci_bcm_write_i2spcm_interface_param, 1, 1, sample_rate, 2); 1714689d4323SMatthias Ringwald } 1715689d4323SMatthias Ringwald #endif 1716689d4323SMatthias Ringwald 17171b005648SMatthias Ringwald void hfp_set_hf_callback(btstack_packet_handler_t callback){ 17181b005648SMatthias Ringwald hfp_hf_callback = callback; 17191b005648SMatthias Ringwald } 17201b005648SMatthias Ringwald 17211b005648SMatthias Ringwald void hfp_set_ag_callback(btstack_packet_handler_t callback){ 17221b005648SMatthias Ringwald hfp_ag_callback = callback; 17231b005648SMatthias Ringwald } 17241b005648SMatthias Ringwald 1725ca59be51SMatthias Ringwald void hfp_set_ag_rfcomm_packet_handler(btstack_packet_handler_t handler){ 1726ca59be51SMatthias Ringwald hfp_ag_rfcomm_packet_handler = handler; 1727ca59be51SMatthias Ringwald } 17281b005648SMatthias Ringwald 1729ca59be51SMatthias Ringwald void hfp_set_hf_rfcomm_packet_handler(btstack_packet_handler_t handler){ 1730ca59be51SMatthias Ringwald hfp_hf_rfcomm_packet_handler = handler; 1731d68dcce1SMatthias Ringwald } 1732d68dcce1SMatthias Ringwald 1733520c92d5SMatthias Ringwald void hfp_init(void){ 1734352a0504SMatthias Ringwald hfp_allowed_sco_packet_types = SCO_PACKET_TYPES_ALL; 1735991c26beSMatthias Ringwald } 1736991c26beSMatthias Ringwald 173720b2edb6SMatthias Ringwald void hfp_deinit(void){ 173820b2edb6SMatthias Ringwald hfp_connections = NULL; 173920b2edb6SMatthias Ringwald hfp_hf_callback = NULL; 174020b2edb6SMatthias Ringwald hfp_ag_callback = NULL; 174120b2edb6SMatthias Ringwald hfp_hf_rfcomm_packet_handler = NULL; 174220b2edb6SMatthias Ringwald hfp_ag_rfcomm_packet_handler = NULL; 174320b2edb6SMatthias Ringwald sco_establishment_active = NULL; 174420b2edb6SMatthias Ringwald (void) memset(&sdp_query_context, 0, sizeof(hfp_sdp_query_context_t)); 174520b2edb6SMatthias Ringwald (void) memset(&hfp_handle_sdp_client_query_request, 0, sizeof(btstack_context_callback_registration_t)); 174620b2edb6SMatthias Ringwald } 174720b2edb6SMatthias Ringwald 1748991c26beSMatthias Ringwald void hfp_set_sco_packet_types(uint16_t packet_types){ 174901e5b727SMatthias Ringwald hfp_allowed_sco_packet_types = packet_types; 1750991c26beSMatthias Ringwald } 1751991c26beSMatthias Ringwald 1752991c26beSMatthias Ringwald uint16_t hfp_get_sco_packet_types(void){ 175301e5b727SMatthias Ringwald return hfp_allowed_sco_packet_types; 1754520c92d5SMatthias Ringwald } 1755186dd3d2SMatthias Ringwald 1756e453c1d9SMatthias 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){ 1757e453c1d9SMatthias Ringwald int8_t setting = (int8_t) current_setting; 1758e453c1d9SMatthias Ringwald bool can_use_eSCO = local_eSCO_supported && remote_eSCO_supported; 1759e453c1d9SMatthias Ringwald while (setting > 0){ 1760e453c1d9SMatthias Ringwald setting--; 1761e453c1d9SMatthias Ringwald // skip if eSCO required but not available 1762e453c1d9SMatthias Ringwald if (hfp_link_settings[setting].eSCO && !can_use_eSCO) continue; 1763e453c1d9SMatthias Ringwald // skip if S4 but not supported 1764e453c1d9SMatthias Ringwald if ((setting == (int8_t) HFP_LINK_SETTINGS_S4) && !eSCO_S4_supported) continue; 1765e453c1d9SMatthias Ringwald // skip wrong codec 1766e453c1d9SMatthias Ringwald if ( hfp_link_settings[setting].codec != negotiated_codec) continue; 176701e5b727SMatthias Ringwald // skip disabled packet types 1768352a0504SMatthias Ringwald uint16_t required_packet_types = hfp_link_settings[setting].packet_types; 1769352a0504SMatthias Ringwald uint16_t allowed_packet_types = hfp_allowed_sco_packet_types; 1770352a0504SMatthias Ringwald if ((required_packet_types & allowed_packet_types) == 0) continue; 177101e5b727SMatthias Ringwald 1772e453c1d9SMatthias Ringwald // found matching setting 1773e453c1d9SMatthias Ringwald return (hfp_link_settings_t) setting; 1774afac2a04SMilanka Ringwald } 1775e453c1d9SMatthias Ringwald return HFP_LINK_SETTINGS_NONE; 1776afac2a04SMilanka Ringwald } 1777e453c1d9SMatthias Ringwald 17782b7abbfbSMatthias 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){ 1779e453c1d9SMatthias Ringwald bool local_eSCO_supported = hci_extended_sco_link_supported(); 1780e453c1d9SMatthias Ringwald bool remote_eSCO_supported = hci_remote_esco_supported(hfp_connection->acl_handle); 1781e453c1d9SMatthias Ringwald uint8_t negotiated_codec = hfp_connection->negotiated_codec; 17822b7abbfbSMatthias Ringwald return hfp_next_link_setting(current_setting, local_eSCO_supported, remote_eSCO_supported, eSCO_S4_supported, negotiated_codec); 17832b7abbfbSMatthias Ringwald } 17842b7abbfbSMatthias Ringwald 17852b7abbfbSMatthias Ringwald void hfp_init_link_settings(hfp_connection_t * hfp_connection, uint8_t eSCO_S4_supported){ 1786e453c1d9SMatthias Ringwald // get highest possible link setting 17872b7abbfbSMatthias Ringwald hfp_connection->link_setting = hfp_next_link_setting_for_connection(HFP_LINK_SETTINGS_NONE, hfp_connection, eSCO_S4_supported); 1788afac2a04SMilanka Ringwald log_info("hfp_init_link_settings: %u", hfp_connection->link_setting); 1789afac2a04SMilanka Ringwald } 1790afac2a04SMilanka Ringwald 1791186dd3d2SMatthias Ringwald #define HFP_HF_RX_DEBUG_PRINT_LINE 80 1792186dd3d2SMatthias Ringwald 1793186dd3d2SMatthias Ringwald void hfp_log_rfcomm_message(const char * tag, uint8_t * packet, uint16_t size){ 1794186dd3d2SMatthias Ringwald #ifdef ENABLE_LOG_INFO 1795186dd3d2SMatthias Ringwald // encode \n\r 1796186dd3d2SMatthias Ringwald char printable[HFP_HF_RX_DEBUG_PRINT_LINE+2]; 179715a27967SMatthias Ringwald int i = 0; 1798186dd3d2SMatthias Ringwald int pos; 179915a27967SMatthias Ringwald for (pos=0 ; (pos < size) && (i < (HFP_HF_RX_DEBUG_PRINT_LINE - 3)) ; pos++){ 1800186dd3d2SMatthias Ringwald switch (packet[pos]){ 1801186dd3d2SMatthias Ringwald case '\n': 1802186dd3d2SMatthias Ringwald printable[i++] = '\\'; 1803186dd3d2SMatthias Ringwald printable[i++] = 'n'; 1804186dd3d2SMatthias Ringwald break; 1805186dd3d2SMatthias Ringwald case '\r': 1806186dd3d2SMatthias Ringwald printable[i++] = '\\'; 1807186dd3d2SMatthias Ringwald printable[i++] = 'r'; 1808186dd3d2SMatthias Ringwald break; 1809186dd3d2SMatthias Ringwald default: 1810186dd3d2SMatthias Ringwald printable[i++] = packet[pos]; 1811186dd3d2SMatthias Ringwald break; 1812186dd3d2SMatthias Ringwald } 1813186dd3d2SMatthias Ringwald } 1814186dd3d2SMatthias Ringwald printable[i] = 0; 1815186dd3d2SMatthias Ringwald log_info("%s: '%s'", tag, printable); 1816186dd3d2SMatthias Ringwald #endif 1817186dd3d2SMatthias Ringwald } 1818