13deb3ec6SMatthias Ringwald /* 23deb3ec6SMatthias Ringwald * Copyright (C) 2014 BlueKitchen GmbH 33deb3ec6SMatthias Ringwald * 43deb3ec6SMatthias Ringwald * Redistribution and use in source and binary forms, with or without 53deb3ec6SMatthias Ringwald * modification, are permitted provided that the following conditions 63deb3ec6SMatthias Ringwald * are met: 73deb3ec6SMatthias Ringwald * 83deb3ec6SMatthias Ringwald * 1. Redistributions of source code must retain the above copyright 93deb3ec6SMatthias Ringwald * notice, this list of conditions and the following disclaimer. 103deb3ec6SMatthias Ringwald * 2. Redistributions in binary form must reproduce the above copyright 113deb3ec6SMatthias Ringwald * notice, this list of conditions and the following disclaimer in the 123deb3ec6SMatthias Ringwald * documentation and/or other materials provided with the distribution. 133deb3ec6SMatthias Ringwald * 3. Neither the name of the copyright holders nor the names of 143deb3ec6SMatthias Ringwald * contributors may be used to endorse or promote products derived 153deb3ec6SMatthias Ringwald * from this software without specific prior written permission. 163deb3ec6SMatthias Ringwald * 4. Any redistribution, use, or modification is done solely for 173deb3ec6SMatthias Ringwald * personal benefit and not for any commercial purpose or for 183deb3ec6SMatthias Ringwald * monetary gain. 193deb3ec6SMatthias Ringwald * 203deb3ec6SMatthias Ringwald * THIS SOFTWARE IS PROVIDED BY BLUEKITCHEN GMBH AND CONTRIBUTORS 213deb3ec6SMatthias Ringwald * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 223deb3ec6SMatthias Ringwald * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS 232fca4dadSMilanka Ringwald * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BLUEKITCHEN 242fca4dadSMilanka Ringwald * GMBH OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, 253deb3ec6SMatthias Ringwald * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, 263deb3ec6SMatthias Ringwald * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS 273deb3ec6SMatthias Ringwald * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED 283deb3ec6SMatthias Ringwald * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, 293deb3ec6SMatthias Ringwald * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF 303deb3ec6SMatthias Ringwald * THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 313deb3ec6SMatthias Ringwald * SUCH DAMAGE. 323deb3ec6SMatthias Ringwald * 333deb3ec6SMatthias Ringwald * Please inquire about commercial licensing options at 343deb3ec6SMatthias Ringwald * [email protected] 353deb3ec6SMatthias Ringwald * 363deb3ec6SMatthias Ringwald */ 37ab2c6ae4SMatthias Ringwald 38e501bae0SMatthias Ringwald #define BTSTACK_FILE__ "hfp_hf.c" 393deb3ec6SMatthias Ringwald 403deb3ec6SMatthias Ringwald // ***************************************************************************** 413deb3ec6SMatthias Ringwald // 42fffdd288SMatthias Ringwald // HFP Hands-Free (HF) unit 433deb3ec6SMatthias Ringwald // 443deb3ec6SMatthias Ringwald // ***************************************************************************** 453deb3ec6SMatthias Ringwald 467907f069SMatthias Ringwald #include "btstack_config.h" 473deb3ec6SMatthias Ringwald 483deb3ec6SMatthias Ringwald #include <stdint.h> 493cfa4086SMatthias Ringwald #include <stdio.h> 503deb3ec6SMatthias Ringwald #include <string.h> 513deb3ec6SMatthias Ringwald 52235946f1SMatthias Ringwald #include "bluetooth_sdp.h" 5359c6af15SMatthias Ringwald #include "btstack_debug.h" 54d4dd47ffSMatthias Ringwald #include "btstack_event.h" 553deb3ec6SMatthias Ringwald #include "btstack_memory.h" 5659c6af15SMatthias Ringwald #include "btstack_run_loop.h" 5759c6af15SMatthias Ringwald #include "classic/core.h" 5859c6af15SMatthias Ringwald #include "classic/hfp.h" 5959c6af15SMatthias Ringwald #include "classic/hfp_hf.h" 60efda0b48SMatthias Ringwald #include "classic/sdp_client_rfcomm.h" 61746ccb7eSMatthias Ringwald #include "classic/sdp_server.h" 62023f2764SMatthias Ringwald #include "classic/sdp_util.h" 6359c6af15SMatthias Ringwald #include "hci.h" 6459c6af15SMatthias Ringwald #include "hci_cmd.h" 6559c6af15SMatthias Ringwald #include "hci_dump.h" 6659c6af15SMatthias Ringwald #include "l2cap.h" 673deb3ec6SMatthias Ringwald 6820b2edb6SMatthias Ringwald // const 69aeb0f0feSMatthias Ringwald static const char hfp_hf_default_service_name[] = "Hands-Free unit"; 7020b2edb6SMatthias Ringwald 7120b2edb6SMatthias Ringwald // globals 72aeb0f0feSMatthias Ringwald 73aeb0f0feSMatthias Ringwald // higher layer callbacks 74aeb0f0feSMatthias Ringwald static btstack_packet_handler_t hfp_hf_callback; 75aeb0f0feSMatthias Ringwald 761c6a0fc0SMatthias Ringwald static btstack_packet_callback_registration_t hfp_hf_hci_event_callback_registration; 7727950165SMatthias Ringwald 78aeb0f0feSMatthias Ringwald static uint16_t hfp_hf_supported_features; 79aeb0f0feSMatthias Ringwald static uint8_t hfp_hf_codecs_nr; 80aeb0f0feSMatthias Ringwald static uint8_t hfp_hf_codecs[HFP_MAX_NUM_CODECS]; 813deb3ec6SMatthias Ringwald 82aeb0f0feSMatthias Ringwald static uint8_t hfp_hf_indicators_nr; 83aeb0f0feSMatthias Ringwald static uint8_t hfp_hf_indicators[HFP_MAX_NUM_INDICATORS]; 84aeb0f0feSMatthias Ringwald static uint32_t hfp_hf_indicators_value[HFP_MAX_NUM_INDICATORS]; 85667ec068SMatthias Ringwald 8620b2edb6SMatthias Ringwald static uint8_t hfp_hf_speaker_gain; 8720b2edb6SMatthias Ringwald static uint8_t hfp_hf_microphone_gain; 883deb3ec6SMatthias Ringwald 89aeb0f0feSMatthias Ringwald static hfp_call_status_t hfp_hf_call_status; 90aeb0f0feSMatthias Ringwald static hfp_callsetup_status_t hfp_hf_callsetup_status; 91aeb0f0feSMatthias Ringwald static hfp_callheld_status_t hfp_hf_callheld_status; 923deb3ec6SMatthias Ringwald 93aeb0f0feSMatthias Ringwald static char hfp_hf_phone_number[25]; 94ce263fc8SMatthias Ringwald 95ce263fc8SMatthias Ringwald 9676cc1527SMatthias Ringwald static int has_codec_negotiation_feature(hfp_connection_t * hfp_connection){ 97aeb0f0feSMatthias Ringwald int hf = get_bit(hfp_hf_supported_features, HFP_HFSF_CODEC_NEGOTIATION); 9876cc1527SMatthias Ringwald int ag = get_bit(hfp_connection->remote_supported_features, HFP_AGSF_CODEC_NEGOTIATION); 9976cc1527SMatthias Ringwald return hf && ag; 10076cc1527SMatthias Ringwald } 10176cc1527SMatthias Ringwald 10276cc1527SMatthias Ringwald static int has_call_waiting_and_3way_calling_feature(hfp_connection_t * hfp_connection){ 103aeb0f0feSMatthias Ringwald int hf = get_bit(hfp_hf_supported_features, HFP_HFSF_THREE_WAY_CALLING); 10476cc1527SMatthias Ringwald int ag = get_bit(hfp_connection->remote_supported_features, HFP_AGSF_THREE_WAY_CALLING); 10576cc1527SMatthias Ringwald return hf && ag; 10676cc1527SMatthias Ringwald } 10776cc1527SMatthias Ringwald 10876cc1527SMatthias Ringwald 10976cc1527SMatthias Ringwald static int has_hf_indicators_feature(hfp_connection_t * hfp_connection){ 110aeb0f0feSMatthias Ringwald int hf = get_bit(hfp_hf_supported_features, HFP_HFSF_HF_INDICATORS); 11176cc1527SMatthias Ringwald int ag = get_bit(hfp_connection->remote_supported_features, HFP_AGSF_HF_INDICATORS); 11276cc1527SMatthias Ringwald return hf && ag; 11376cc1527SMatthias Ringwald } 11476cc1527SMatthias Ringwald 115fcf4ede6SMilanka Ringwald static bool hfp_hf_vra_flag_supported(hfp_connection_t * hfp_connection){ 116fcf4ede6SMilanka Ringwald int hf = get_bit(hfp_hf_supported_features, HFP_HFSF_VOICE_RECOGNITION_FUNCTION); 117fcf4ede6SMilanka Ringwald int ag = get_bit(hfp_connection->remote_supported_features, HFP_AGSF_VOICE_RECOGNITION_FUNCTION); 118fcf4ede6SMilanka Ringwald return hf && ag; 119fcf4ede6SMilanka Ringwald } 120fcf4ede6SMilanka Ringwald 121fcf4ede6SMilanka Ringwald static bool hfp_hf_enhanced_vra_flag_supported(hfp_connection_t * hfp_connection){ 122fcf4ede6SMilanka Ringwald int hf = get_bit(hfp_hf_supported_features, HFP_HFSF_ENHANCED_VOICE_RECOGNITION_STATUS); 123fcf4ede6SMilanka Ringwald int ag = get_bit(hfp_connection->remote_supported_features, HFP_AGSF_ENHANCED_VOICE_RECOGNITION_STATUS); 124fcf4ede6SMilanka Ringwald return hf && ag; 125fcf4ede6SMilanka Ringwald } 12676cc1527SMatthias Ringwald 1279c9c64c1SMatthias Ringwald static hfp_connection_t * get_hfp_hf_connection_context_for_acl_handle(uint16_t handle){ 1289c9c64c1SMatthias Ringwald btstack_linked_list_iterator_t it; 1299c9c64c1SMatthias Ringwald btstack_linked_list_iterator_init(&it, hfp_get_connections()); 1309c9c64c1SMatthias Ringwald while (btstack_linked_list_iterator_has_next(&it)){ 1319c9c64c1SMatthias Ringwald hfp_connection_t * hfp_connection = (hfp_connection_t *)btstack_linked_list_iterator_next(&it); 1329c9c64c1SMatthias Ringwald if (hfp_connection->acl_handle != handle) continue; 1339c9c64c1SMatthias Ringwald if (hfp_connection->local_role != HFP_ROLE_HF) continue; 1349c9c64c1SMatthias Ringwald return hfp_connection; 1359c9c64c1SMatthias Ringwald } 1369c9c64c1SMatthias Ringwald return NULL; 1379c9c64c1SMatthias Ringwald } 1389c9c64c1SMatthias Ringwald 139c10fde09SMatthias Ringwald /* emit functions */ 1403deb3ec6SMatthias Ringwald 141a473a009SMatthias Ringwald static void hfp_hf_emit_subscriber_information(const hfp_connection_t * hfp_connection, uint8_t status){ 142a473a009SMatthias Ringwald if (hfp_hf_callback == NULL) return; 143ab2445a0SMatthias Ringwald uint16_t bnip_number_len = btstack_min((uint16_t) strlen(hfp_connection->bnip_number), sizeof(hfp_connection->bnip_number)-1); 144c10fde09SMatthias Ringwald uint8_t event[7 + sizeof(hfp_connection->bnip_number)]; 145a0ffb263SMatthias Ringwald event[0] = HCI_EVENT_HFP_META; 146c10fde09SMatthias Ringwald event[1] = 6 + bnip_number_len; 147a473a009SMatthias Ringwald event[2] = HFP_SUBEVENT_SUBSCRIBER_NUMBER_INFORMATION; 148d703d377SMatthias Ringwald little_endian_store_16(event, 3, hfp_connection->acl_handle); 149d703d377SMatthias Ringwald event[5] = status; 150d703d377SMatthias Ringwald event[6] = hfp_connection->bnip_type; 151c10fde09SMatthias Ringwald memcpy(&event[7], hfp_connection->bnip_number, bnip_number_len); 152c10fde09SMatthias Ringwald event[7 + bnip_number_len] = 0; 153c10fde09SMatthias Ringwald (*hfp_hf_callback)(HCI_EVENT_PACKET, 0, event, 8 + bnip_number_len); 154a0ffb263SMatthias Ringwald } 155a0ffb263SMatthias Ringwald 156598d4936SMatthias Ringwald static void hfp_hf_emit_type_number_alpha(const hfp_connection_t * hfp_connection, uint8_t event_subtype){ 157a473a009SMatthias Ringwald if (hfp_hf_callback == NULL) return; 158ab2445a0SMatthias Ringwald uint16_t bnip_number_len = btstack_min((uint16_t) strlen(hfp_connection->bnip_number), sizeof(hfp_connection->bnip_number)-1); 159598d4936SMatthias Ringwald // 10 fixed - 1 (bnip_number_len <= sizeof(hfp_connection->bnip_number)-1) + 1 (trailing \0 for line buffer) 160598d4936SMatthias Ringwald uint8_t event[10 + sizeof(hfp_connection->bnip_number) + sizeof(hfp_connection->line_buffer)]; 161ab2445a0SMatthias Ringwald uint8_t alpha_len = hfp_connection->clip_have_alpha ? (uint16_t) strlen((const char *) hfp_connection->line_buffer) : 0; 162598d4936SMatthias Ringwald uint8_t pos = 0; 163598d4936SMatthias Ringwald event[pos++] = HCI_EVENT_HFP_META; 164598d4936SMatthias Ringwald event[pos++] = 8 + bnip_number_len + alpha_len; 165598d4936SMatthias Ringwald event[pos++] = event_subtype; 166d703d377SMatthias Ringwald little_endian_store_16(event, 3, hfp_connection->acl_handle); 167598d4936SMatthias Ringwald pos += 2; 168598d4936SMatthias Ringwald event[pos++] = hfp_connection->bnip_type; 169a45da34eSMatthias Ringwald event[pos++] = bnip_number_len + 1; 170598d4936SMatthias Ringwald memcpy(&event[7], hfp_connection->bnip_number, bnip_number_len); 171598d4936SMatthias Ringwald pos += bnip_number_len; 172598d4936SMatthias Ringwald event[pos++] = 0; 173a45da34eSMatthias Ringwald event[pos++] = alpha_len + 1; 174598d4936SMatthias Ringwald memcpy(&event[pos], hfp_connection->line_buffer, alpha_len); 175598d4936SMatthias Ringwald pos += alpha_len; 176598d4936SMatthias Ringwald event[pos++] = 0; 177598d4936SMatthias Ringwald (*hfp_hf_callback)(HCI_EVENT_PACKET, 0, event, pos); 178a0ffb263SMatthias Ringwald } 179a0ffb263SMatthias Ringwald 180a473a009SMatthias Ringwald static void hfp_hf_emit_enhanced_call_status(const hfp_connection_t * hfp_connection){ 181a473a009SMatthias Ringwald if (hfp_hf_callback == NULL) return; 1825f5a2872SMilanka Ringwald 183ab2445a0SMatthias Ringwald uint16_t bnip_number_len = (uint16_t) strlen((const char *) hfp_connection->bnip_number); 1845f5a2872SMilanka Ringwald uint8_t event[11 + HFP_BNEP_NUM_MAX_SIZE]; 185c10fde09SMatthias Ringwald event[0] = HCI_EVENT_HFP_META; 1865f5a2872SMilanka Ringwald event[1] = 10 + bnip_number_len + 1; 187c10fde09SMatthias Ringwald event[2] = HFP_SUBEVENT_ENHANCED_CALL_STATUS; 188c10fde09SMatthias Ringwald little_endian_store_16(event, 3, hfp_connection->acl_handle); 1895f5a2872SMilanka Ringwald event[5] = hfp_connection->clcc_idx; 1905f5a2872SMilanka Ringwald event[6] = hfp_connection->clcc_dir; 1915f5a2872SMilanka Ringwald event[7] = hfp_connection->clcc_status; 1925f5a2872SMilanka Ringwald event[8] = hfp_connection->clcc_mode; 1935f5a2872SMilanka Ringwald event[9] = hfp_connection->clcc_mpty; 1945f5a2872SMilanka Ringwald event[10] = hfp_connection->bnip_type; 1955f5a2872SMilanka Ringwald memcpy(&event[11], hfp_connection->bnip_number, bnip_number_len + 1); 1965f5a2872SMilanka Ringwald 1975f5a2872SMilanka Ringwald (*hfp_hf_callback)(HCI_EVENT_PACKET, 0, event, 11 + bnip_number_len + 1); 198a0ffb263SMatthias Ringwald } 199a0ffb263SMatthias Ringwald 2001ac1f60fSMilanka Ringwald static void hfp_emit_ag_indicator_mapping_event(const hfp_connection_t * hfp_connection, const hfp_ag_indicator_t * indicator){ 2011ac1f60fSMilanka Ringwald if (hfp_hf_callback == NULL) return; 202c10fde09SMatthias Ringwald uint8_t event[8 + HFP_MAX_INDICATOR_DESC_SIZE]; 203ab2445a0SMatthias Ringwald uint16_t indicator_len = btstack_min((uint16_t) strlen(indicator->name), HFP_MAX_INDICATOR_DESC_SIZE-1); 204c10fde09SMatthias Ringwald event[0] = HCI_EVENT_HFP_META; 205c10fde09SMatthias Ringwald event[1] = 7 + indicator_len; 206c10fde09SMatthias Ringwald event[2] = HFP_SUBEVENT_AG_INDICATOR_MAPPING; 207c10fde09SMatthias Ringwald little_endian_store_16(event, 3, hfp_connection->acl_handle); 208c10fde09SMatthias Ringwald event[5] = indicator->index; 209c10fde09SMatthias Ringwald event[6] = indicator->min_range; 210c10fde09SMatthias Ringwald event[7] = indicator->max_range; 211c10fde09SMatthias Ringwald memcpy(&event[8], indicator->name, indicator_len); 212c10fde09SMatthias Ringwald event[8+indicator_len] = 0; 213c10fde09SMatthias Ringwald (*hfp_hf_callback)(HCI_EVENT_PACKET, 0, event, 9 + indicator_len); 2141ac1f60fSMilanka Ringwald } 21576cc1527SMatthias Ringwald 216ce3797e1SMilanka Ringwald static void hfp_emit_ag_indicator_status_event(const hfp_connection_t * hfp_connection, const hfp_ag_indicator_t * indicator){ 217a473a009SMatthias Ringwald if (hfp_hf_callback == NULL) return; 218c10fde09SMatthias Ringwald uint8_t event[12+HFP_MAX_INDICATOR_DESC_SIZE]; 219ab2445a0SMatthias Ringwald uint16_t indicator_len = btstack_min((uint16_t) strlen(indicator->name), HFP_MAX_INDICATOR_DESC_SIZE-1); 220c10fde09SMatthias Ringwald event[0] = HCI_EVENT_HFP_META; 221c10fde09SMatthias Ringwald event[1] = 11 + indicator_len; 222c10fde09SMatthias Ringwald event[2] = HFP_SUBEVENT_AG_INDICATOR_STATUS_CHANGED; 223c10fde09SMatthias Ringwald little_endian_store_16(event, 3, hfp_connection->acl_handle); 224c10fde09SMatthias Ringwald event[5] = indicator->index; 225c10fde09SMatthias Ringwald event[6] = indicator->status; 226c10fde09SMatthias Ringwald event[7] = indicator->min_range; 227c10fde09SMatthias Ringwald event[8] = indicator->max_range; 228c10fde09SMatthias Ringwald event[9] = indicator->mandatory; 229c10fde09SMatthias Ringwald event[10] = indicator->enabled; 230c10fde09SMatthias Ringwald event[11] = indicator->status_changed; 231c10fde09SMatthias Ringwald memcpy(&event[12], indicator->name, indicator_len); 232c10fde09SMatthias Ringwald event[12+indicator_len] = 0; 233c10fde09SMatthias Ringwald (*hfp_hf_callback)(HCI_EVENT_PACKET, 0, event, 13 + indicator_len); 2343deb3ec6SMatthias Ringwald } 2353deb3ec6SMatthias Ringwald 236a473a009SMatthias Ringwald static void hfp_emit_network_operator_event(const hfp_connection_t * hfp_connection){ 237a473a009SMatthias Ringwald if (hfp_hf_callback == NULL) return; 238ab2445a0SMatthias Ringwald uint16_t operator_len = btstack_min((uint16_t) strlen(hfp_connection->network_operator.name), HFP_MAX_NETWORK_OPERATOR_NAME_SIZE-1); 239c10fde09SMatthias Ringwald uint8_t event[7+HFP_MAX_NETWORK_OPERATOR_NAME_SIZE]; 24076cc1527SMatthias Ringwald event[0] = HCI_EVENT_HFP_META; 24176cc1527SMatthias Ringwald event[1] = sizeof(event) - 2; 242f127324fSMilanka Ringwald event[2] = HFP_SUBEVENT_NETWORK_OPERATOR_CHANGED; 243d703d377SMatthias Ringwald little_endian_store_16(event, 3, hfp_connection->acl_handle); 244d703d377SMatthias Ringwald event[5] = hfp_connection->network_operator.mode; 245d703d377SMatthias Ringwald event[6] = hfp_connection->network_operator.format; 246c10fde09SMatthias Ringwald memcpy(&event[7], hfp_connection->network_operator.name, operator_len); 247c10fde09SMatthias Ringwald event[7+operator_len] = 0; 248c10fde09SMatthias Ringwald (*hfp_hf_callback)(HCI_EVENT_PACKET, 0, event, 8 + operator_len); 2493deb3ec6SMatthias Ringwald } 2503deb3ec6SMatthias Ringwald 251b95cac54SMilanka Ringwald 252b95cac54SMilanka Ringwald static void hfp_hf_emit_enhanced_voice_recognition_text(hfp_connection_t * hfp_connection){ 253b95cac54SMilanka Ringwald btstack_assert(hfp_connection != NULL); 25451aa5d5aSMilanka Ringwald uint8_t event[HFP_MAX_VR_TEXT_SIZE + 11]; 255b95cac54SMilanka Ringwald int pos = 0; 256b95cac54SMilanka Ringwald event[pos++] = HCI_EVENT_HFP_META; 257b95cac54SMilanka Ringwald event[pos++] = sizeof(event) - 2; 258b95cac54SMilanka Ringwald event[pos++] = HFP_SUBEVENT_ENHANCED_VOICE_RECOGNITION_AG_MESSAGE; 259b95cac54SMilanka Ringwald little_endian_store_16(event, pos, hfp_connection->acl_handle); 260b95cac54SMilanka Ringwald pos += 2; 261b95cac54SMilanka Ringwald little_endian_store_16(event, pos, hfp_connection->ag_msg.text_id); 262b95cac54SMilanka Ringwald pos += 2; 263b95cac54SMilanka Ringwald event[pos++] = hfp_connection->ag_msg.text_type; 264e83f1be7SMilanka Ringwald event[pos++] = hfp_connection->ag_msg.text_operation; 265b95cac54SMilanka Ringwald 26651aa5d5aSMilanka Ringwald // length, zero ending is already in message 267b95cac54SMilanka Ringwald uint8_t * value = &hfp_connection->line_buffer[0]; 26851aa5d5aSMilanka Ringwald uint16_t value_length = hfp_connection->ag_vra_msg_length; 26951aa5d5aSMilanka Ringwald 27051aa5d5aSMilanka Ringwald little_endian_store_16(event, pos, value_length); 271b95cac54SMilanka Ringwald pos += 2; 27251aa5d5aSMilanka Ringwald memcpy(&event[pos], value, value_length); 27351aa5d5aSMilanka Ringwald pos += value_length; 27451aa5d5aSMilanka Ringwald 275b95cac54SMilanka Ringwald (*hfp_hf_callback)(HCI_EVENT_PACKET, 0, event, pos); 276b95cac54SMilanka Ringwald } 277b95cac54SMilanka Ringwald 278892f58a8SMatthias Ringwald static void hfp_hf_emit_custom_command_event(hfp_connection_t * hfp_connection){ 279892f58a8SMatthias Ringwald btstack_assert(sizeof(hfp_connection->line_buffer) < (255-5)); 280892f58a8SMatthias Ringwald 281892f58a8SMatthias Ringwald uint16_t line_len = strlen((const char*)hfp_connection->line_buffer) + 1; 282892f58a8SMatthias Ringwald uint8_t event[7 + sizeof(hfp_connection->line_buffer)]; 283892f58a8SMatthias Ringwald event[0] = HCI_EVENT_HFP_META; 284892f58a8SMatthias Ringwald event[1] = 5 + line_len; 285892f58a8SMatthias Ringwald event[2] = HFP_SUBEVENT_CUSTOM_AT_COMMAND; 286892f58a8SMatthias Ringwald little_endian_store_16(event, 3, hfp_connection->acl_handle); 287892f58a8SMatthias Ringwald little_endian_store_16(event, 5, hfp_connection->custom_at_command_id); 288892f58a8SMatthias Ringwald memcpy(&event[7], hfp_connection->line_buffer, line_len); 289892f58a8SMatthias Ringwald (*hfp_hf_callback)(HCI_EVENT_PACKET, 0, event, 7 + line_len); 290892f58a8SMatthias Ringwald } 291892f58a8SMatthias Ringwald 29276cc1527SMatthias Ringwald /* send commands */ 29389425bfcSMilanka Ringwald 29489425bfcSMilanka Ringwald static inline int hfp_hf_send_cmd(uint16_t cid, const char * cmd){ 2953deb3ec6SMatthias Ringwald char buffer[20]; 2961599fe57SMatthias Ringwald snprintf(buffer, sizeof(buffer), "AT%s\r", cmd); 29789425bfcSMilanka Ringwald return send_str_over_rfcomm(cid, buffer); 29889425bfcSMilanka Ringwald } 29989425bfcSMilanka Ringwald 30089425bfcSMilanka Ringwald static inline int hfp_hf_send_cmd_with_mark(uint16_t cid, const char * cmd, const char * mark){ 30189425bfcSMilanka Ringwald char buffer[20]; 3021599fe57SMatthias Ringwald snprintf(buffer, sizeof(buffer), "AT%s%s\r", cmd, mark); 30389425bfcSMilanka Ringwald return send_str_over_rfcomm(cid, buffer); 30489425bfcSMilanka Ringwald } 30589425bfcSMilanka Ringwald 30686da9d74SMatthias Ringwald static inline int hfp_hf_send_cmd_with_int(uint16_t cid, const char * cmd, uint16_t value){ 30789425bfcSMilanka Ringwald char buffer[40]; 3081599fe57SMatthias Ringwald snprintf(buffer, sizeof(buffer), "AT%s=%d\r", cmd, value); 3093deb3ec6SMatthias Ringwald return send_str_over_rfcomm(cid, buffer); 3103deb3ec6SMatthias Ringwald } 3113deb3ec6SMatthias Ringwald 3123deb3ec6SMatthias Ringwald static int hfp_hf_cmd_notify_on_codecs(uint16_t cid){ 3133deb3ec6SMatthias Ringwald char buffer[30]; 31489425bfcSMilanka Ringwald const int size = sizeof(buffer); 31589425bfcSMilanka Ringwald int offset = snprintf(buffer, size, "AT%s=", HFP_AVAILABLE_CODECS); 316aeb0f0feSMatthias Ringwald offset += join(buffer+offset, size-offset, hfp_hf_codecs, hfp_hf_codecs_nr); 3171599fe57SMatthias Ringwald offset += snprintf(buffer+offset, size-offset, "\r"); 3183deb3ec6SMatthias Ringwald return send_str_over_rfcomm(cid, buffer); 3193deb3ec6SMatthias Ringwald } 3203deb3ec6SMatthias Ringwald 3213deb3ec6SMatthias Ringwald static int hfp_hf_cmd_activate_status_update_for_ag_indicator(uint16_t cid, uint32_t indicators_status, int indicators_nr){ 3223deb3ec6SMatthias Ringwald char buffer[50]; 32389425bfcSMilanka Ringwald const int size = sizeof(buffer); 32489425bfcSMilanka Ringwald int offset = snprintf(buffer, size, "AT%s=", HFP_UPDATE_ENABLE_STATUS_FOR_INDIVIDUAL_AG_INDICATORS); 32589425bfcSMilanka Ringwald offset += join_bitmap(buffer+offset, size-offset, indicators_status, indicators_nr); 3261599fe57SMatthias Ringwald offset += snprintf(buffer+offset, size-offset, "\r"); 3273deb3ec6SMatthias Ringwald return send_str_over_rfcomm(cid, buffer); 3283deb3ec6SMatthias Ringwald } 3293deb3ec6SMatthias Ringwald 3303deb3ec6SMatthias Ringwald static int hfp_hf_cmd_list_supported_generic_status_indicators(uint16_t cid){ 3313deb3ec6SMatthias Ringwald char buffer[30]; 33289425bfcSMilanka Ringwald const int size = sizeof(buffer); 33389425bfcSMilanka Ringwald int offset = snprintf(buffer, size, "AT%s=", HFP_GENERIC_STATUS_INDICATOR); 334aeb0f0feSMatthias Ringwald offset += join(buffer+offset, size-offset, hfp_hf_indicators, hfp_hf_indicators_nr); 3351599fe57SMatthias Ringwald offset += snprintf(buffer+offset, size-offset, "\r"); 3363deb3ec6SMatthias Ringwald return send_str_over_rfcomm(cid, buffer); 3373deb3ec6SMatthias Ringwald } 3383deb3ec6SMatthias Ringwald 33989425bfcSMilanka Ringwald static int hfp_hf_cmd_activate_status_update_for_all_ag_indicators(uint16_t cid, uint8_t activate){ 3403deb3ec6SMatthias Ringwald char buffer[20]; 3411599fe57SMatthias Ringwald snprintf(buffer, sizeof(buffer), "AT%s=3,0,0,%d\r", HFP_ENABLE_STATUS_UPDATE_FOR_AG_INDICATORS, activate); 342ce263fc8SMatthias Ringwald return send_str_over_rfcomm(cid, buffer); 343ce263fc8SMatthias Ringwald } 344ce263fc8SMatthias Ringwald 345ce263fc8SMatthias Ringwald static int hfp_hf_initiate_outgoing_call_cmd(uint16_t cid){ 346ce263fc8SMatthias Ringwald char buffer[40]; 347aeb0f0feSMatthias Ringwald snprintf(buffer, sizeof(buffer), "%s%s;\r", HFP_CALL_PHONE_NUMBER, hfp_hf_phone_number); 348ce263fc8SMatthias Ringwald return send_str_over_rfcomm(cid, buffer); 349ce263fc8SMatthias Ringwald } 350ce263fc8SMatthias Ringwald 351a0ffb263SMatthias Ringwald static int hfp_hf_send_memory_dial_cmd(uint16_t cid, int memory_id){ 352ce263fc8SMatthias Ringwald char buffer[40]; 3531599fe57SMatthias Ringwald snprintf(buffer, sizeof(buffer), "%s>%d;\r", HFP_CALL_PHONE_NUMBER, memory_id); 354ce263fc8SMatthias Ringwald return send_str_over_rfcomm(cid, buffer); 355ce263fc8SMatthias Ringwald } 356ce263fc8SMatthias Ringwald 357f04a0c31SMatthias Ringwald static int hfp_hf_send_chld(uint16_t cid, unsigned int number){ 35889425bfcSMilanka Ringwald char buffer[40]; 3591599fe57SMatthias Ringwald snprintf(buffer, sizeof(buffer), "AT%s=%u\r", HFP_SUPPORT_CALL_HOLD_AND_MULTIPARTY_SERVICES, number); 360ce263fc8SMatthias Ringwald return send_str_over_rfcomm(cid, buffer); 361ce263fc8SMatthias Ringwald } 362ce263fc8SMatthias Ringwald 363ce263fc8SMatthias Ringwald static int hfp_hf_send_dtmf(uint16_t cid, char code){ 364ce263fc8SMatthias Ringwald char buffer[20]; 3651599fe57SMatthias Ringwald snprintf(buffer, sizeof(buffer), "AT%s=%c\r", HFP_TRANSMIT_DTMF_CODES, code); 366ce263fc8SMatthias Ringwald return send_str_over_rfcomm(cid, buffer); 367ce263fc8SMatthias Ringwald } 368ce263fc8SMatthias Ringwald 36997d2cadbSMatthias Ringwald static int hfp_hf_cmd_ata(uint16_t cid){ 3701599fe57SMatthias Ringwald return send_str_over_rfcomm(cid, (char *) "ATA\r"); 37197d2cadbSMatthias Ringwald } 37297d2cadbSMatthias Ringwald 37389425bfcSMilanka Ringwald static int hfp_hf_cmd_exchange_supported_features(uint16_t cid){ 374aeb0f0feSMatthias Ringwald return hfp_hf_send_cmd_with_int(cid, HFP_SUPPORTED_FEATURES, hfp_hf_supported_features); 37589425bfcSMilanka Ringwald } 37689425bfcSMilanka Ringwald 37789425bfcSMilanka Ringwald static int hfp_hf_cmd_retrieve_indicators(uint16_t cid){ 37889425bfcSMilanka Ringwald return hfp_hf_send_cmd_with_mark(cid, HFP_INDICATOR, "=?"); 37989425bfcSMilanka Ringwald } 38089425bfcSMilanka Ringwald 38189425bfcSMilanka Ringwald static int hfp_hf_cmd_retrieve_indicators_status(uint16_t cid){ 38289425bfcSMilanka Ringwald return hfp_hf_send_cmd_with_mark(cid, HFP_INDICATOR, "?"); 38389425bfcSMilanka Ringwald } 38489425bfcSMilanka Ringwald 38589425bfcSMilanka Ringwald static int hfp_hf_cmd_retrieve_can_hold_call(uint16_t cid){ 38689425bfcSMilanka Ringwald return hfp_hf_send_cmd_with_mark(cid, HFP_SUPPORT_CALL_HOLD_AND_MULTIPARTY_SERVICES, "=?"); 38789425bfcSMilanka Ringwald } 38889425bfcSMilanka Ringwald 38989425bfcSMilanka Ringwald static int hfp_hf_cmd_retrieve_supported_generic_status_indicators(uint16_t cid){ 39089425bfcSMilanka Ringwald return hfp_hf_send_cmd_with_mark(cid, HFP_GENERIC_STATUS_INDICATOR, "=?"); 39189425bfcSMilanka Ringwald } 39289425bfcSMilanka Ringwald 39389425bfcSMilanka Ringwald static int hfp_hf_cmd_list_initital_supported_generic_status_indicators(uint16_t cid){ 39489425bfcSMilanka Ringwald return hfp_hf_send_cmd_with_mark(cid, HFP_GENERIC_STATUS_INDICATOR, "?"); 39589425bfcSMilanka Ringwald } 39689425bfcSMilanka Ringwald 39789425bfcSMilanka Ringwald static int hfp_hf_cmd_query_operator_name_format(uint16_t cid){ 39889425bfcSMilanka Ringwald return hfp_hf_send_cmd_with_mark(cid, HFP_QUERY_OPERATOR_SELECTION, "=3,0"); 39989425bfcSMilanka Ringwald } 40089425bfcSMilanka Ringwald 40189425bfcSMilanka Ringwald static int hfp_hf_cmd_query_operator_name(uint16_t cid){ 40289425bfcSMilanka Ringwald return hfp_hf_send_cmd_with_mark(cid, HFP_QUERY_OPERATOR_SELECTION, "?"); 40389425bfcSMilanka Ringwald } 40489425bfcSMilanka Ringwald 40589425bfcSMilanka Ringwald static int hfp_hf_cmd_trigger_codec_connection_setup(uint16_t cid){ 40689425bfcSMilanka Ringwald return hfp_hf_send_cmd(cid, HFP_TRIGGER_CODEC_CONNECTION_SETUP); 40789425bfcSMilanka Ringwald } 40889425bfcSMilanka Ringwald 40989425bfcSMilanka Ringwald static int hfp_hf_set_microphone_gain_cmd(uint16_t cid, int gain){ 41089425bfcSMilanka Ringwald return hfp_hf_send_cmd_with_int(cid, HFP_SET_MICROPHONE_GAIN, gain); 41189425bfcSMilanka Ringwald } 41289425bfcSMilanka Ringwald 41389425bfcSMilanka Ringwald static int hfp_hf_set_speaker_gain_cmd(uint16_t cid, int gain){ 41489425bfcSMilanka Ringwald return hfp_hf_send_cmd_with_int(cid, HFP_SET_SPEAKER_GAIN, gain); 41589425bfcSMilanka Ringwald } 41689425bfcSMilanka Ringwald 41789425bfcSMilanka Ringwald static int hfp_hf_set_calling_line_notification_cmd(uint16_t cid, uint8_t activate){ 41889425bfcSMilanka Ringwald return hfp_hf_send_cmd_with_int(cid, HFP_ENABLE_CLIP, activate); 41989425bfcSMilanka Ringwald } 42089425bfcSMilanka Ringwald 42189425bfcSMilanka Ringwald static int hfp_hf_set_voice_recognition_notification_cmd(uint16_t cid, uint8_t activate){ 42289425bfcSMilanka Ringwald return hfp_hf_send_cmd_with_int(cid, HFP_ACTIVATE_VOICE_RECOGNITION, activate); 42389425bfcSMilanka Ringwald } 42489425bfcSMilanka Ringwald 42589425bfcSMilanka Ringwald static int hfp_hf_set_call_waiting_notification_cmd(uint16_t cid, uint8_t activate){ 42689425bfcSMilanka Ringwald return hfp_hf_send_cmd_with_int(cid, HFP_ENABLE_CALL_WAITING_NOTIFICATION, activate); 42789425bfcSMilanka Ringwald } 42889425bfcSMilanka Ringwald 42989425bfcSMilanka Ringwald static int hfp_hf_cmd_confirm_codec(uint16_t cid, uint8_t codec){ 43089425bfcSMilanka Ringwald return hfp_hf_send_cmd_with_int(cid, HFP_CONFIRM_COMMON_CODEC, codec); 43189425bfcSMilanka Ringwald } 43289425bfcSMilanka Ringwald 43389425bfcSMilanka Ringwald static int hfp_hf_cmd_enable_extended_audio_gateway_error_report(uint16_t cid, uint8_t enable){ 43489425bfcSMilanka Ringwald return hfp_hf_send_cmd_with_int(cid, HFP_ENABLE_EXTENDED_AUDIO_GATEWAY_ERROR, enable); 43589425bfcSMilanka Ringwald } 43689425bfcSMilanka Ringwald 43789425bfcSMilanka Ringwald static int hfp_hf_send_redial_last_number_cmd(uint16_t cid){ 43889425bfcSMilanka Ringwald return hfp_hf_send_cmd(cid, HFP_REDIAL_LAST_NUMBER); 43989425bfcSMilanka Ringwald } 44089425bfcSMilanka Ringwald 44189425bfcSMilanka Ringwald static int hfp_hf_send_chup(uint16_t cid){ 44289425bfcSMilanka Ringwald return hfp_hf_send_cmd(cid, HFP_HANG_UP_CALL); 44389425bfcSMilanka Ringwald } 44489425bfcSMilanka Ringwald 445ce263fc8SMatthias Ringwald static int hfp_hf_send_binp(uint16_t cid){ 44689425bfcSMilanka Ringwald return hfp_hf_send_cmd_with_mark(cid, HFP_PHONE_NUMBER_FOR_VOICE_TAG, "=1"); 447ce263fc8SMatthias Ringwald } 448ce263fc8SMatthias Ringwald 449667ec068SMatthias Ringwald static int hfp_hf_send_clcc(uint16_t cid){ 45089425bfcSMilanka Ringwald return hfp_hf_send_cmd(cid, HFP_LIST_CURRENT_CALLS); 451667ec068SMatthias Ringwald } 452667ec068SMatthias Ringwald 45376cc1527SMatthias Ringwald /* state machines */ 4543deb3ec6SMatthias Ringwald 455a0ffb263SMatthias Ringwald static int hfp_hf_run_for_context_service_level_connection(hfp_connection_t * hfp_connection){ 456a0ffb263SMatthias Ringwald if (hfp_connection->state >= HFP_SERVICE_LEVEL_CONNECTION_ESTABLISHED) return 0; 457a0ffb263SMatthias Ringwald if (hfp_connection->ok_pending) return 0; 458aa4dd815SMatthias Ringwald int done = 1; 459498a8121SMilanka Ringwald log_info("hfp_hf_run_for_context_service_level_connection state %d\n", hfp_connection->state); 460a0ffb263SMatthias Ringwald switch (hfp_connection->state){ 4613deb3ec6SMatthias Ringwald case HFP_EXCHANGE_SUPPORTED_FEATURES: 462aeb0f0feSMatthias Ringwald hfp_hf_drop_mSBC_if_eSCO_not_supported(hfp_hf_codecs, &hfp_hf_codecs_nr); 463a0ffb263SMatthias Ringwald hfp_connection->state = HFP_W4_EXCHANGE_SUPPORTED_FEATURES; 464a0ffb263SMatthias Ringwald hfp_hf_cmd_exchange_supported_features(hfp_connection->rfcomm_cid); 4653deb3ec6SMatthias Ringwald break; 4663deb3ec6SMatthias Ringwald case HFP_NOTIFY_ON_CODECS: 467a0ffb263SMatthias Ringwald hfp_connection->state = HFP_W4_NOTIFY_ON_CODECS; 468a0ffb263SMatthias Ringwald hfp_hf_cmd_notify_on_codecs(hfp_connection->rfcomm_cid); 4693deb3ec6SMatthias Ringwald break; 4703deb3ec6SMatthias Ringwald case HFP_RETRIEVE_INDICATORS: 471a0ffb263SMatthias Ringwald hfp_connection->state = HFP_W4_RETRIEVE_INDICATORS; 472a0ffb263SMatthias Ringwald hfp_hf_cmd_retrieve_indicators(hfp_connection->rfcomm_cid); 4733deb3ec6SMatthias Ringwald break; 4743deb3ec6SMatthias Ringwald case HFP_RETRIEVE_INDICATORS_STATUS: 475a0ffb263SMatthias Ringwald hfp_connection->state = HFP_W4_RETRIEVE_INDICATORS_STATUS; 476a0ffb263SMatthias Ringwald hfp_hf_cmd_retrieve_indicators_status(hfp_connection->rfcomm_cid); 4773deb3ec6SMatthias Ringwald break; 4783deb3ec6SMatthias Ringwald case HFP_ENABLE_INDICATORS_STATUS_UPDATE: 479a0ffb263SMatthias Ringwald hfp_connection->state = HFP_W4_ENABLE_INDICATORS_STATUS_UPDATE; 480a0ffb263SMatthias Ringwald hfp_hf_cmd_activate_status_update_for_all_ag_indicators(hfp_connection->rfcomm_cid, 1); 4813deb3ec6SMatthias Ringwald break; 4823deb3ec6SMatthias Ringwald case HFP_RETRIEVE_CAN_HOLD_CALL: 483a0ffb263SMatthias Ringwald hfp_connection->state = HFP_W4_RETRIEVE_CAN_HOLD_CALL; 484a0ffb263SMatthias Ringwald hfp_hf_cmd_retrieve_can_hold_call(hfp_connection->rfcomm_cid); 4853deb3ec6SMatthias Ringwald break; 4863deb3ec6SMatthias Ringwald case HFP_LIST_GENERIC_STATUS_INDICATORS: 487a0ffb263SMatthias Ringwald hfp_connection->state = HFP_W4_LIST_GENERIC_STATUS_INDICATORS; 488a0ffb263SMatthias Ringwald hfp_hf_cmd_list_supported_generic_status_indicators(hfp_connection->rfcomm_cid); 4893deb3ec6SMatthias Ringwald break; 4903deb3ec6SMatthias Ringwald case HFP_RETRIEVE_GENERIC_STATUS_INDICATORS: 491a0ffb263SMatthias Ringwald hfp_connection->state = HFP_W4_RETRIEVE_GENERIC_STATUS_INDICATORS; 492a0ffb263SMatthias Ringwald hfp_hf_cmd_retrieve_supported_generic_status_indicators(hfp_connection->rfcomm_cid); 4933deb3ec6SMatthias Ringwald break; 4943deb3ec6SMatthias Ringwald case HFP_RETRIEVE_INITITAL_STATE_GENERIC_STATUS_INDICATORS: 495a0ffb263SMatthias Ringwald hfp_connection->state = HFP_W4_RETRIEVE_INITITAL_STATE_GENERIC_STATUS_INDICATORS; 496a0ffb263SMatthias Ringwald hfp_hf_cmd_list_initital_supported_generic_status_indicators(hfp_connection->rfcomm_cid); 4973deb3ec6SMatthias Ringwald break; 4983deb3ec6SMatthias Ringwald default: 499aa4dd815SMatthias Ringwald done = 0; 5003deb3ec6SMatthias Ringwald break; 5013deb3ec6SMatthias Ringwald } 5023deb3ec6SMatthias Ringwald return done; 5033deb3ec6SMatthias Ringwald } 5043deb3ec6SMatthias Ringwald 505ce263fc8SMatthias Ringwald 506a0ffb263SMatthias Ringwald static int hfp_hf_run_for_context_service_level_connection_queries(hfp_connection_t * hfp_connection){ 507a0ffb263SMatthias Ringwald if (hfp_connection->state != HFP_SERVICE_LEVEL_CONNECTION_ESTABLISHED) return 0; 508498a8121SMilanka Ringwald if (hfp_connection->ok_pending){ 509498a8121SMilanka Ringwald return 0; 510498a8121SMilanka Ringwald } 511ce263fc8SMatthias Ringwald int done = 0; 512a0ffb263SMatthias Ringwald if (hfp_connection->enable_status_update_for_ag_indicators != 0xFF){ 513a0ffb263SMatthias Ringwald hfp_connection->ok_pending = 1; 514ce263fc8SMatthias Ringwald done = 1; 515a0ffb263SMatthias Ringwald hfp_hf_cmd_activate_status_update_for_all_ag_indicators(hfp_connection->rfcomm_cid, hfp_connection->enable_status_update_for_ag_indicators); 516ce263fc8SMatthias Ringwald return done; 517ce263fc8SMatthias Ringwald }; 518a0ffb263SMatthias Ringwald if (hfp_connection->change_status_update_for_individual_ag_indicators){ 519a0ffb263SMatthias Ringwald hfp_connection->ok_pending = 1; 520ce263fc8SMatthias Ringwald done = 1; 521a0ffb263SMatthias Ringwald hfp_hf_cmd_activate_status_update_for_ag_indicator(hfp_connection->rfcomm_cid, 522a0ffb263SMatthias Ringwald hfp_connection->ag_indicators_status_update_bitmap, 523a0ffb263SMatthias Ringwald hfp_connection->ag_indicators_nr); 524ce263fc8SMatthias Ringwald return done; 525ce263fc8SMatthias Ringwald } 526ce263fc8SMatthias Ringwald 527a0ffb263SMatthias Ringwald switch (hfp_connection->hf_query_operator_state){ 528ce263fc8SMatthias Ringwald case HFP_HF_QUERY_OPERATOR_SET_FORMAT: 529a0ffb263SMatthias Ringwald hfp_connection->hf_query_operator_state = HFP_HF_QUERY_OPERATOR_W4_SET_FORMAT_OK; 530a0ffb263SMatthias Ringwald hfp_connection->ok_pending = 1; 531a0ffb263SMatthias Ringwald hfp_hf_cmd_query_operator_name_format(hfp_connection->rfcomm_cid); 532ce263fc8SMatthias Ringwald return 1; 533ce263fc8SMatthias Ringwald case HFP_HF_QUERY_OPERATOR_SEND_QUERY: 534a0ffb263SMatthias Ringwald hfp_connection->hf_query_operator_state = HPF_HF_QUERY_OPERATOR_W4_RESULT; 535a0ffb263SMatthias Ringwald hfp_connection->ok_pending = 1; 536a0ffb263SMatthias Ringwald hfp_hf_cmd_query_operator_name(hfp_connection->rfcomm_cid); 537ce263fc8SMatthias Ringwald return 1; 538ce263fc8SMatthias Ringwald default: 539ce263fc8SMatthias Ringwald break; 540ce263fc8SMatthias Ringwald } 541ce263fc8SMatthias Ringwald 542a0ffb263SMatthias Ringwald if (hfp_connection->enable_extended_audio_gateway_error_report){ 543a0ffb263SMatthias Ringwald hfp_connection->ok_pending = 1; 544ce263fc8SMatthias Ringwald done = 1; 545a0ffb263SMatthias Ringwald hfp_hf_cmd_enable_extended_audio_gateway_error_report(hfp_connection->rfcomm_cid, hfp_connection->enable_extended_audio_gateway_error_report); 546ce263fc8SMatthias Ringwald return done; 547ce263fc8SMatthias Ringwald } 548ce263fc8SMatthias Ringwald 549ce263fc8SMatthias Ringwald return done; 550ce263fc8SMatthias Ringwald } 551ce263fc8SMatthias Ringwald 552af97579eSMilanka Ringwald static int hfp_hf_voice_recognition_state_machine(hfp_connection_t * hfp_connection){ 553be55a11dSMilanka Ringwald if (hfp_connection->state < HFP_SERVICE_LEVEL_CONNECTION_ESTABLISHED) { 554be55a11dSMilanka Ringwald return 0; 555be55a11dSMilanka Ringwald } 556be55a11dSMilanka Ringwald int done = 0; 557fd4151d1SMilanka Ringwald 5580b4debbfSMilanka Ringwald if (hfp_connection->ok_pending == 1){ 5590b4debbfSMilanka Ringwald return 0; 5600b4debbfSMilanka Ringwald } 5610b4debbfSMilanka Ringwald // voice recognition activated from AG 5620b4debbfSMilanka Ringwald if (hfp_connection->command == HFP_CMD_AG_ACTIVATE_VOICE_RECOGNITION){ 5630b4debbfSMilanka Ringwald switch(hfp_connection->vra_state_requested){ 5640b4debbfSMilanka Ringwald case HFP_VRA_W4_VOICE_RECOGNITION_ACTIVATED: 5650b4debbfSMilanka Ringwald case HFP_VRA_W4_VOICE_RECOGNITION_OFF: 566de9e0ea7SMilanka Ringwald case HFP_VRA_W4_ENHANCED_VOICE_RECOGNITION_READY_FOR_AUDIO: 5670b4debbfSMilanka Ringwald // ignore AG command, continue to wait for OK 5680b4debbfSMilanka Ringwald return 0; 569cf75be85SMilanka Ringwald 5700b4debbfSMilanka Ringwald default: 571b95cac54SMilanka Ringwald if (hfp_connection->ag_vra_msg_length > 0){ 572b95cac54SMilanka Ringwald hfp_hf_emit_enhanced_voice_recognition_text(hfp_connection); 573b95cac54SMilanka Ringwald hfp_connection->ag_vra_msg_length = 0; 574b95cac54SMilanka Ringwald break; 575b95cac54SMilanka Ringwald } 576cf75be85SMilanka Ringwald switch(hfp_connection->ag_vra_state){ 577cf75be85SMilanka Ringwald case HFP_VOICE_RECOGNITION_STATE_AG_READY: 578013cc750SMilanka Ringwald switch (hfp_connection->ag_vra_status){ 579013cc750SMilanka Ringwald case 0: 5800b4debbfSMilanka Ringwald hfp_connection->vra_state_requested = HFP_VRA_W4_VOICE_RECOGNITION_OFF; 581013cc750SMilanka Ringwald break; 582013cc750SMilanka Ringwald case 1: 583013cc750SMilanka Ringwald hfp_connection->vra_state_requested = HFP_VRA_W4_VOICE_RECOGNITION_ACTIVATED; 584013cc750SMilanka Ringwald break; 585013cc750SMilanka Ringwald case 2: 586013cc750SMilanka Ringwald hfp_connection->vra_state_requested = HFP_VRA_W4_ENHANCED_VOICE_RECOGNITION_READY_FOR_AUDIO; 587013cc750SMilanka Ringwald break; 588013cc750SMilanka Ringwald default: 589013cc750SMilanka Ringwald break; 5900b4debbfSMilanka Ringwald } 5910b4debbfSMilanka Ringwald break; 592cf75be85SMilanka Ringwald default: 593cf75be85SMilanka Ringwald // state messages from AG 594cf75be85SMilanka Ringwald hfp_emit_enhanced_voice_recognition_state_event(hfp_connection, ERROR_CODE_SUCCESS); 5958d5005b5SMilanka Ringwald hfp_connection->ag_vra_state = HFP_VOICE_RECOGNITION_STATE_AG_READY; 596cf75be85SMilanka Ringwald break; 597cf75be85SMilanka Ringwald } 598cf75be85SMilanka Ringwald break; 5990b4debbfSMilanka Ringwald } 6000b4debbfSMilanka Ringwald hfp_connection->command = HFP_CMD_NONE; 6010b4debbfSMilanka Ringwald } 6020b4debbfSMilanka Ringwald 6030b4debbfSMilanka Ringwald 604498a8121SMilanka Ringwald switch (hfp_connection->vra_state_requested){ 605fdda66c0SMilanka Ringwald case HFP_VRA_W2_SEND_VOICE_RECOGNITION_OFF: 606fdda66c0SMilanka Ringwald done = hfp_hf_set_voice_recognition_notification_cmd(hfp_connection->rfcomm_cid, 0); 607fdda66c0SMilanka Ringwald if (done != 0){ 608fdda66c0SMilanka Ringwald hfp_connection->vra_state_requested = HFP_VRA_W4_VOICE_RECOGNITION_OFF; 609498a8121SMilanka Ringwald hfp_connection->ok_pending = 1; 610498a8121SMilanka Ringwald } 611fd4151d1SMilanka Ringwald return 1; 612fd4151d1SMilanka Ringwald 613fd4151d1SMilanka Ringwald 614fdda66c0SMilanka Ringwald case HFP_VRA_W2_SEND_VOICE_RECOGNITION_ACTIVATED: 615fdda66c0SMilanka Ringwald done = hfp_hf_set_voice_recognition_notification_cmd(hfp_connection->rfcomm_cid, 1); 616fdda66c0SMilanka Ringwald if (done != 0){ 617fdda66c0SMilanka Ringwald hfp_connection->vra_state_requested = HFP_VRA_W4_VOICE_RECOGNITION_ACTIVATED; 618fd4151d1SMilanka Ringwald hfp_connection->ok_pending = 1; 619fd4151d1SMilanka Ringwald return 1; 6200b4debbfSMilanka Ringwald } 6210b4debbfSMilanka Ringwald break; 622013cc750SMilanka Ringwald 623de9e0ea7SMilanka Ringwald case HFP_VRA_W2_SEND_ENHANCED_VOICE_RECOGNITION_READY_FOR_AUDIO: 624de9e0ea7SMilanka Ringwald done = hfp_hf_set_voice_recognition_notification_cmd(hfp_connection->rfcomm_cid, 2); 625de9e0ea7SMilanka Ringwald if (done != 0){ 626de9e0ea7SMilanka Ringwald hfp_connection->vra_state_requested = HFP_VRA_W4_ENHANCED_VOICE_RECOGNITION_READY_FOR_AUDIO; 627de9e0ea7SMilanka Ringwald hfp_connection->ok_pending = 1; 628de9e0ea7SMilanka Ringwald return 1; 629de9e0ea7SMilanka Ringwald } 630de9e0ea7SMilanka Ringwald break; 631de9e0ea7SMilanka Ringwald 632de9e0ea7SMilanka Ringwald case HFP_VRA_W4_VOICE_RECOGNITION_OFF: 633de9e0ea7SMilanka Ringwald hfp_connection->vra_state = HFP_VRA_VOICE_RECOGNITION_OFF; 634de9e0ea7SMilanka Ringwald hfp_connection->vra_state_requested = hfp_connection->vra_state; 635de9e0ea7SMilanka Ringwald hfp_connection->activate_voice_recognition = false; 636de9e0ea7SMilanka Ringwald if (hfp_connection->activate_voice_recognition){ 637fcf4ede6SMilanka Ringwald hfp_connection->enhanced_voice_recognition_enabled = hfp_hf_enhanced_vra_flag_supported(hfp_connection); 638de9e0ea7SMilanka Ringwald hfp_hf_activate_voice_recognition(hfp_connection->acl_handle); 639de9e0ea7SMilanka Ringwald } else { 640553a4a56SMilanka Ringwald hfp_emit_voice_recognition_disabled(hfp_connection, ERROR_CODE_SUCCESS); 641de9e0ea7SMilanka Ringwald } 642de9e0ea7SMilanka Ringwald break; 643de9e0ea7SMilanka Ringwald 644be55a11dSMilanka Ringwald case HFP_VRA_W4_VOICE_RECOGNITION_ACTIVATED: 645498a8121SMilanka Ringwald hfp_connection->vra_state = HFP_VRA_VOICE_RECOGNITION_ACTIVATED; 646498a8121SMilanka Ringwald hfp_connection->vra_state_requested = hfp_connection->vra_state; 647de9e0ea7SMilanka Ringwald hfp_connection->activate_voice_recognition = false; 648de9e0ea7SMilanka Ringwald if (hfp_connection->deactivate_voice_recognition){ 649de9e0ea7SMilanka Ringwald hfp_hf_deactivate_voice_recognition(hfp_connection->acl_handle); 650de9e0ea7SMilanka Ringwald } else { 651fcf4ede6SMilanka Ringwald hfp_connection->enhanced_voice_recognition_enabled = hfp_hf_enhanced_vra_flag_supported(hfp_connection); 65284fb9ac1SMilanka Ringwald if (hfp_connection->state == HFP_AUDIO_CONNECTION_ESTABLISHED){ 653553a4a56SMilanka Ringwald hfp_emit_voice_recognition_enabled(hfp_connection, ERROR_CODE_SUCCESS); 65484fb9ac1SMilanka Ringwald } else { 65584fb9ac1SMilanka Ringwald // postpone VRA event to simplify application logic 65684fb9ac1SMilanka Ringwald hfp_connection->emit_vra_enabled_after_audio_established = true; 65784fb9ac1SMilanka Ringwald } 658de9e0ea7SMilanka Ringwald } 659be55a11dSMilanka Ringwald break; 660be55a11dSMilanka Ringwald 661de9e0ea7SMilanka Ringwald 662013cc750SMilanka Ringwald case HFP_VRA_W4_ENHANCED_VOICE_RECOGNITION_READY_FOR_AUDIO: 663013cc750SMilanka Ringwald hfp_connection->vra_state = HFP_VRA_ENHANCED_VOICE_RECOGNITION_READY_FOR_AUDIO; 664498a8121SMilanka Ringwald hfp_connection->vra_state_requested = hfp_connection->vra_state; 665de9e0ea7SMilanka Ringwald hfp_connection->activate_voice_recognition = false; 666de9e0ea7SMilanka Ringwald if (hfp_connection->deactivate_voice_recognition){ 667de9e0ea7SMilanka Ringwald hfp_hf_deactivate_voice_recognition(hfp_connection->acl_handle); 668de9e0ea7SMilanka Ringwald } else { 669de9e0ea7SMilanka Ringwald hfp_emit_enhanced_voice_recognition_hf_ready_for_audio_event(hfp_connection, ERROR_CODE_SUCCESS); 670de9e0ea7SMilanka Ringwald } 671be55a11dSMilanka Ringwald break; 672fd4151d1SMilanka Ringwald 673be55a11dSMilanka Ringwald default: 674be55a11dSMilanka Ringwald break; 675be55a11dSMilanka Ringwald } 676be55a11dSMilanka Ringwald return done; 677be55a11dSMilanka Ringwald } 678be55a11dSMilanka Ringwald 679be55a11dSMilanka Ringwald 680be55a11dSMilanka Ringwald static int codecs_exchange_state_machine(hfp_connection_t * hfp_connection){ 681a0ffb263SMatthias Ringwald if (hfp_connection->ok_pending) return 0; 682ce263fc8SMatthias Ringwald 683332ca98fSMatthias Ringwald if (hfp_connection->trigger_codec_exchange){ 684332ca98fSMatthias Ringwald hfp_connection->trigger_codec_exchange = 0; 685ce263fc8SMatthias Ringwald 686a0ffb263SMatthias Ringwald hfp_connection->ok_pending = 1; 687a0ffb263SMatthias Ringwald hfp_hf_cmd_trigger_codec_connection_setup(hfp_connection->rfcomm_cid); 688332ca98fSMatthias Ringwald return 1; 689332ca98fSMatthias Ringwald } 690332ca98fSMatthias Ringwald 6911cc65c4fSMatthias Ringwald if (hfp_connection->hf_send_codec_confirm){ 6921cc65c4fSMatthias Ringwald hfp_connection->hf_send_codec_confirm = false; 693ce263fc8SMatthias Ringwald 694a0ffb263SMatthias Ringwald hfp_connection->ok_pending = 1; 695fcb08cdbSMilanka Ringwald hfp_hf_cmd_confirm_codec(hfp_connection->rfcomm_cid, hfp_connection->codec_confirmed); 6961cc65c4fSMatthias Ringwald return 1; 6971cc65c4fSMatthias Ringwald } 6981cc65c4fSMatthias Ringwald 6991cc65c4fSMatthias Ringwald if (hfp_connection->hf_send_supported_codecs){ 7001cc65c4fSMatthias Ringwald hfp_connection->hf_send_supported_codecs = false; 7011cc65c4fSMatthias Ringwald 702a0ffb263SMatthias Ringwald hfp_connection->ok_pending = 1; 703a0ffb263SMatthias Ringwald hfp_hf_cmd_notify_on_codecs(hfp_connection->rfcomm_cid); 7041cc65c4fSMatthias Ringwald return 1; 7051cc65c4fSMatthias Ringwald } 706ce263fc8SMatthias Ringwald 707ce263fc8SMatthias Ringwald return 0; 708ce263fc8SMatthias Ringwald } 709ce263fc8SMatthias Ringwald 710a0ffb263SMatthias Ringwald static int hfp_hf_run_for_audio_connection(hfp_connection_t * hfp_connection){ 711505f1c30SMatthias Ringwald if ((hfp_connection->state < HFP_SERVICE_LEVEL_CONNECTION_ESTABLISHED) || 712505f1c30SMatthias Ringwald (hfp_connection->state > HFP_W2_DISCONNECT_SCO)) return 0; 713ce263fc8SMatthias Ringwald 71464f19dedSMilanka Ringwald if (hfp_connection->release_audio_connection){ 715a0ffb263SMatthias Ringwald hfp_connection->state = HFP_W4_SCO_DISCONNECTED; 716a0ffb263SMatthias Ringwald hfp_connection->release_audio_connection = 0; 717a0ffb263SMatthias Ringwald gap_disconnect(hfp_connection->sco_handle); 718ce263fc8SMatthias Ringwald return 1; 719ce263fc8SMatthias Ringwald } 720ce263fc8SMatthias Ringwald 721a0ffb263SMatthias Ringwald if (hfp_connection->state == HFP_AUDIO_CONNECTION_ESTABLISHED) return 0; 722ce263fc8SMatthias Ringwald 723ce263fc8SMatthias Ringwald // run codecs exchange 724a0ffb263SMatthias Ringwald int done = codecs_exchange_state_machine(hfp_connection); 725ce263fc8SMatthias Ringwald if (done) return 1; 726ce263fc8SMatthias Ringwald 72738200c1dSMilanka Ringwald if (hfp_connection->codecs_state != HFP_CODECS_EXCHANGED) return 0; 728447743f7SMatthias Ringwald if (hfp_sco_setup_active()) return 0; 729d2e34ffbSMatthias Ringwald if (hci_can_send_command_packet_now() == false) return 0; 73038200c1dSMilanka Ringwald if (hfp_connection->establish_audio_connection){ 73138200c1dSMilanka Ringwald hfp_connection->state = HFP_W4_SCO_CONNECTED; 73238200c1dSMilanka Ringwald hfp_connection->establish_audio_connection = 0; 73338200c1dSMilanka Ringwald hfp_setup_synchronous_connection(hfp_connection); 73438200c1dSMilanka Ringwald return 1; 73538200c1dSMilanka Ringwald } 736ce263fc8SMatthias Ringwald return 0; 737ce263fc8SMatthias Ringwald } 738ce263fc8SMatthias Ringwald 73938200c1dSMilanka Ringwald 740a0ffb263SMatthias Ringwald static int call_setup_state_machine(hfp_connection_t * hfp_connection){ 741eaf2b0a1SMatthias Ringwald 742eaf2b0a1SMatthias Ringwald if (hfp_connection->ok_pending) return 0; 743eaf2b0a1SMatthias Ringwald 744a0ffb263SMatthias Ringwald if (hfp_connection->hf_answer_incoming_call){ 745a0ffb263SMatthias Ringwald hfp_hf_cmd_ata(hfp_connection->rfcomm_cid); 746a0ffb263SMatthias Ringwald hfp_connection->hf_answer_incoming_call = 0; 747ce263fc8SMatthias Ringwald return 1; 748ce263fc8SMatthias Ringwald } 749ce263fc8SMatthias Ringwald return 0; 750ce263fc8SMatthias Ringwald } 751ce263fc8SMatthias Ringwald 7521c6a0fc0SMatthias Ringwald static void hfp_hf_run_for_context(hfp_connection_t * hfp_connection){ 7537522e673SMatthias Ringwald 75476cc1527SMatthias Ringwald btstack_assert(hfp_connection != NULL); 75576cc1527SMatthias Ringwald btstack_assert(hfp_connection->local_role == HFP_ROLE_HF); 75676cc1527SMatthias Ringwald 75776cc1527SMatthias Ringwald // during SDP query, RFCOMM CID is not set 75876cc1527SMatthias Ringwald if (hfp_connection->rfcomm_cid == 0) return; 75922387625SMatthias Ringwald 76084fb9ac1SMilanka Ringwald // emit postponed VRA event 76184fb9ac1SMilanka Ringwald if (hfp_connection->state == HFP_AUDIO_CONNECTION_ESTABLISHED && hfp_connection->emit_vra_enabled_after_audio_established){ 76284fb9ac1SMilanka Ringwald hfp_connection->emit_vra_enabled_after_audio_established = false; 76384fb9ac1SMilanka Ringwald hfp_emit_voice_recognition_enabled(hfp_connection, ERROR_CODE_SUCCESS); 76484fb9ac1SMilanka Ringwald } 76584fb9ac1SMilanka Ringwald 7663721a235SMatthias Ringwald // assert command could be sent 7673721a235SMatthias Ringwald if (hci_can_send_command_packet_now() == 0) return; 7683721a235SMatthias Ringwald 7693721a235SMatthias Ringwald #ifdef ENABLE_CC256X_ASSISTED_HFP 7703721a235SMatthias Ringwald // WBS Disassociate 7713721a235SMatthias Ringwald if (hfp_connection->cc256x_send_wbs_disassociate){ 7723721a235SMatthias Ringwald hfp_connection->cc256x_send_wbs_disassociate = false; 7733721a235SMatthias Ringwald hci_send_cmd(&hci_ti_wbs_disassociate); 7743721a235SMatthias Ringwald return; 7753721a235SMatthias Ringwald } 7763721a235SMatthias Ringwald // Write Codec Config 7773721a235SMatthias Ringwald if (hfp_connection->cc256x_send_write_codec_config){ 7783721a235SMatthias Ringwald hfp_connection->cc256x_send_write_codec_config = false; 7793721a235SMatthias Ringwald hfp_cc256x_write_codec_config(hfp_connection); 7803721a235SMatthias Ringwald return; 7813721a235SMatthias Ringwald } 7823721a235SMatthias Ringwald // WBS Associate 7833721a235SMatthias Ringwald if (hfp_connection->cc256x_send_wbs_associate){ 7843721a235SMatthias Ringwald hfp_connection->cc256x_send_wbs_associate = false; 7853721a235SMatthias Ringwald hci_send_cmd(&hci_ti_wbs_associate, hfp_connection->acl_handle); 7863721a235SMatthias Ringwald return; 7873721a235SMatthias Ringwald } 7883721a235SMatthias Ringwald #endif 789689d4323SMatthias Ringwald #ifdef ENABLE_BCM_PCM_WBS 790689d4323SMatthias Ringwald // Enable WBS 791689d4323SMatthias Ringwald if (hfp_connection->bcm_send_enable_wbs){ 792689d4323SMatthias Ringwald hfp_connection->bcm_send_enable_wbs = false; 793689d4323SMatthias Ringwald hci_send_cmd(&hci_bcm_enable_wbs, 1, 2); 794689d4323SMatthias Ringwald return; 795689d4323SMatthias Ringwald } 796689d4323SMatthias Ringwald // Write I2S/PCM params 797689d4323SMatthias Ringwald if (hfp_connection->bcm_send_write_i2spcm_interface_param){ 798689d4323SMatthias Ringwald hfp_connection->bcm_send_write_i2spcm_interface_param = false; 799689d4323SMatthias Ringwald hfp_bcm_write_i2spcm_interface_param(hfp_connection); 800689d4323SMatthias Ringwald return; 801689d4323SMatthias Ringwald } 802689d4323SMatthias Ringwald // Disable WBS 803689d4323SMatthias Ringwald if (hfp_connection->bcm_send_disable_wbs){ 804689d4323SMatthias Ringwald hfp_connection->bcm_send_disable_wbs = false; 805689d4323SMatthias Ringwald hci_send_cmd(&hci_bcm_enable_wbs, 0, 2); 806689d4323SMatthias Ringwald return; 807689d4323SMatthias Ringwald } 808689d4323SMatthias Ringwald #endif 8092b5f92fdSMatthias Ringwald #ifdef ENABLE_RTK_PCM_WBS 8102b5f92fdSMatthias Ringwald if (hfp_connection->rtk_send_sco_config){ 8112b5f92fdSMatthias Ringwald hfp_connection->rtk_send_sco_config = false; 8122b5f92fdSMatthias Ringwald if (hfp_connection->negotiated_codec == HFP_CODEC_MSBC){ 8132b5f92fdSMatthias Ringwald log_info("RTK SCO: 16k + mSBC"); 8142b5f92fdSMatthias Ringwald hci_send_cmd(&hci_rtk_configure_sco_routing, 0x81, 0x90, 0x00, 0x00, 0x1a, 0x0c, 0x00, 0x00, 0x41); 8152b5f92fdSMatthias Ringwald } else { 8162b5f92fdSMatthias Ringwald log_info("RTK SCO: 16k + CVSD"); 8172b5f92fdSMatthias Ringwald hci_send_cmd(&hci_rtk_configure_sco_routing, 0x81, 0x90, 0x00, 0x00, 0x1a, 0x0c, 0x0c, 0x00, 0x01); 8182b5f92fdSMatthias Ringwald } 8192b5f92fdSMatthias Ringwald return; 8202b5f92fdSMatthias Ringwald } 8212b5f92fdSMatthias Ringwald #endif 8225fd6f360SMatthias Ringwald #ifdef ENABLE_NXP_PCM_WBS 8235fd6f360SMatthias Ringwald if (hfp_connection->nxp_start_audio_handle != HCI_CON_HANDLE_INVALID){ 8245fd6f360SMatthias Ringwald hci_con_handle_t sco_handle = hfp_connection->nxp_start_audio_handle; 8255fd6f360SMatthias Ringwald hfp_connection->nxp_start_audio_handle = HCI_CON_HANDLE_INVALID; 8265fd6f360SMatthias Ringwald hci_send_cmd(&hci_nxp_host_pcm_i2s_audio_config, 0, 0, sco_handle, 0); 8275fd6f360SMatthias Ringwald return; 8285fd6f360SMatthias Ringwald } 8295fd6f360SMatthias Ringwald if (hfp_connection->nxp_stop_audio_handle != HCI_CON_HANDLE_INVALID){ 8305fd6f360SMatthias Ringwald hci_con_handle_t sco_handle = hfp_connection->nxp_stop_audio_handle; 8315fd6f360SMatthias Ringwald hfp_connection->nxp_stop_audio_handle = HCI_CON_HANDLE_INVALID; 8325fd6f360SMatthias Ringwald hci_send_cmd(&hci_nxp_host_pcm_i2s_audio_config, 1, 0, sco_handle, 0); 8335fd6f360SMatthias Ringwald return; 8345fd6f360SMatthias Ringwald } 8355fd6f360SMatthias Ringwald #endif 83648e6eeeeSMatthias Ringwald #if defined (ENABLE_CC256X_ASSISTED_HFP) || defined (ENABLE_BCM_PCM_WBS) 83748e6eeeeSMatthias Ringwald if (hfp_connection->state == HFP_W4_WBS_SHUTDOWN){ 83848e6eeeeSMatthias Ringwald hfp_finalize_connection_context(hfp_connection); 83948e6eeeeSMatthias Ringwald return; 84048e6eeeeSMatthias Ringwald } 84148e6eeeeSMatthias Ringwald #endif 8423721a235SMatthias Ringwald 843447743f7SMatthias Ringwald if (hfp_connection->accept_sco && (hfp_sco_setup_active() == false)){ 844cb81d35dSMatthias Ringwald bool incoming_eSCO = hfp_connection->accept_sco == 2; 8457522e673SMatthias Ringwald // notify about codec selection if not done already 8467522e673SMatthias Ringwald if (hfp_connection->negotiated_codec == 0){ 8477522e673SMatthias Ringwald hfp_connection->negotiated_codec = HFP_CODEC_CVSD; 8487522e673SMatthias Ringwald } 849cb81d35dSMatthias Ringwald hfp_accept_synchronous_connection(hfp_connection, incoming_eSCO); 8507522e673SMatthias Ringwald return; 8517522e673SMatthias Ringwald } 8527522e673SMatthias Ringwald 853d4dd47ffSMatthias Ringwald if (!rfcomm_can_send_packet_now(hfp_connection->rfcomm_cid)) { 854d4dd47ffSMatthias Ringwald rfcomm_request_can_send_now_event(hfp_connection->rfcomm_cid); 855d4dd47ffSMatthias Ringwald return; 856d4dd47ffSMatthias Ringwald } 857a0ffb263SMatthias Ringwald int done = hfp_hf_run_for_context_service_level_connection(hfp_connection); 858ce263fc8SMatthias Ringwald if (!done){ 859a0ffb263SMatthias Ringwald done = hfp_hf_run_for_context_service_level_connection_queries(hfp_connection); 860ce263fc8SMatthias Ringwald } 861ce263fc8SMatthias Ringwald if (!done){ 862c95b5b3cSMilanka Ringwald done = hfp_hf_run_for_audio_connection(hfp_connection); 863be55a11dSMilanka Ringwald } 864be55a11dSMilanka Ringwald if (!done){ 865c95b5b3cSMilanka Ringwald done = hfp_hf_voice_recognition_state_machine(hfp_connection); 866ce263fc8SMatthias Ringwald } 867ce263fc8SMatthias Ringwald if (!done){ 868a0ffb263SMatthias Ringwald done = call_setup_state_machine(hfp_connection); 869ce263fc8SMatthias Ringwald } 870ce263fc8SMatthias Ringwald 871e2c3b58dSMilanka Ringwald // don't send a new command while ok still pending or SLC is not established 872e2c3b58dSMilanka Ringwald if (hfp_connection->ok_pending || (hfp_connection->state < HFP_SERVICE_LEVEL_CONNECTION_ESTABLISHED)){ 873e2c3b58dSMilanka Ringwald return; 874e2c3b58dSMilanka Ringwald } 8751016a228SMatthias Ringwald 876a0ffb263SMatthias Ringwald if (hfp_connection->send_microphone_gain){ 877a0ffb263SMatthias Ringwald hfp_connection->send_microphone_gain = 0; 878a0ffb263SMatthias Ringwald hfp_connection->ok_pending = 1; 879a0ffb263SMatthias Ringwald hfp_hf_set_microphone_gain_cmd(hfp_connection->rfcomm_cid, hfp_connection->microphone_gain); 880ce263fc8SMatthias Ringwald return; 881ce263fc8SMatthias Ringwald } 882ce263fc8SMatthias Ringwald 883a0ffb263SMatthias Ringwald if (hfp_connection->send_speaker_gain){ 884a0ffb263SMatthias Ringwald hfp_connection->send_speaker_gain = 0; 885a0ffb263SMatthias Ringwald hfp_connection->ok_pending = 1; 886a0ffb263SMatthias Ringwald hfp_hf_set_speaker_gain_cmd(hfp_connection->rfcomm_cid, hfp_connection->speaker_gain); 887ce263fc8SMatthias Ringwald return; 888ce263fc8SMatthias Ringwald } 889ce263fc8SMatthias Ringwald 890a0ffb263SMatthias Ringwald if (hfp_connection->hf_deactivate_calling_line_notification){ 891a0ffb263SMatthias Ringwald hfp_connection->hf_deactivate_calling_line_notification = 0; 892a0ffb263SMatthias Ringwald hfp_connection->ok_pending = 1; 893a0ffb263SMatthias Ringwald hfp_hf_set_calling_line_notification_cmd(hfp_connection->rfcomm_cid, 0); 894ce263fc8SMatthias Ringwald return; 895ce263fc8SMatthias Ringwald } 896ce263fc8SMatthias Ringwald 897a0ffb263SMatthias Ringwald if (hfp_connection->hf_activate_calling_line_notification){ 898a0ffb263SMatthias Ringwald hfp_connection->hf_activate_calling_line_notification = 0; 899a0ffb263SMatthias Ringwald hfp_connection->ok_pending = 1; 900a0ffb263SMatthias Ringwald hfp_hf_set_calling_line_notification_cmd(hfp_connection->rfcomm_cid, 1); 901ce263fc8SMatthias Ringwald return; 902ce263fc8SMatthias Ringwald } 903ce263fc8SMatthias Ringwald 904a0ffb263SMatthias Ringwald if (hfp_connection->hf_deactivate_echo_canceling_and_noise_reduction){ 905a0ffb263SMatthias Ringwald hfp_connection->hf_deactivate_echo_canceling_and_noise_reduction = 0; 90699af1e28SMilanka Ringwald hfp_connection->response_pending_for_command = HFP_CMD_TURN_OFF_EC_AND_NR; 907a0ffb263SMatthias Ringwald hfp_connection->ok_pending = 1; 908e2c3b58dSMilanka Ringwald hfp_hf_send_cmd_with_int(hfp_connection->rfcomm_cid, HFP_TURN_OFF_EC_AND_NR, 0); 909ce263fc8SMatthias Ringwald return; 910ce263fc8SMatthias Ringwald } 911ce263fc8SMatthias Ringwald 912a0ffb263SMatthias Ringwald if (hfp_connection->hf_deactivate_call_waiting_notification){ 913a0ffb263SMatthias Ringwald hfp_connection->hf_deactivate_call_waiting_notification = 0; 914a0ffb263SMatthias Ringwald hfp_connection->ok_pending = 1; 915a0ffb263SMatthias Ringwald hfp_hf_set_call_waiting_notification_cmd(hfp_connection->rfcomm_cid, 0); 916ce263fc8SMatthias Ringwald return; 917ce263fc8SMatthias Ringwald } 918ce263fc8SMatthias Ringwald 919a0ffb263SMatthias Ringwald if (hfp_connection->hf_activate_call_waiting_notification){ 920a0ffb263SMatthias Ringwald hfp_connection->hf_activate_call_waiting_notification = 0; 921a0ffb263SMatthias Ringwald hfp_connection->ok_pending = 1; 922a0ffb263SMatthias Ringwald hfp_hf_set_call_waiting_notification_cmd(hfp_connection->rfcomm_cid, 1); 923ce263fc8SMatthias Ringwald return; 924ce263fc8SMatthias Ringwald } 925ce263fc8SMatthias Ringwald 926a0ffb263SMatthias Ringwald if (hfp_connection->hf_initiate_outgoing_call){ 927a0ffb263SMatthias Ringwald hfp_connection->hf_initiate_outgoing_call = 0; 928a0ffb263SMatthias Ringwald hfp_connection->ok_pending = 1; 929a0ffb263SMatthias Ringwald hfp_hf_initiate_outgoing_call_cmd(hfp_connection->rfcomm_cid); 930ce263fc8SMatthias Ringwald return; 931ce263fc8SMatthias Ringwald } 932ce263fc8SMatthias Ringwald 933a0ffb263SMatthias Ringwald if (hfp_connection->hf_initiate_memory_dialing){ 934a0ffb263SMatthias Ringwald hfp_connection->hf_initiate_memory_dialing = 0; 935a0ffb263SMatthias Ringwald hfp_connection->ok_pending = 1; 936a0ffb263SMatthias Ringwald hfp_hf_send_memory_dial_cmd(hfp_connection->rfcomm_cid, hfp_connection->memory_id); 937ce263fc8SMatthias Ringwald return; 938ce263fc8SMatthias Ringwald } 939ce263fc8SMatthias Ringwald 940a0ffb263SMatthias Ringwald if (hfp_connection->hf_initiate_redial_last_number){ 941a0ffb263SMatthias Ringwald hfp_connection->hf_initiate_redial_last_number = 0; 942a0ffb263SMatthias Ringwald hfp_connection->ok_pending = 1; 943a0ffb263SMatthias Ringwald hfp_hf_send_redial_last_number_cmd(hfp_connection->rfcomm_cid); 944ce263fc8SMatthias Ringwald return; 945ce263fc8SMatthias Ringwald } 946ce263fc8SMatthias Ringwald 947a0ffb263SMatthias Ringwald if (hfp_connection->hf_send_chup){ 948a0ffb263SMatthias Ringwald hfp_connection->hf_send_chup = 0; 949a0ffb263SMatthias Ringwald hfp_connection->ok_pending = 1; 950a0ffb263SMatthias Ringwald hfp_hf_send_chup(hfp_connection->rfcomm_cid); 951ce263fc8SMatthias Ringwald return; 952ce263fc8SMatthias Ringwald } 953ce263fc8SMatthias Ringwald 954a0ffb263SMatthias Ringwald if (hfp_connection->hf_send_chld_0){ 955a0ffb263SMatthias Ringwald hfp_connection->hf_send_chld_0 = 0; 956a0ffb263SMatthias Ringwald hfp_connection->ok_pending = 1; 957a0ffb263SMatthias Ringwald hfp_hf_send_chld(hfp_connection->rfcomm_cid, 0); 958ce263fc8SMatthias Ringwald return; 959ce263fc8SMatthias Ringwald } 960ce263fc8SMatthias Ringwald 961a0ffb263SMatthias Ringwald if (hfp_connection->hf_send_chld_1){ 962a0ffb263SMatthias Ringwald hfp_connection->hf_send_chld_1 = 0; 963a0ffb263SMatthias Ringwald hfp_connection->ok_pending = 1; 964a0ffb263SMatthias Ringwald hfp_hf_send_chld(hfp_connection->rfcomm_cid, 1); 965ce263fc8SMatthias Ringwald return; 966ce263fc8SMatthias Ringwald } 967ce263fc8SMatthias Ringwald 968a0ffb263SMatthias Ringwald if (hfp_connection->hf_send_chld_2){ 969a0ffb263SMatthias Ringwald hfp_connection->hf_send_chld_2 = 0; 970a0ffb263SMatthias Ringwald hfp_connection->ok_pending = 1; 971a0ffb263SMatthias Ringwald hfp_hf_send_chld(hfp_connection->rfcomm_cid, 2); 972ce263fc8SMatthias Ringwald return; 973ce263fc8SMatthias Ringwald } 974ce263fc8SMatthias Ringwald 975a0ffb263SMatthias Ringwald if (hfp_connection->hf_send_chld_3){ 976a0ffb263SMatthias Ringwald hfp_connection->hf_send_chld_3 = 0; 977a0ffb263SMatthias Ringwald hfp_connection->ok_pending = 1; 978a0ffb263SMatthias Ringwald hfp_hf_send_chld(hfp_connection->rfcomm_cid, 3); 979ce263fc8SMatthias Ringwald return; 980ce263fc8SMatthias Ringwald } 981ce263fc8SMatthias Ringwald 982a0ffb263SMatthias Ringwald if (hfp_connection->hf_send_chld_4){ 983a0ffb263SMatthias Ringwald hfp_connection->hf_send_chld_4 = 0; 984a0ffb263SMatthias Ringwald hfp_connection->ok_pending = 1; 985a0ffb263SMatthias Ringwald hfp_hf_send_chld(hfp_connection->rfcomm_cid, 4); 986ce263fc8SMatthias Ringwald return; 987ce263fc8SMatthias Ringwald } 988ce263fc8SMatthias Ringwald 989a0ffb263SMatthias Ringwald if (hfp_connection->hf_send_chld_x){ 990a0ffb263SMatthias Ringwald hfp_connection->hf_send_chld_x = 0; 991a0ffb263SMatthias Ringwald hfp_connection->ok_pending = 1; 992a0ffb263SMatthias Ringwald hfp_hf_send_chld(hfp_connection->rfcomm_cid, hfp_connection->hf_send_chld_x_index); 993667ec068SMatthias Ringwald return; 994667ec068SMatthias Ringwald } 995667ec068SMatthias Ringwald 996a0ffb263SMatthias Ringwald if (hfp_connection->hf_send_dtmf_code){ 997a0ffb263SMatthias Ringwald char code = hfp_connection->hf_send_dtmf_code; 998a0ffb263SMatthias Ringwald hfp_connection->hf_send_dtmf_code = 0; 999a0ffb263SMatthias Ringwald hfp_connection->ok_pending = 1; 1000a0ffb263SMatthias Ringwald hfp_hf_send_dtmf(hfp_connection->rfcomm_cid, code); 1001c090e552SMatthias Ringwald // notify client that dtmf was sent 1002c090e552SMatthias Ringwald char buffer[2]; 1003c090e552SMatthias Ringwald buffer[0] = code; 1004c090e552SMatthias Ringwald buffer[1] = 0; 1005c090e552SMatthias Ringwald hfp_emit_string_event(hfp_connection, HFP_SUBEVENT_TRANSMIT_DTMF_CODES, buffer); 1006ce263fc8SMatthias Ringwald return; 1007ce263fc8SMatthias Ringwald } 1008ce263fc8SMatthias Ringwald 1009a0ffb263SMatthias Ringwald if (hfp_connection->hf_send_binp){ 1010a0ffb263SMatthias Ringwald hfp_connection->hf_send_binp = 0; 1011a0ffb263SMatthias Ringwald hfp_connection->ok_pending = 1; 1012a0ffb263SMatthias Ringwald hfp_hf_send_binp(hfp_connection->rfcomm_cid); 1013ce263fc8SMatthias Ringwald return; 1014ce263fc8SMatthias Ringwald } 1015ce263fc8SMatthias Ringwald 1016a0ffb263SMatthias Ringwald if (hfp_connection->hf_send_clcc){ 1017a0ffb263SMatthias Ringwald hfp_connection->hf_send_clcc = 0; 1018a0ffb263SMatthias Ringwald hfp_connection->ok_pending = 1; 1019a0ffb263SMatthias Ringwald hfp_hf_send_clcc(hfp_connection->rfcomm_cid); 1020667ec068SMatthias Ringwald return; 1021667ec068SMatthias Ringwald } 1022667ec068SMatthias Ringwald 1023a0ffb263SMatthias Ringwald if (hfp_connection->hf_send_rrh){ 1024a0ffb263SMatthias Ringwald hfp_connection->hf_send_rrh = 0; 1025667ec068SMatthias Ringwald char buffer[20]; 1026a0ffb263SMatthias Ringwald switch (hfp_connection->hf_send_rrh_command){ 1027667ec068SMatthias Ringwald case '?': 10281599fe57SMatthias Ringwald snprintf(buffer, sizeof(buffer), "AT%s?\r", 1029ff7d6aeaSMatthias Ringwald HFP_RESPONSE_AND_HOLD); 1030ff7d6aeaSMatthias Ringwald buffer[sizeof(buffer) - 1] = 0; 1031a0ffb263SMatthias Ringwald send_str_over_rfcomm(hfp_connection->rfcomm_cid, buffer); 1032667ec068SMatthias Ringwald return; 1033667ec068SMatthias Ringwald case '0': 1034667ec068SMatthias Ringwald case '1': 1035667ec068SMatthias Ringwald case '2': 10361599fe57SMatthias Ringwald snprintf(buffer, sizeof(buffer), "AT%s=%c\r", 1037ff7d6aeaSMatthias Ringwald HFP_RESPONSE_AND_HOLD, 1038ff7d6aeaSMatthias Ringwald hfp_connection->hf_send_rrh_command); 1039ff7d6aeaSMatthias Ringwald buffer[sizeof(buffer) - 1] = 0; 1040a0ffb263SMatthias Ringwald send_str_over_rfcomm(hfp_connection->rfcomm_cid, buffer); 1041667ec068SMatthias Ringwald return; 1042667ec068SMatthias Ringwald default: 1043667ec068SMatthias Ringwald break; 1044667ec068SMatthias Ringwald } 1045667ec068SMatthias Ringwald return; 1046667ec068SMatthias Ringwald } 1047667ec068SMatthias Ringwald 1048a0ffb263SMatthias Ringwald if (hfp_connection->hf_send_cnum){ 1049a0ffb263SMatthias Ringwald hfp_connection->hf_send_cnum = 0; 1050667ec068SMatthias Ringwald char buffer[20]; 10511599fe57SMatthias Ringwald snprintf(buffer, sizeof(buffer), "AT%s\r", 1052ff7d6aeaSMatthias Ringwald HFP_SUBSCRIBER_NUMBER_INFORMATION); 1053ff7d6aeaSMatthias Ringwald buffer[sizeof(buffer) - 1] = 0; 1054a0ffb263SMatthias Ringwald send_str_over_rfcomm(hfp_connection->rfcomm_cid, buffer); 1055667ec068SMatthias Ringwald return; 1056667ec068SMatthias Ringwald } 1057667ec068SMatthias Ringwald 1058667ec068SMatthias Ringwald // update HF indicators 1059a0ffb263SMatthias Ringwald if (hfp_connection->generic_status_update_bitmap){ 1060667ec068SMatthias Ringwald int i; 1061aeb0f0feSMatthias Ringwald for (i=0; i < hfp_hf_indicators_nr; i++){ 1062a0ffb263SMatthias Ringwald if (get_bit(hfp_connection->generic_status_update_bitmap, i)){ 1063a0ffb263SMatthias Ringwald if (hfp_connection->generic_status_indicators[i].state){ 1064a0ffb263SMatthias Ringwald hfp_connection->ok_pending = 1; 1065a0ffb263SMatthias Ringwald hfp_connection->generic_status_update_bitmap = store_bit(hfp_connection->generic_status_update_bitmap, i, 0); 1066667ec068SMatthias Ringwald char buffer[30]; 10671599fe57SMatthias Ringwald snprintf(buffer, sizeof(buffer), "AT%s=%u,%u\r", 1068ff7d6aeaSMatthias Ringwald HFP_TRANSFER_HF_INDICATOR_STATUS, 1069aeb0f0feSMatthias Ringwald hfp_hf_indicators[i], 1070aeb0f0feSMatthias Ringwald (unsigned int)hfp_hf_indicators_value[i]); 1071ff7d6aeaSMatthias Ringwald buffer[sizeof(buffer) - 1] = 0; 1072a0ffb263SMatthias Ringwald send_str_over_rfcomm(hfp_connection->rfcomm_cid, buffer); 1073667ec068SMatthias Ringwald } else { 1074aeb0f0feSMatthias Ringwald log_info("Not sending HF indicator %u as it is disabled", hfp_hf_indicators[i]); 1075667ec068SMatthias Ringwald } 1076667ec068SMatthias Ringwald return; 1077667ec068SMatthias Ringwald } 1078667ec068SMatthias Ringwald } 1079667ec068SMatthias Ringwald } 1080667ec068SMatthias Ringwald 108151a2ebdeSMatthias Ringwald if (hfp_connection->send_custom_message != NULL){ 108251a2ebdeSMatthias Ringwald const char * message = hfp_connection->send_custom_message; 108351a2ebdeSMatthias Ringwald hfp_connection->send_custom_message = NULL; 108451a2ebdeSMatthias Ringwald hfp_connection->ok_pending = 1; 108551a2ebdeSMatthias Ringwald hfp_connection->response_pending_for_command = HFP_CMD_CUSTOM_MESSAGE; 108651a2ebdeSMatthias Ringwald send_str_over_rfcomm(hfp_connection->rfcomm_cid, message); 108751a2ebdeSMatthias Ringwald return; 108851a2ebdeSMatthias Ringwald } 108951a2ebdeSMatthias Ringwald 1090ce263fc8SMatthias Ringwald if (done) return; 1091ce263fc8SMatthias Ringwald // deal with disconnect 1092a0ffb263SMatthias Ringwald switch (hfp_connection->state){ 1093ce263fc8SMatthias Ringwald case HFP_W2_DISCONNECT_RFCOMM: 1094a0ffb263SMatthias Ringwald hfp_connection->state = HFP_W4_RFCOMM_DISCONNECTED; 1095a0ffb263SMatthias Ringwald rfcomm_disconnect(hfp_connection->rfcomm_cid); 1096ce263fc8SMatthias Ringwald break; 1097ce263fc8SMatthias Ringwald 1098ce263fc8SMatthias Ringwald default: 1099ce263fc8SMatthias Ringwald break; 1100ce263fc8SMatthias Ringwald } 1101ce263fc8SMatthias Ringwald } 1102ce263fc8SMatthias Ringwald 1103ad862247SMatthias Ringwald static void hfp_hf_slc_established(hfp_connection_t * hfp_connection){ 1104a0ffb263SMatthias Ringwald hfp_connection->state = HFP_SERVICE_LEVEL_CONNECTION_ESTABLISHED; 11056a7f44bdSMilanka Ringwald 11067095467fSMatthias Ringwald hfp_emit_slc_connection_event(hfp_connection->local_role, 0, hfp_connection->acl_handle, hfp_connection->remote_addr); 11077522e673SMatthias Ringwald 1108184a03edSMilanka Ringwald uint8_t i; 1109184a03edSMilanka Ringwald for (i = 0; i < hfp_connection->ag_indicators_nr; i++){ 11101ac1f60fSMilanka Ringwald hfp_emit_ag_indicator_mapping_event(hfp_connection, &hfp_connection->ag_indicators[i]); 1111184a03edSMilanka Ringwald } 1112722a85f3SMilanka Ringwald 1113722a85f3SMilanka Ringwald for (i = 0; i < hfp_connection->ag_indicators_nr; i++){ 1114722a85f3SMilanka Ringwald hfp_connection->ag_indicators[i].status_changed = 0; 1115722a85f3SMilanka Ringwald hfp_emit_ag_indicator_status_event(hfp_connection, &hfp_connection->ag_indicators[i]); 1116722a85f3SMilanka Ringwald } 1117722a85f3SMilanka Ringwald 1118667ec068SMatthias Ringwald // restore volume settings 1119a0ffb263SMatthias Ringwald hfp_connection->speaker_gain = hfp_hf_speaker_gain; 1120a0ffb263SMatthias Ringwald hfp_connection->send_speaker_gain = 1; 1121ca59be51SMatthias Ringwald hfp_emit_event(hfp_connection, HFP_SUBEVENT_SPEAKER_VOLUME, hfp_hf_speaker_gain); 1122a0ffb263SMatthias Ringwald hfp_connection->microphone_gain = hfp_hf_microphone_gain; 1123a0ffb263SMatthias Ringwald hfp_connection->send_microphone_gain = 1; 1124ca59be51SMatthias Ringwald hfp_emit_event(hfp_connection, HFP_SUBEVENT_MICROPHONE_VOLUME, hfp_hf_microphone_gain); 1125667ec068SMatthias Ringwald // enable all indicators 1126aeb0f0feSMatthias Ringwald for (i=0; i < hfp_hf_indicators_nr; i++){ 1127aeb0f0feSMatthias Ringwald hfp_connection->generic_status_indicators[i].uuid = hfp_hf_indicators[i]; 1128a0ffb263SMatthias Ringwald hfp_connection->generic_status_indicators[i].state = 1; 1129667ec068SMatthias Ringwald } 1130ce263fc8SMatthias Ringwald } 1131ce263fc8SMatthias Ringwald 11321cc65c4fSMatthias Ringwald static void hfp_hf_handle_suggested_codec(hfp_connection_t * hfp_connection){ 1133aeb0f0feSMatthias Ringwald if (hfp_supports_codec(hfp_connection->suggested_codec, hfp_hf_codecs_nr, hfp_hf_codecs)){ 11341cc65c4fSMatthias Ringwald // Codec supported, confirm 11351cc65c4fSMatthias Ringwald hfp_connection->negotiated_codec = hfp_connection->suggested_codec; 11361cc65c4fSMatthias Ringwald hfp_connection->codec_confirmed = hfp_connection->suggested_codec; 11371cc65c4fSMatthias Ringwald log_info("hfp: codec confirmed: %s", (hfp_connection->negotiated_codec == HFP_CODEC_MSBC) ? "mSBC" : "CVSD"); 11381cc65c4fSMatthias Ringwald hfp_connection->codecs_state = HFP_CODECS_HF_CONFIRMED_CODEC; 11391cc65c4fSMatthias Ringwald 11401cc65c4fSMatthias Ringwald hfp_connection->hf_send_codec_confirm = true; 11411cc65c4fSMatthias Ringwald } else { 11421cc65c4fSMatthias Ringwald // Codec not supported, send supported codecs 11431cc65c4fSMatthias Ringwald hfp_connection->codec_confirmed = 0; 11441cc65c4fSMatthias Ringwald hfp_connection->suggested_codec = 0; 11451cc65c4fSMatthias Ringwald hfp_connection->negotiated_codec = 0; 11461cc65c4fSMatthias Ringwald hfp_connection->codecs_state = HFP_CODECS_W4_AG_COMMON_CODEC; 11471cc65c4fSMatthias Ringwald 11481cc65c4fSMatthias Ringwald hfp_connection->hf_send_supported_codecs = true; 11491cc65c4fSMatthias Ringwald } 11501cc65c4fSMatthias Ringwald } 11511cc65c4fSMatthias Ringwald 1152e2c3b58dSMilanka Ringwald static bool hfp_hf_switch_on_ok_pending(hfp_connection_t *hfp_connection, uint8_t status){ 1153e2c3b58dSMilanka Ringwald bool event_emited = true; 1154e2c3b58dSMilanka Ringwald 1155b3e7b9f5SMatthias Ringwald // cache state and reset 1156b3e7b9f5SMatthias Ringwald hfp_command_t response_pending_for_command = hfp_connection->response_pending_for_command; 1157b3e7b9f5SMatthias Ringwald hfp_connection->response_pending_for_command = HFP_CMD_NONE; 1158b3e7b9f5SMatthias Ringwald hfp_connection->command = HFP_CMD_NONE; 1159b3e7b9f5SMatthias Ringwald hfp_connection->ok_pending = 0; 1160b3e7b9f5SMatthias Ringwald 1161b3e7b9f5SMatthias Ringwald switch (response_pending_for_command){ 1162e2c3b58dSMilanka Ringwald case HFP_CMD_TURN_OFF_EC_AND_NR: 1163e2c3b58dSMilanka Ringwald hfp_emit_event(hfp_connection, HFP_SUBEVENT_ECHO_CANCELING_AND_NOISE_REDUCTION_DEACTIVATE, status); 1164e2c3b58dSMilanka Ringwald break; 116551a2ebdeSMatthias Ringwald case HFP_CMD_CUSTOM_MESSAGE: 11667f8f1191SMatthias Ringwald hfp_emit_event(hfp_connection, HFP_SUBEVENT_CUSTOM_AT_MESSAGE_SENT, status); 116751a2ebdeSMatthias Ringwald break; 1168e2c3b58dSMilanka Ringwald default: 1169e2c3b58dSMilanka Ringwald event_emited = false; 1170e2c3b58dSMilanka Ringwald 1171a0ffb263SMatthias Ringwald switch (hfp_connection->state){ 11723deb3ec6SMatthias Ringwald case HFP_W4_EXCHANGE_SUPPORTED_FEATURES: 1173a0ffb263SMatthias Ringwald if (has_codec_negotiation_feature(hfp_connection)){ 1174a0ffb263SMatthias Ringwald hfp_connection->state = HFP_NOTIFY_ON_CODECS; 11753deb3ec6SMatthias Ringwald break; 11763deb3ec6SMatthias Ringwald } 1177a0ffb263SMatthias Ringwald hfp_connection->state = HFP_RETRIEVE_INDICATORS; 11783deb3ec6SMatthias Ringwald break; 11793deb3ec6SMatthias Ringwald 11803deb3ec6SMatthias Ringwald case HFP_W4_NOTIFY_ON_CODECS: 1181a0ffb263SMatthias Ringwald hfp_connection->state = HFP_RETRIEVE_INDICATORS; 11823deb3ec6SMatthias Ringwald break; 11833deb3ec6SMatthias Ringwald 11843deb3ec6SMatthias Ringwald case HFP_W4_RETRIEVE_INDICATORS: 1185a0ffb263SMatthias Ringwald hfp_connection->state = HFP_RETRIEVE_INDICATORS_STATUS; 11863deb3ec6SMatthias Ringwald break; 11873deb3ec6SMatthias Ringwald 11883deb3ec6SMatthias Ringwald case HFP_W4_RETRIEVE_INDICATORS_STATUS: 1189a0ffb263SMatthias Ringwald hfp_connection->state = HFP_ENABLE_INDICATORS_STATUS_UPDATE; 11903deb3ec6SMatthias Ringwald break; 11913deb3ec6SMatthias Ringwald 11923deb3ec6SMatthias Ringwald case HFP_W4_ENABLE_INDICATORS_STATUS_UPDATE: 1193a0ffb263SMatthias Ringwald if (has_call_waiting_and_3way_calling_feature(hfp_connection)){ 1194a0ffb263SMatthias Ringwald hfp_connection->state = HFP_RETRIEVE_CAN_HOLD_CALL; 11953deb3ec6SMatthias Ringwald break; 11963deb3ec6SMatthias Ringwald } 1197a0ffb263SMatthias Ringwald if (has_hf_indicators_feature(hfp_connection)){ 1198a0ffb263SMatthias Ringwald hfp_connection->state = HFP_LIST_GENERIC_STATUS_INDICATORS; 11993deb3ec6SMatthias Ringwald break; 12003deb3ec6SMatthias Ringwald } 1201ad862247SMatthias Ringwald hfp_hf_slc_established(hfp_connection); 12023deb3ec6SMatthias Ringwald break; 12033deb3ec6SMatthias Ringwald 12043deb3ec6SMatthias Ringwald case HFP_W4_RETRIEVE_CAN_HOLD_CALL: 1205a0ffb263SMatthias Ringwald if (has_hf_indicators_feature(hfp_connection)){ 1206a0ffb263SMatthias Ringwald hfp_connection->state = HFP_LIST_GENERIC_STATUS_INDICATORS; 12073deb3ec6SMatthias Ringwald break; 12083deb3ec6SMatthias Ringwald } 1209ad862247SMatthias Ringwald hfp_hf_slc_established(hfp_connection); 12103deb3ec6SMatthias Ringwald break; 12113deb3ec6SMatthias Ringwald 12123deb3ec6SMatthias Ringwald case HFP_W4_LIST_GENERIC_STATUS_INDICATORS: 1213a0ffb263SMatthias Ringwald hfp_connection->state = HFP_RETRIEVE_GENERIC_STATUS_INDICATORS; 12143deb3ec6SMatthias Ringwald break; 12153deb3ec6SMatthias Ringwald 12163deb3ec6SMatthias Ringwald case HFP_W4_RETRIEVE_GENERIC_STATUS_INDICATORS: 1217a0ffb263SMatthias Ringwald hfp_connection->state = HFP_RETRIEVE_INITITAL_STATE_GENERIC_STATUS_INDICATORS; 12183deb3ec6SMatthias Ringwald break; 12193deb3ec6SMatthias Ringwald 12203deb3ec6SMatthias Ringwald case HFP_W4_RETRIEVE_INITITAL_STATE_GENERIC_STATUS_INDICATORS: 1221ad862247SMatthias Ringwald hfp_hf_slc_established(hfp_connection); 12223deb3ec6SMatthias Ringwald break; 1223ce263fc8SMatthias Ringwald case HFP_SERVICE_LEVEL_CONNECTION_ESTABLISHED: 1224a0ffb263SMatthias Ringwald if (hfp_connection->enable_status_update_for_ag_indicators != 0xFF){ 1225a0ffb263SMatthias Ringwald hfp_connection->enable_status_update_for_ag_indicators = 0xFF; 12266cc5b34bSMatthias Ringwald hfp_emit_event(hfp_connection, HFP_SUBEVENT_COMPLETE, ERROR_CODE_SUCCESS); 1227ce263fc8SMatthias Ringwald break; 1228ce263fc8SMatthias Ringwald } 12293deb3ec6SMatthias Ringwald 1230a0ffb263SMatthias Ringwald if (hfp_connection->change_status_update_for_individual_ag_indicators == 1){ 1231a0ffb263SMatthias Ringwald hfp_connection->change_status_update_for_individual_ag_indicators = 0; 12326cc5b34bSMatthias Ringwald hfp_emit_event(hfp_connection, HFP_SUBEVENT_COMPLETE, ERROR_CODE_SUCCESS); 1233ce263fc8SMatthias Ringwald break; 12343deb3ec6SMatthias Ringwald } 12353deb3ec6SMatthias Ringwald 1236a0ffb263SMatthias Ringwald switch (hfp_connection->hf_query_operator_state){ 1237ce263fc8SMatthias Ringwald case HFP_HF_QUERY_OPERATOR_W4_SET_FORMAT_OK: 1238a0ffb263SMatthias Ringwald hfp_connection->hf_query_operator_state = HFP_HF_QUERY_OPERATOR_SEND_QUERY; 1239ce263fc8SMatthias Ringwald break; 1240ce263fc8SMatthias Ringwald case HPF_HF_QUERY_OPERATOR_W4_RESULT: 1241a0ffb263SMatthias Ringwald hfp_connection->hf_query_operator_state = HFP_HF_QUERY_OPERATOR_FORMAT_SET; 1242a473a009SMatthias Ringwald hfp_emit_network_operator_event(hfp_connection); 1243ce263fc8SMatthias Ringwald break; 1244ce263fc8SMatthias Ringwald default: 1245ce263fc8SMatthias Ringwald break; 12463deb3ec6SMatthias Ringwald } 1247ce263fc8SMatthias Ringwald 1248a0ffb263SMatthias Ringwald if (hfp_connection->enable_extended_audio_gateway_error_report){ 1249a0ffb263SMatthias Ringwald hfp_connection->enable_extended_audio_gateway_error_report = 0; 1250ce263fc8SMatthias Ringwald break; 12513deb3ec6SMatthias Ringwald } 12523deb3ec6SMatthias Ringwald 1253a0ffb263SMatthias Ringwald switch (hfp_connection->codecs_state){ 1254aa4dd815SMatthias Ringwald case HFP_CODECS_RECEIVED_TRIGGER_CODEC_EXCHANGE: 1255a0ffb263SMatthias Ringwald hfp_connection->codecs_state = HFP_CODECS_W4_AG_COMMON_CODEC; 12563deb3ec6SMatthias Ringwald break; 1257ce263fc8SMatthias Ringwald case HFP_CODECS_HF_CONFIRMED_CODEC: 1258a0ffb263SMatthias Ringwald hfp_connection->codecs_state = HFP_CODECS_EXCHANGED; 1259ce263fc8SMatthias Ringwald break; 12603deb3ec6SMatthias Ringwald default: 12613deb3ec6SMatthias Ringwald break; 12623deb3ec6SMatthias Ringwald } 1263af97579eSMilanka Ringwald hfp_hf_voice_recognition_state_machine(hfp_connection); 1264be55a11dSMilanka Ringwald break; 1265be55a11dSMilanka Ringwald case HFP_AUDIO_CONNECTION_ESTABLISHED: 1266af97579eSMilanka Ringwald hfp_hf_voice_recognition_state_machine(hfp_connection); 12673deb3ec6SMatthias Ringwald break; 12683deb3ec6SMatthias Ringwald default: 12693deb3ec6SMatthias Ringwald break; 12703deb3ec6SMatthias Ringwald } 1271e2c3b58dSMilanka Ringwald break; 1272e2c3b58dSMilanka Ringwald } 12733deb3ec6SMatthias Ringwald 1274e2c3b58dSMilanka Ringwald return event_emited; 12753deb3ec6SMatthias Ringwald } 12763deb3ec6SMatthias Ringwald 1277a03dbc20SMilanka Ringwald static bool hfp_is_ringing(hfp_callsetup_status_t callsetup_status){ 1278a03dbc20SMilanka Ringwald switch (callsetup_status){ 1279a03dbc20SMilanka Ringwald case HFP_CALLSETUP_STATUS_INCOMING_CALL_SETUP_IN_PROGRESS: 1280a03dbc20SMilanka Ringwald case HFP_CALLSETUP_STATUS_OUTGOING_CALL_SETUP_IN_ALERTING_STATE: 1281a03dbc20SMilanka Ringwald return true; 1282a03dbc20SMilanka Ringwald default: 1283a03dbc20SMilanka Ringwald return false; 1284a03dbc20SMilanka Ringwald } 1285a03dbc20SMilanka Ringwald } 1286be55a11dSMilanka Ringwald 1287b08371a9SMilanka Ringwald static void hfp_hf_handle_transfer_ag_indicator_status(hfp_connection_t * hfp_connection) { 12884562e2a2SMatthias Ringwald uint16_t i; 1289a03dbc20SMilanka Ringwald 12904562e2a2SMatthias Ringwald for (i = 0; i < hfp_connection->ag_indicators_nr; i++){ 12914562e2a2SMatthias Ringwald if (hfp_connection->ag_indicators[i].status_changed) { 12924562e2a2SMatthias Ringwald if (strcmp(hfp_connection->ag_indicators[i].name, "callsetup") == 0){ 1293a03dbc20SMilanka Ringwald hfp_callsetup_status_t new_hf_callsetup_status = (hfp_callsetup_status_t) hfp_connection->ag_indicators[i].status; 1294a03dbc20SMilanka Ringwald bool ringing_old = hfp_is_ringing(hfp_hf_callsetup_status); 1295a03dbc20SMilanka Ringwald bool ringing_new = hfp_is_ringing(new_hf_callsetup_status); 1296a03dbc20SMilanka Ringwald if (ringing_old != ringing_new){ 1297a03dbc20SMilanka Ringwald if (ringing_new){ 1298a03dbc20SMilanka Ringwald hfp_emit_simple_event(hfp_connection, HFP_SUBEVENT_START_RINGING); 1299a03dbc20SMilanka Ringwald } else { 1300a03dbc20SMilanka Ringwald hfp_emit_simple_event(hfp_connection, HFP_SUBEVENT_STOP_RINGING); 1301a03dbc20SMilanka Ringwald } 1302a03dbc20SMilanka Ringwald } 1303a03dbc20SMilanka Ringwald hfp_hf_callsetup_status = new_hf_callsetup_status; 13044562e2a2SMatthias Ringwald } else if (strcmp(hfp_connection->ag_indicators[i].name, "callheld") == 0){ 1305aeb0f0feSMatthias Ringwald hfp_hf_callheld_status = (hfp_callheld_status_t) hfp_connection->ag_indicators[i].status; 13064562e2a2SMatthias Ringwald // avoid set but not used warning 1307aeb0f0feSMatthias Ringwald (void) hfp_hf_callheld_status; 13084562e2a2SMatthias Ringwald } else if (strcmp(hfp_connection->ag_indicators[i].name, "call") == 0){ 1309674ebed5SMilanka Ringwald hfp_call_status_t new_hf_call_status = (hfp_call_status_t) hfp_connection->ag_indicators[i].status; 1310674ebed5SMilanka Ringwald if (hfp_hf_call_status != new_hf_call_status){ 1311674ebed5SMilanka Ringwald if (new_hf_call_status == HFP_CALL_STATUS_NO_HELD_OR_ACTIVE_CALLS){ 1312674ebed5SMilanka Ringwald hfp_emit_simple_event(hfp_connection, HFP_SUBEVENT_CALL_TERMINATED); 1313674ebed5SMilanka Ringwald } else { 1314674ebed5SMilanka Ringwald hfp_emit_simple_event(hfp_connection, HFP_SUBEVENT_CALL_ANSWERED); 1315674ebed5SMilanka Ringwald } 1316674ebed5SMilanka Ringwald } 1317674ebed5SMilanka Ringwald hfp_hf_call_status = new_hf_call_status; 13184562e2a2SMatthias Ringwald } 13194562e2a2SMatthias Ringwald hfp_connection->ag_indicators[i].status_changed = 0; 1320ce3797e1SMilanka Ringwald hfp_emit_ag_indicator_status_event(hfp_connection, &hfp_connection->ag_indicators[i]); 13214562e2a2SMatthias Ringwald break; 13224562e2a2SMatthias Ringwald } 13234562e2a2SMatthias Ringwald } 13244562e2a2SMatthias Ringwald } 13254562e2a2SMatthias Ringwald 1326426f9988SMatthias Ringwald static void hfp_hf_handle_rfcomm_command(hfp_connection_t * hfp_connection){ 1327186dd3d2SMatthias Ringwald int value; 1328186dd3d2SMatthias Ringwald int i; 1329e2c3b58dSMilanka Ringwald bool event_emited; 1330e2c3b58dSMilanka Ringwald 1331125560b8SMatthias Ringwald // last argument is still in line_buffer 1332125560b8SMatthias Ringwald 1333a0ffb263SMatthias Ringwald switch (hfp_connection->command){ 1334667ec068SMatthias Ringwald case HFP_CMD_GET_SUBSCRIBER_NUMBER_INFORMATION: 1335a0ffb263SMatthias Ringwald hfp_connection->command = HFP_CMD_NONE; 1336a473a009SMatthias Ringwald hfp_hf_emit_subscriber_information(hfp_connection, 0); 1337667ec068SMatthias Ringwald break; 1338667ec068SMatthias Ringwald case HFP_CMD_RESPONSE_AND_HOLD_STATUS: 1339a0ffb263SMatthias Ringwald hfp_connection->command = HFP_CMD_NONE; 1340ca59be51SMatthias Ringwald hfp_emit_event(hfp_connection, HFP_SUBEVENT_RESPONSE_AND_HOLD_STATUS, btstack_atoi((char *)&hfp_connection->line_buffer[0])); 1341667ec068SMatthias Ringwald break; 1342667ec068SMatthias Ringwald case HFP_CMD_LIST_CURRENT_CALLS: 1343a0ffb263SMatthias Ringwald hfp_connection->command = HFP_CMD_NONE; 1344a473a009SMatthias Ringwald hfp_hf_emit_enhanced_call_status(hfp_connection); 1345667ec068SMatthias Ringwald break; 1346ce263fc8SMatthias Ringwald case HFP_CMD_SET_SPEAKER_GAIN: 1347a0ffb263SMatthias Ringwald hfp_connection->command = HFP_CMD_NONE; 13482308e108SMilanka Ringwald value = btstack_atoi((char*)hfp_connection->line_buffer); 1349667ec068SMatthias Ringwald hfp_hf_speaker_gain = value; 1350ca59be51SMatthias Ringwald hfp_emit_event(hfp_connection, HFP_SUBEVENT_SPEAKER_VOLUME, value); 1351ce263fc8SMatthias Ringwald break; 1352ce263fc8SMatthias Ringwald case HFP_CMD_SET_MICROPHONE_GAIN: 1353a0ffb263SMatthias Ringwald hfp_connection->command = HFP_CMD_NONE; 13542308e108SMilanka Ringwald value = btstack_atoi((char*)hfp_connection->line_buffer); 1355667ec068SMatthias Ringwald hfp_hf_microphone_gain = value; 1356ca59be51SMatthias Ringwald hfp_emit_event(hfp_connection, HFP_SUBEVENT_MICROPHONE_VOLUME, value); 1357ce263fc8SMatthias Ringwald break; 1358ce263fc8SMatthias Ringwald case HFP_CMD_AG_SENT_PHONE_NUMBER: 1359a0ffb263SMatthias Ringwald hfp_connection->command = HFP_CMD_NONE; 1360ca59be51SMatthias Ringwald hfp_emit_string_event(hfp_connection, HFP_SUBEVENT_NUMBER_FOR_VOICE_TAG, hfp_connection->bnip_number); 1361a0ffb263SMatthias Ringwald break; 1362a0ffb263SMatthias Ringwald case HFP_CMD_AG_SENT_CALL_WAITING_NOTIFICATION_UPDATE: 1363a0ffb263SMatthias Ringwald hfp_connection->command = HFP_CMD_NONE; 1364598d4936SMatthias Ringwald hfp_hf_emit_type_number_alpha(hfp_connection, HFP_SUBEVENT_CALL_WAITING_NOTIFICATION); 1365a0ffb263SMatthias Ringwald break; 1366a0ffb263SMatthias Ringwald case HFP_CMD_AG_SENT_CLIP_INFORMATION: 1367a0ffb263SMatthias Ringwald hfp_connection->command = HFP_CMD_NONE; 1368598d4936SMatthias Ringwald hfp_hf_emit_type_number_alpha(hfp_connection, HFP_SUBEVENT_CALLING_LINE_IDENTIFICATION_NOTIFICATION); 1369ce263fc8SMatthias Ringwald break; 1370ce263fc8SMatthias Ringwald case HFP_CMD_EXTENDED_AUDIO_GATEWAY_ERROR: 1371a0ffb263SMatthias Ringwald hfp_connection->command = HFP_CMD_NONE; 13725a4785c8SMatthias Ringwald hfp_connection->ok_pending = 0; 1373a0ffb263SMatthias Ringwald hfp_connection->extended_audio_gateway_error = 0; 1374ca59be51SMatthias Ringwald hfp_emit_event(hfp_connection, HFP_SUBEVENT_EXTENDED_AUDIO_GATEWAY_ERROR, hfp_connection->extended_audio_gateway_error_value); 1375ce263fc8SMatthias Ringwald break; 13760b4debbfSMilanka Ringwald case HFP_CMD_AG_ACTIVATE_VOICE_RECOGNITION: 13770b4debbfSMilanka Ringwald break; 1378fdda66c0SMilanka Ringwald case HFP_CMD_ERROR: 137990244c92SMilanka Ringwald switch (hfp_connection->state){ 138090244c92SMilanka Ringwald case HFP_SERVICE_LEVEL_CONNECTION_ESTABLISHED: 138190244c92SMilanka Ringwald switch (hfp_connection->codecs_state){ 138290244c92SMilanka Ringwald case HFP_CODECS_RECEIVED_TRIGGER_CODEC_EXCHANGE: 1383fdda66c0SMilanka Ringwald hfp_reset_context_flags(hfp_connection); 1384f14c5dafSMatthias Ringwald hfp_emit_sco_connection_established(hfp_connection, HFP_REMOTE_REJECTS_AUDIO_CONNECTION, 13855e8e3664SMatthias Ringwald hfp_connection->negotiated_codec, 0, 0); 138690244c92SMilanka Ringwald return; 138790244c92SMilanka Ringwald default: 138890244c92SMilanka Ringwald break; 138990244c92SMilanka Ringwald } 139056f1adacSMilanka Ringwald break; 139156f1adacSMilanka Ringwald default: 139256f1adacSMilanka Ringwald break; 139356f1adacSMilanka Ringwald } 1394e2c3b58dSMilanka Ringwald 1395fdda66c0SMilanka Ringwald // handle error response for voice activation (HF initiated) 13960b4debbfSMilanka Ringwald switch(hfp_connection->vra_state_requested){ 1397de9e0ea7SMilanka Ringwald case HFP_VRA_W4_ENHANCED_VOICE_RECOGNITION_READY_FOR_AUDIO: 1398de9e0ea7SMilanka Ringwald hfp_emit_enhanced_voice_recognition_hf_ready_for_audio_event(hfp_connection, ERROR_CODE_UNSPECIFIED_ERROR); 1399be55a11dSMilanka Ringwald break; 1400be55a11dSMilanka Ringwald default: 1401e2c3b58dSMilanka Ringwald if (hfp_connection->vra_state_requested == hfp_connection->vra_state){ 1402e2c3b58dSMilanka Ringwald break; 1403e2c3b58dSMilanka Ringwald } 14040b4debbfSMilanka Ringwald hfp_connection->vra_state_requested = hfp_connection->vra_state; 1405553a4a56SMilanka Ringwald hfp_emit_voice_recognition_enabled(hfp_connection, ERROR_CODE_UNSPECIFIED_ERROR); 14060b4debbfSMilanka Ringwald hfp_reset_context_flags(hfp_connection); 14070b4debbfSMilanka Ringwald return; 1408be55a11dSMilanka Ringwald } 1409e2c3b58dSMilanka Ringwald event_emited = hfp_hf_switch_on_ok_pending(hfp_connection, ERROR_CODE_UNSPECIFIED_ERROR); 1410e2c3b58dSMilanka Ringwald if (!event_emited){ 14116cc5b34bSMatthias Ringwald hfp_emit_event(hfp_connection, HFP_SUBEVENT_COMPLETE, ERROR_CODE_UNSPECIFIED_ERROR); 1412e2c3b58dSMilanka Ringwald } 1413fdda66c0SMilanka Ringwald hfp_reset_context_flags(hfp_connection); 1414ce263fc8SMatthias Ringwald break; 1415fdda66c0SMilanka Ringwald 1416ce263fc8SMatthias Ringwald case HFP_CMD_OK: 1417e2c3b58dSMilanka Ringwald hfp_hf_switch_on_ok_pending(hfp_connection, ERROR_CODE_SUCCESS); 1418ce263fc8SMatthias Ringwald break; 1419ce263fc8SMatthias Ringwald case HFP_CMD_RING: 14205a4785c8SMatthias Ringwald hfp_connection->command = HFP_CMD_NONE; 1421ca59be51SMatthias Ringwald hfp_emit_simple_event(hfp_connection, HFP_SUBEVENT_RING); 1422ce263fc8SMatthias Ringwald break; 1423ce263fc8SMatthias Ringwald case HFP_CMD_TRANSFER_AG_INDICATOR_STATUS: 14245a4785c8SMatthias Ringwald hfp_connection->command = HFP_CMD_NONE; 14254562e2a2SMatthias Ringwald hfp_hf_handle_transfer_ag_indicator_status(hfp_connection); 1426ce263fc8SMatthias Ringwald break; 1427c741b032SMilanka Ringwald case HFP_CMD_RETRIEVE_AG_INDICATORS_STATUS: 14285a4785c8SMatthias Ringwald hfp_connection->command = HFP_CMD_NONE; 1429184a03edSMilanka Ringwald // report status after SLC established 1430184a03edSMilanka Ringwald if (hfp_connection->state < HFP_SERVICE_LEVEL_CONNECTION_ESTABLISHED){ 1431184a03edSMilanka Ringwald break; 1432184a03edSMilanka Ringwald } 1433c741b032SMilanka Ringwald for (i = 0; i < hfp_connection->ag_indicators_nr; i++){ 14341ac1f60fSMilanka Ringwald hfp_emit_ag_indicator_mapping_event(hfp_connection, &hfp_connection->ag_indicators[i]); 1435c741b032SMilanka Ringwald } 1436c741b032SMilanka Ringwald break; 14371cc65c4fSMatthias Ringwald case HFP_CMD_AG_SUGGESTED_CODEC: 14381cc65c4fSMatthias Ringwald hfp_connection->command = HFP_CMD_NONE; 14395a4785c8SMatthias Ringwald hfp_hf_handle_suggested_codec(hfp_connection); 14401cc65c4fSMatthias Ringwald break; 1441eac56539SMilanka Ringwald case HFP_CMD_CHANGE_IN_BAND_RING_TONE_SETTING: 1442eac56539SMilanka Ringwald hfp_emit_event(hfp_connection, HFP_SUBEVENT_IN_BAND_RING_TONE, get_bit(hfp_connection->remote_supported_features, HFP_AGSF_IN_BAND_RING_TONE)); 14435134fea9SMatthias Ringwald break; 1444892f58a8SMatthias Ringwald case HFP_CMD_CUSTOM_MESSAGE: 1445892f58a8SMatthias Ringwald hfp_connection->command = HFP_CMD_NONE; 1446892f58a8SMatthias Ringwald hfp_parser_reset_line_buffer(hfp_connection); 1447892f58a8SMatthias Ringwald log_info("Custom AT Command ID 0x%04x", hfp_connection->custom_at_command_id); 1448892f58a8SMatthias Ringwald hfp_hf_emit_custom_command_event(hfp_connection); 1449892f58a8SMatthias Ringwald break; 1450ce263fc8SMatthias Ringwald default: 1451ce263fc8SMatthias Ringwald break; 14523deb3ec6SMatthias Ringwald } 14530cef86faSMatthias Ringwald } 1454426f9988SMatthias Ringwald 145576cc1527SMatthias Ringwald static int hfp_parser_is_end_of_line(uint8_t byte){ 145676cc1527SMatthias Ringwald return (byte == '\n') || (byte == '\r'); 145776cc1527SMatthias Ringwald } 145876cc1527SMatthias Ringwald 14590b4debbfSMilanka Ringwald static void hfp_hf_handle_rfcomm_data(hfp_connection_t * hfp_connection, uint8_t *packet, uint16_t size){ 1460426f9988SMatthias Ringwald // assertion: size >= 1 as rfcomm.c does not deliver empty packets 1461426f9988SMatthias Ringwald if (size < 1) return; 1462426f9988SMatthias Ringwald 1463426f9988SMatthias Ringwald hfp_log_rfcomm_message("HFP_HF_RX", packet, size); 1464e43d1938SMatthias Ringwald #ifdef ENABLE_HFP_AT_MESSAGES 1465e43d1938SMatthias Ringwald hfp_emit_string_event(hfp_connection, HFP_SUBEVENT_AT_MESSAGE_RECEIVED, (char *) packet); 1466e43d1938SMatthias Ringwald #endif 1467426f9988SMatthias Ringwald 1468426f9988SMatthias Ringwald // process messages byte-wise 1469a7ba78b0SMilanka Ringwald uint8_t pos; 1470426f9988SMatthias Ringwald for (pos = 0; pos < size; pos++){ 1471426f9988SMatthias Ringwald hfp_parse(hfp_connection, packet[pos], 1); 14721599fe57SMatthias Ringwald // parse until end of line "\r" or "\n" 1473426f9988SMatthias Ringwald if (!hfp_parser_is_end_of_line(packet[pos])) continue; 14740b4debbfSMilanka Ringwald hfp_hf_handle_rfcomm_command(hfp_connection); 14753deb3ec6SMatthias Ringwald } 1476a7ba78b0SMilanka Ringwald } 14773deb3ec6SMatthias Ringwald 14781c6a0fc0SMatthias Ringwald static void hfp_hf_run(void){ 1479665d90f2SMatthias Ringwald btstack_linked_list_iterator_t it; 1480665d90f2SMatthias Ringwald btstack_linked_list_iterator_init(&it, hfp_get_connections()); 1481665d90f2SMatthias Ringwald while (btstack_linked_list_iterator_has_next(&it)){ 1482a0ffb263SMatthias Ringwald hfp_connection_t * hfp_connection = (hfp_connection_t *)btstack_linked_list_iterator_next(&it); 148322387625SMatthias Ringwald if (hfp_connection->local_role != HFP_ROLE_HF) continue; 14841c6a0fc0SMatthias Ringwald hfp_hf_run_for_context(hfp_connection); 14853deb3ec6SMatthias Ringwald } 14863deb3ec6SMatthias Ringwald } 14873deb3ec6SMatthias Ringwald 14881c6a0fc0SMatthias Ringwald static void hfp_hf_rfcomm_packet_handler(uint8_t packet_type, uint16_t channel, uint8_t *packet, uint16_t size){ 14890b4debbfSMilanka Ringwald hfp_connection_t * hfp_connection; 14903deb3ec6SMatthias Ringwald switch (packet_type){ 14913deb3ec6SMatthias Ringwald case RFCOMM_DATA_PACKET: 14920b4debbfSMilanka Ringwald hfp_connection = get_hfp_connection_context_for_rfcomm_cid(channel); 14930b4debbfSMilanka Ringwald if (!hfp_connection) return; 14940b4debbfSMilanka Ringwald hfp_hf_handle_rfcomm_data(hfp_connection, packet, size); 14950b4debbfSMilanka Ringwald hfp_hf_run_for_context(hfp_connection); 14960b4debbfSMilanka Ringwald return; 14973deb3ec6SMatthias Ringwald case HCI_EVENT_PACKET: 1498d4dd47ffSMatthias Ringwald if (packet[0] == RFCOMM_EVENT_CAN_SEND_NOW){ 1499d4dd47ffSMatthias Ringwald uint16_t rfcomm_cid = rfcomm_event_can_send_now_get_rfcomm_cid(packet); 15001c6a0fc0SMatthias Ringwald hfp_hf_run_for_context(get_hfp_connection_context_for_rfcomm_cid(rfcomm_cid)); 1501d4dd47ffSMatthias Ringwald return; 1502d4dd47ffSMatthias Ringwald } 150327950165SMatthias Ringwald hfp_handle_rfcomm_event(packet_type, channel, packet, size, HFP_ROLE_HF); 1504202c8a4cSMatthias Ringwald break; 15053deb3ec6SMatthias Ringwald default: 15063deb3ec6SMatthias Ringwald break; 15073deb3ec6SMatthias Ringwald } 15081c6a0fc0SMatthias Ringwald hfp_hf_run(); 15093deb3ec6SMatthias Ringwald } 15103deb3ec6SMatthias Ringwald 15111c6a0fc0SMatthias Ringwald static void hfp_hf_hci_event_packet_handler(uint8_t packet_type, uint16_t channel, uint8_t *packet, uint16_t size){ 1512405014fbSMatthias Ringwald hfp_handle_hci_event(packet_type, channel, packet, size, HFP_ROLE_HF); 15131c6a0fc0SMatthias Ringwald hfp_hf_run(); 1514405014fbSMatthias Ringwald } 1515405014fbSMatthias Ringwald 1516aeb0f0feSMatthias Ringwald static void hfp_hf_set_defaults(void){ 1517aeb0f0feSMatthias Ringwald hfp_hf_supported_features = HFP_DEFAULT_HF_SUPPORTED_FEATURES; 1518aeb0f0feSMatthias Ringwald hfp_hf_call_status = HFP_CALL_STATUS_NO_HELD_OR_ACTIVE_CALLS; 1519aeb0f0feSMatthias Ringwald hfp_hf_callsetup_status = HFP_CALLSETUP_STATUS_NO_CALL_SETUP_IN_PROGRESS; 1520aeb0f0feSMatthias Ringwald hfp_hf_callheld_status= HFP_CALLHELD_STATUS_NO_CALLS_HELD; 1521aeb0f0feSMatthias Ringwald hfp_hf_codecs_nr = 0; 1522aeb0f0feSMatthias Ringwald hfp_hf_speaker_gain = 9; 1523aeb0f0feSMatthias Ringwald hfp_hf_microphone_gain = 9; 1524aeb0f0feSMatthias Ringwald hfp_hf_indicators_nr = 0; 1525aeb0f0feSMatthias Ringwald } 1526aeb0f0feSMatthias Ringwald 152742aadee5SMatthias Ringwald uint8_t hfp_hf_set_default_microphone_gain(uint8_t gain){ 1528455808b3SMatthias Ringwald if (gain > 15){ 152942aadee5SMatthias Ringwald return ERROR_CODE_INVALID_HCI_COMMAND_PARAMETERS; 153042aadee5SMatthias Ringwald } 153142aadee5SMatthias Ringwald hfp_hf_microphone_gain = gain; 153242aadee5SMatthias Ringwald return ERROR_CODE_SUCCESS; 153342aadee5SMatthias Ringwald } 153442aadee5SMatthias Ringwald 153542aadee5SMatthias Ringwald uint8_t hfp_hf_set_default_speaker_gain(uint8_t gain){ 1536455808b3SMatthias Ringwald if (gain > 15){ 153742aadee5SMatthias Ringwald return ERROR_CODE_INVALID_HCI_COMMAND_PARAMETERS; 153842aadee5SMatthias Ringwald } 153942aadee5SMatthias Ringwald hfp_hf_speaker_gain = gain; 154042aadee5SMatthias Ringwald return ERROR_CODE_SUCCESS; 154142aadee5SMatthias Ringwald } 154242aadee5SMatthias Ringwald 1543ab2445a0SMatthias Ringwald uint8_t hfp_hf_init(uint8_t rfcomm_channel_nr){ 1544b4df8028SMilanka Ringwald uint8_t status = rfcomm_register_service(hfp_hf_rfcomm_packet_handler, rfcomm_channel_nr, 0xffff); 1545b4df8028SMilanka Ringwald if (status != ERROR_CODE_SUCCESS){ 1546b4df8028SMilanka Ringwald return status; 1547b4df8028SMilanka Ringwald } 1548b4df8028SMilanka Ringwald 1549520c92d5SMatthias Ringwald hfp_init(); 1550aeb0f0feSMatthias Ringwald hfp_hf_set_defaults(); 1551d63c37a1SMatthias Ringwald 15521c6a0fc0SMatthias Ringwald hfp_hf_hci_event_callback_registration.callback = &hfp_hf_hci_event_packet_handler; 15531c6a0fc0SMatthias Ringwald hci_add_event_handler(&hfp_hf_hci_event_callback_registration); 155427950165SMatthias Ringwald 155527950165SMatthias Ringwald // used to set packet handler for outgoing rfcomm connections - could be handled by emitting an event to us 15561c6a0fc0SMatthias Ringwald hfp_set_hf_rfcomm_packet_handler(&hfp_hf_rfcomm_packet_handler); 1557b4df8028SMilanka Ringwald return ERROR_CODE_SUCCESS; 155820b2edb6SMatthias Ringwald } 155927950165SMatthias Ringwald 156020b2edb6SMatthias Ringwald void hfp_hf_deinit(void){ 156120b2edb6SMatthias Ringwald hfp_deinit(); 1562aeb0f0feSMatthias Ringwald hfp_hf_set_defaults(); 1563aeb0f0feSMatthias Ringwald 1564aeb0f0feSMatthias Ringwald hfp_hf_callback = NULL; 156520b2edb6SMatthias Ringwald (void) memset(&hfp_hf_hci_event_callback_registration, 0, sizeof(btstack_packet_callback_registration_t)); 1566aeb0f0feSMatthias Ringwald (void) memset(hfp_hf_phone_number, 0, sizeof(hfp_hf_phone_number)); 1567a0ffb263SMatthias Ringwald } 1568a0ffb263SMatthias Ringwald 1569aa10b9cbSMatthias Ringwald void hfp_hf_init_codecs(uint8_t codecs_nr, const uint8_t * codecs){ 15702be4ddd3SMatthias Ringwald btstack_assert(codecs_nr <= HFP_MAX_NUM_CODECS); 15713deb3ec6SMatthias Ringwald 1572aeb0f0feSMatthias Ringwald hfp_hf_codecs_nr = codecs_nr; 1573aa10b9cbSMatthias Ringwald uint8_t i; 15743deb3ec6SMatthias Ringwald for (i=0; i<codecs_nr; i++){ 1575aeb0f0feSMatthias Ringwald hfp_hf_codecs[i] = codecs[i]; 15763deb3ec6SMatthias Ringwald } 15773deb3ec6SMatthias Ringwald } 15783deb3ec6SMatthias Ringwald 1579a0ffb263SMatthias Ringwald void hfp_hf_init_supported_features(uint32_t supported_features){ 1580aeb0f0feSMatthias Ringwald hfp_hf_supported_features = supported_features; 1581a0ffb263SMatthias Ringwald } 15823deb3ec6SMatthias Ringwald 15837ca89cabSMatthias Ringwald void hfp_hf_init_hf_indicators(int indicators_nr, const uint16_t * indicators){ 1584aeb0f0feSMatthias Ringwald btstack_assert(hfp_hf_indicators_nr < HFP_MAX_NUM_INDICATORS); 158568466199SMilanka Ringwald 1586aeb0f0feSMatthias Ringwald hfp_hf_indicators_nr = indicators_nr; 15873deb3ec6SMatthias Ringwald int i; 1588aeb0f0feSMatthias Ringwald for (i = 0; i < hfp_hf_indicators_nr ; i++){ 1589ab2445a0SMatthias Ringwald hfp_hf_indicators[i] = (uint8_t) indicators[i]; 15903deb3ec6SMatthias Ringwald } 15913deb3ec6SMatthias Ringwald } 15923deb3ec6SMatthias Ringwald 15934eb3f1d8SMilanka Ringwald uint8_t hfp_hf_establish_service_level_connection(bd_addr_t bd_addr){ 15944eb3f1d8SMilanka Ringwald return hfp_establish_service_level_connection(bd_addr, BLUETOOTH_SERVICE_CLASS_HANDSFREE_AUDIO_GATEWAY, HFP_ROLE_HF); 15953deb3ec6SMatthias Ringwald } 15963deb3ec6SMatthias Ringwald 1597657bc59fSMilanka Ringwald uint8_t hfp_hf_release_service_level_connection(hci_con_handle_t acl_handle){ 15989c9c64c1SMatthias Ringwald hfp_connection_t * hfp_connection = get_hfp_hf_connection_context_for_acl_handle(acl_handle); 1599a33eb0c4SMilanka Ringwald if (!hfp_connection){ 1600657bc59fSMilanka Ringwald return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER; 1601a33eb0c4SMilanka Ringwald } 16021ffa0dd9SMilanka Ringwald hfp_trigger_release_service_level_connection(hfp_connection); 16031c6a0fc0SMatthias Ringwald hfp_hf_run_for_context(hfp_connection); 1604657bc59fSMilanka Ringwald return ERROR_CODE_SUCCESS; 16053deb3ec6SMatthias Ringwald } 16063deb3ec6SMatthias Ringwald 16073c65e705SMilanka Ringwald static uint8_t hfp_hf_set_status_update_for_all_ag_indicators(hci_con_handle_t acl_handle, uint8_t enable){ 16089c9c64c1SMatthias Ringwald hfp_connection_t * hfp_connection = get_hfp_hf_connection_context_for_acl_handle(acl_handle); 1609a0ffb263SMatthias Ringwald if (!hfp_connection) { 16103c65e705SMilanka Ringwald return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER; 16113deb3ec6SMatthias Ringwald } 1612a0ffb263SMatthias Ringwald hfp_connection->enable_status_update_for_ag_indicators = enable; 16131c6a0fc0SMatthias Ringwald hfp_hf_run_for_context(hfp_connection); 16143c65e705SMilanka Ringwald return ERROR_CODE_SUCCESS; 16153deb3ec6SMatthias Ringwald } 16163deb3ec6SMatthias Ringwald 16173c65e705SMilanka Ringwald uint8_t hfp_hf_enable_status_update_for_all_ag_indicators(hci_con_handle_t acl_handle){ 16183c65e705SMilanka Ringwald return hfp_hf_set_status_update_for_all_ag_indicators(acl_handle, 1); 1619ce263fc8SMatthias Ringwald } 1620ce263fc8SMatthias Ringwald 16213c65e705SMilanka Ringwald uint8_t hfp_hf_disable_status_update_for_all_ag_indicators(hci_con_handle_t acl_handle){ 16223c65e705SMilanka Ringwald return hfp_hf_set_status_update_for_all_ag_indicators(acl_handle, 0); 1623ce263fc8SMatthias Ringwald } 1624ce263fc8SMatthias Ringwald 16253deb3ec6SMatthias Ringwald // TODO: returned ERROR - wrong format 16263c65e705SMilanka Ringwald uint8_t hfp_hf_set_status_update_for_individual_ag_indicators(hci_con_handle_t acl_handle, uint32_t indicators_status_bitmap){ 16279c9c64c1SMatthias Ringwald hfp_connection_t * hfp_connection = get_hfp_hf_connection_context_for_acl_handle(acl_handle); 1628a0ffb263SMatthias Ringwald if (!hfp_connection) { 16293c65e705SMilanka Ringwald return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER; 16303deb3ec6SMatthias Ringwald } 1631a0ffb263SMatthias Ringwald hfp_connection->change_status_update_for_individual_ag_indicators = 1; 1632a0ffb263SMatthias Ringwald hfp_connection->ag_indicators_status_update_bitmap = indicators_status_bitmap; 16331c6a0fc0SMatthias Ringwald hfp_hf_run_for_context(hfp_connection); 16343c65e705SMilanka Ringwald return ERROR_CODE_SUCCESS; 16353deb3ec6SMatthias Ringwald } 16363deb3ec6SMatthias Ringwald 16373c65e705SMilanka Ringwald uint8_t hfp_hf_query_operator_selection(hci_con_handle_t acl_handle){ 16389c9c64c1SMatthias Ringwald hfp_connection_t * hfp_connection = get_hfp_hf_connection_context_for_acl_handle(acl_handle); 1639a0ffb263SMatthias Ringwald if (!hfp_connection) { 16403c65e705SMilanka Ringwald return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER; 16413deb3ec6SMatthias Ringwald } 16423c65e705SMilanka Ringwald 1643a0ffb263SMatthias Ringwald switch (hfp_connection->hf_query_operator_state){ 1644ce263fc8SMatthias Ringwald case HFP_HF_QUERY_OPERATOR_FORMAT_NOT_SET: 1645a0ffb263SMatthias Ringwald hfp_connection->hf_query_operator_state = HFP_HF_QUERY_OPERATOR_SET_FORMAT; 1646ce263fc8SMatthias Ringwald break; 1647ce263fc8SMatthias Ringwald case HFP_HF_QUERY_OPERATOR_FORMAT_SET: 1648a0ffb263SMatthias Ringwald hfp_connection->hf_query_operator_state = HFP_HF_QUERY_OPERATOR_SEND_QUERY; 1649ce263fc8SMatthias Ringwald break; 1650ce263fc8SMatthias Ringwald default: 16513c65e705SMilanka Ringwald return ERROR_CODE_COMMAND_DISALLOWED; 1652ce263fc8SMatthias Ringwald } 16531c6a0fc0SMatthias Ringwald hfp_hf_run_for_context(hfp_connection); 16543c65e705SMilanka Ringwald return ERROR_CODE_SUCCESS; 16553deb3ec6SMatthias Ringwald } 16563deb3ec6SMatthias Ringwald 16573c65e705SMilanka Ringwald static uint8_t hfp_hf_set_report_extended_audio_gateway_error_result_code(hci_con_handle_t acl_handle, uint8_t enable){ 16589c9c64c1SMatthias Ringwald hfp_connection_t * hfp_connection = get_hfp_hf_connection_context_for_acl_handle(acl_handle); 1659a0ffb263SMatthias Ringwald if (!hfp_connection) { 16603c65e705SMilanka Ringwald return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER; 16613deb3ec6SMatthias Ringwald } 1662a0ffb263SMatthias Ringwald hfp_connection->enable_extended_audio_gateway_error_report = enable; 16631c6a0fc0SMatthias Ringwald hfp_hf_run_for_context(hfp_connection); 16643c65e705SMilanka Ringwald return ERROR_CODE_SUCCESS; 16653deb3ec6SMatthias Ringwald } 16663deb3ec6SMatthias Ringwald 1667ce263fc8SMatthias Ringwald 16683c65e705SMilanka Ringwald uint8_t hfp_hf_enable_report_extended_audio_gateway_error_result_code(hci_con_handle_t acl_handle){ 16693c65e705SMilanka Ringwald return hfp_hf_set_report_extended_audio_gateway_error_result_code(acl_handle, 1); 1670ce263fc8SMatthias Ringwald } 1671ce263fc8SMatthias Ringwald 16723c65e705SMilanka Ringwald uint8_t hfp_hf_disable_report_extended_audio_gateway_error_result_code(hci_con_handle_t acl_handle){ 16733c65e705SMilanka Ringwald return hfp_hf_set_report_extended_audio_gateway_error_result_code(acl_handle, 0); 1674ce263fc8SMatthias Ringwald } 1675ce263fc8SMatthias Ringwald 167638200c1dSMilanka Ringwald static uint8_t hfp_hf_esco_s4_supported(hfp_connection_t * hfp_connection){ 1677aeb0f0feSMatthias Ringwald return (hfp_connection->remote_supported_features & (1<<HFP_AGSF_ESCO_S4)) && (hfp_hf_supported_features & (1 << HFP_HFSF_ESCO_S4)); 167838200c1dSMilanka Ringwald } 1679ce263fc8SMatthias Ringwald 16803c65e705SMilanka Ringwald uint8_t hfp_hf_establish_audio_connection(hci_con_handle_t acl_handle){ 16819c9c64c1SMatthias Ringwald hfp_connection_t * hfp_connection = get_hfp_hf_connection_context_for_acl_handle(acl_handle); 1682a33eb0c4SMilanka Ringwald if (!hfp_connection) { 16833c65e705SMilanka Ringwald return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER; 1684a33eb0c4SMilanka Ringwald } 1685ce263fc8SMatthias Ringwald 16863c65e705SMilanka Ringwald if (hfp_connection->state == HFP_AUDIO_CONNECTION_ESTABLISHED){ 16873c65e705SMilanka Ringwald return ERROR_CODE_COMMAND_DISALLOWED; 16883c65e705SMilanka Ringwald } 16893c65e705SMilanka Ringwald 16903c65e705SMilanka Ringwald if (hfp_connection->state >= HFP_W2_DISCONNECT_SCO){ 16913c65e705SMilanka Ringwald return ERROR_CODE_COMMAND_DISALLOWED; 16923c65e705SMilanka Ringwald } 1693f4412093SMatthias Ringwald if (has_codec_negotiation_feature(hfp_connection)) { 1694a0ffb263SMatthias Ringwald switch (hfp_connection->codecs_state) { 1695aa4dd815SMatthias Ringwald case HFP_CODECS_W4_AG_COMMON_CODEC: 1696aa4dd815SMatthias Ringwald break; 1697ec3bfc1aSMatthias Ringwald case HFP_CODECS_EXCHANGED: 1698ec3bfc1aSMatthias Ringwald hfp_connection->trigger_codec_exchange = 1; 1699ec3bfc1aSMatthias Ringwald break; 1700aa4dd815SMatthias Ringwald default: 17011cc65c4fSMatthias Ringwald hfp_connection->codec_confirmed = 0; 17021cc65c4fSMatthias Ringwald hfp_connection->suggested_codec = 0; 17031cc65c4fSMatthias Ringwald hfp_connection->negotiated_codec = 0; 17041cc65c4fSMatthias Ringwald hfp_connection->codecs_state = HFP_CODECS_RECEIVED_TRIGGER_CODEC_EXCHANGE; 170538200c1dSMilanka Ringwald hfp_connection->trigger_codec_exchange = 1; 1706aa4dd815SMatthias Ringwald break; 17073deb3ec6SMatthias Ringwald } 1708f4412093SMatthias Ringwald } else { 1709f4412093SMatthias Ringwald log_info("no codec negotiation feature, use CVSD"); 1710f4412093SMatthias Ringwald hfp_connection->codecs_state = HFP_CODECS_EXCHANGED; 1711f4412093SMatthias Ringwald hfp_connection->suggested_codec = HFP_CODEC_CVSD; 1712f4412093SMatthias Ringwald hfp_connection->codec_confirmed = hfp_connection->suggested_codec; 1713f4412093SMatthias Ringwald hfp_connection->negotiated_codec = hfp_connection->suggested_codec; 1714f4412093SMatthias Ringwald hfp_init_link_settings(hfp_connection, hfp_hf_esco_s4_supported(hfp_connection)); 1715f4412093SMatthias Ringwald hfp_connection->establish_audio_connection = 1; 1716f4412093SMatthias Ringwald hfp_connection->state = HFP_W4_SCO_CONNECTED; 1717ce263fc8SMatthias Ringwald } 1718ce263fc8SMatthias Ringwald 17191c6a0fc0SMatthias Ringwald hfp_hf_run_for_context(hfp_connection); 17203c65e705SMilanka Ringwald return ERROR_CODE_SUCCESS; 17213deb3ec6SMatthias Ringwald } 17223deb3ec6SMatthias Ringwald 17233c65e705SMilanka Ringwald uint8_t hfp_hf_release_audio_connection(hci_con_handle_t acl_handle){ 17249c9c64c1SMatthias Ringwald hfp_connection_t * hfp_connection = get_hfp_hf_connection_context_for_acl_handle(acl_handle); 1725a33eb0c4SMilanka Ringwald if (!hfp_connection) { 17263c65e705SMilanka Ringwald return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER; 1727a33eb0c4SMilanka Ringwald } 17280b4debbfSMilanka Ringwald if (hfp_connection->vra_state == HFP_VRA_VOICE_RECOGNITION_ACTIVATED){ 17290b4debbfSMilanka Ringwald return ERROR_CODE_COMMAND_DISALLOWED; 17300b4debbfSMilanka Ringwald } 17310b4debbfSMilanka Ringwald uint8_t status = hfp_trigger_release_audio_connection(hfp_connection); 17320b4debbfSMilanka Ringwald if (status == ERROR_CODE_SUCCESS){ 17331c6a0fc0SMatthias Ringwald hfp_hf_run_for_context(hfp_connection); 17340b4debbfSMilanka Ringwald } 17353c65e705SMilanka Ringwald return ERROR_CODE_SUCCESS; 17363deb3ec6SMatthias Ringwald } 17373deb3ec6SMatthias Ringwald 17383c65e705SMilanka Ringwald uint8_t hfp_hf_answer_incoming_call(hci_con_handle_t acl_handle){ 17399c9c64c1SMatthias Ringwald hfp_connection_t * hfp_connection = get_hfp_hf_connection_context_for_acl_handle(acl_handle); 1740a33eb0c4SMilanka Ringwald if (!hfp_connection) { 17413c65e705SMilanka Ringwald return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER; 1742a33eb0c4SMilanka Ringwald } 1743ce263fc8SMatthias Ringwald 1744aeb0f0feSMatthias Ringwald if (hfp_hf_callsetup_status == HFP_CALLSETUP_STATUS_INCOMING_CALL_SETUP_IN_PROGRESS){ 1745a0ffb263SMatthias Ringwald hfp_connection->hf_answer_incoming_call = 1; 17461c6a0fc0SMatthias Ringwald hfp_hf_run_for_context(hfp_connection); 1747ce263fc8SMatthias Ringwald } else { 1748aeb0f0feSMatthias Ringwald log_error("HFP HF: answering incoming call with wrong callsetup status %u", hfp_hf_callsetup_status); 17493c65e705SMilanka Ringwald return ERROR_CODE_COMMAND_DISALLOWED; 1750ce263fc8SMatthias Ringwald } 17513c65e705SMilanka Ringwald return ERROR_CODE_SUCCESS; 1752ce263fc8SMatthias Ringwald } 1753ce263fc8SMatthias Ringwald 17543c65e705SMilanka Ringwald uint8_t hfp_hf_terminate_call(hci_con_handle_t acl_handle){ 17559c9c64c1SMatthias Ringwald hfp_connection_t * hfp_connection = get_hfp_hf_connection_context_for_acl_handle(acl_handle); 1756a33eb0c4SMilanka Ringwald if (!hfp_connection) { 17573c65e705SMilanka Ringwald return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER; 1758a33eb0c4SMilanka Ringwald } 1759a0ffb263SMatthias Ringwald hfp_connection->hf_send_chup = 1; 17601c6a0fc0SMatthias Ringwald hfp_hf_run_for_context(hfp_connection); 17613c65e705SMilanka Ringwald return ERROR_CODE_SUCCESS; 1762ce263fc8SMatthias Ringwald } 1763ce263fc8SMatthias Ringwald 17643c65e705SMilanka Ringwald uint8_t hfp_hf_reject_incoming_call(hci_con_handle_t acl_handle){ 17659c9c64c1SMatthias Ringwald hfp_connection_t * hfp_connection = get_hfp_hf_connection_context_for_acl_handle(acl_handle); 1766a33eb0c4SMilanka Ringwald if (!hfp_connection) { 17673c65e705SMilanka Ringwald return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER; 1768a33eb0c4SMilanka Ringwald } 1769ce263fc8SMatthias Ringwald 1770aeb0f0feSMatthias Ringwald if (hfp_hf_callsetup_status == HFP_CALLSETUP_STATUS_INCOMING_CALL_SETUP_IN_PROGRESS){ 1771a0ffb263SMatthias Ringwald hfp_connection->hf_send_chup = 1; 17721c6a0fc0SMatthias Ringwald hfp_hf_run_for_context(hfp_connection); 1773ce263fc8SMatthias Ringwald } 17743c65e705SMilanka Ringwald return ERROR_CODE_SUCCESS; 1775ce263fc8SMatthias Ringwald } 1776ce263fc8SMatthias Ringwald 17773c65e705SMilanka Ringwald uint8_t hfp_hf_user_busy(hci_con_handle_t acl_handle){ 17789c9c64c1SMatthias Ringwald hfp_connection_t * hfp_connection = get_hfp_hf_connection_context_for_acl_handle(acl_handle); 1779a33eb0c4SMilanka Ringwald if (!hfp_connection) { 17803c65e705SMilanka Ringwald return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER; 1781a33eb0c4SMilanka Ringwald } 1782ce263fc8SMatthias Ringwald 1783aeb0f0feSMatthias Ringwald if (hfp_hf_callsetup_status == HFP_CALLSETUP_STATUS_INCOMING_CALL_SETUP_IN_PROGRESS){ 1784a0ffb263SMatthias Ringwald hfp_connection->hf_send_chld_0 = 1; 17851c6a0fc0SMatthias Ringwald hfp_hf_run_for_context(hfp_connection); 1786ce263fc8SMatthias Ringwald } 17873c65e705SMilanka Ringwald return ERROR_CODE_SUCCESS; 1788ce263fc8SMatthias Ringwald } 1789ce263fc8SMatthias Ringwald 17902be52304SMatthias Ringwald uint8_t hfp_hf_terminate_held_calls(hci_con_handle_t acl_handle){ 17912be52304SMatthias Ringwald hfp_connection_t * hfp_connection = get_hfp_hf_connection_context_for_acl_handle(acl_handle); 17922be52304SMatthias Ringwald if (!hfp_connection) { 17932be52304SMatthias Ringwald return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER; 17942be52304SMatthias Ringwald } 17952be52304SMatthias Ringwald 17962be52304SMatthias Ringwald hfp_connection->hf_send_chld_0 = 1; 17972be52304SMatthias Ringwald hfp_hf_run_for_context(hfp_connection); 17982be52304SMatthias Ringwald 17992be52304SMatthias Ringwald return ERROR_CODE_SUCCESS; 18002be52304SMatthias Ringwald } 18012be52304SMatthias Ringwald 18023c65e705SMilanka Ringwald uint8_t hfp_hf_end_active_and_accept_other(hci_con_handle_t acl_handle){ 18039c9c64c1SMatthias Ringwald hfp_connection_t * hfp_connection = get_hfp_hf_connection_context_for_acl_handle(acl_handle); 1804a33eb0c4SMilanka Ringwald if (!hfp_connection) { 18053c65e705SMilanka Ringwald return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER; 1806a33eb0c4SMilanka Ringwald } 1807ce263fc8SMatthias Ringwald 1808aeb0f0feSMatthias Ringwald if ((hfp_hf_callsetup_status == HFP_CALLSETUP_STATUS_INCOMING_CALL_SETUP_IN_PROGRESS) || 1809aeb0f0feSMatthias Ringwald (hfp_hf_call_status == HFP_CALL_STATUS_ACTIVE_OR_HELD_CALL_IS_PRESENT)){ 1810a0ffb263SMatthias Ringwald hfp_connection->hf_send_chld_1 = 1; 18111c6a0fc0SMatthias Ringwald hfp_hf_run_for_context(hfp_connection); 1812ce263fc8SMatthias Ringwald } 18133c65e705SMilanka Ringwald return ERROR_CODE_SUCCESS; 1814ce263fc8SMatthias Ringwald } 1815ce263fc8SMatthias Ringwald 18163c65e705SMilanka Ringwald uint8_t hfp_hf_swap_calls(hci_con_handle_t acl_handle){ 18179c9c64c1SMatthias Ringwald hfp_connection_t * hfp_connection = get_hfp_hf_connection_context_for_acl_handle(acl_handle); 1818a33eb0c4SMilanka Ringwald if (!hfp_connection) { 18193c65e705SMilanka Ringwald return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER; 1820a33eb0c4SMilanka Ringwald } 1821ce263fc8SMatthias Ringwald 1822aeb0f0feSMatthias Ringwald if ((hfp_hf_callsetup_status == HFP_CALLSETUP_STATUS_INCOMING_CALL_SETUP_IN_PROGRESS) || 1823aeb0f0feSMatthias Ringwald (hfp_hf_call_status == HFP_CALL_STATUS_ACTIVE_OR_HELD_CALL_IS_PRESENT)){ 1824a0ffb263SMatthias Ringwald hfp_connection->hf_send_chld_2 = 1; 18251c6a0fc0SMatthias Ringwald hfp_hf_run_for_context(hfp_connection); 1826ce263fc8SMatthias Ringwald } 18273c65e705SMilanka Ringwald return ERROR_CODE_SUCCESS; 1828ce263fc8SMatthias Ringwald } 1829ce263fc8SMatthias Ringwald 18303c65e705SMilanka Ringwald uint8_t hfp_hf_join_held_call(hci_con_handle_t acl_handle){ 18319c9c64c1SMatthias Ringwald hfp_connection_t * hfp_connection = get_hfp_hf_connection_context_for_acl_handle(acl_handle); 1832a33eb0c4SMilanka Ringwald if (!hfp_connection) { 18333c65e705SMilanka Ringwald return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER; 1834a33eb0c4SMilanka Ringwald } 1835ce263fc8SMatthias Ringwald 1836aeb0f0feSMatthias Ringwald if ((hfp_hf_callsetup_status == HFP_CALLSETUP_STATUS_INCOMING_CALL_SETUP_IN_PROGRESS) || 1837aeb0f0feSMatthias Ringwald (hfp_hf_call_status == HFP_CALL_STATUS_ACTIVE_OR_HELD_CALL_IS_PRESENT)){ 1838a0ffb263SMatthias Ringwald hfp_connection->hf_send_chld_3 = 1; 18391c6a0fc0SMatthias Ringwald hfp_hf_run_for_context(hfp_connection); 1840ce263fc8SMatthias Ringwald } 18413c65e705SMilanka Ringwald return ERROR_CODE_SUCCESS; 1842ce263fc8SMatthias Ringwald } 1843ce263fc8SMatthias Ringwald 18443c65e705SMilanka Ringwald uint8_t hfp_hf_connect_calls(hci_con_handle_t acl_handle){ 18459c9c64c1SMatthias Ringwald hfp_connection_t * hfp_connection = get_hfp_hf_connection_context_for_acl_handle(acl_handle); 1846a33eb0c4SMilanka Ringwald if (!hfp_connection) { 18473c65e705SMilanka Ringwald return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER; 1848a33eb0c4SMilanka Ringwald } 1849ce263fc8SMatthias Ringwald 1850aeb0f0feSMatthias Ringwald if ((hfp_hf_callsetup_status == HFP_CALLSETUP_STATUS_INCOMING_CALL_SETUP_IN_PROGRESS) || 1851aeb0f0feSMatthias Ringwald (hfp_hf_call_status == HFP_CALL_STATUS_ACTIVE_OR_HELD_CALL_IS_PRESENT)){ 1852a0ffb263SMatthias Ringwald hfp_connection->hf_send_chld_4 = 1; 18531c6a0fc0SMatthias Ringwald hfp_hf_run_for_context(hfp_connection); 1854ce263fc8SMatthias Ringwald } 18553c65e705SMilanka Ringwald return ERROR_CODE_SUCCESS; 1856ce263fc8SMatthias Ringwald } 1857ce263fc8SMatthias Ringwald 18583c65e705SMilanka Ringwald uint8_t hfp_hf_release_call_with_index(hci_con_handle_t acl_handle, int index){ 18599c9c64c1SMatthias Ringwald hfp_connection_t * hfp_connection = get_hfp_hf_connection_context_for_acl_handle(acl_handle); 1860a33eb0c4SMilanka Ringwald if (!hfp_connection) { 18613c65e705SMilanka Ringwald return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER; 1862a33eb0c4SMilanka Ringwald } 1863667ec068SMatthias Ringwald 1864aeb0f0feSMatthias Ringwald if ((hfp_hf_callsetup_status == HFP_CALLSETUP_STATUS_INCOMING_CALL_SETUP_IN_PROGRESS) || 1865aeb0f0feSMatthias Ringwald (hfp_hf_call_status == HFP_CALL_STATUS_ACTIVE_OR_HELD_CALL_IS_PRESENT)){ 1866a0ffb263SMatthias Ringwald hfp_connection->hf_send_chld_x = 1; 1867a0ffb263SMatthias Ringwald hfp_connection->hf_send_chld_x_index = 10 + index; 18681c6a0fc0SMatthias Ringwald hfp_hf_run_for_context(hfp_connection); 1869667ec068SMatthias Ringwald } 18703c65e705SMilanka Ringwald return ERROR_CODE_SUCCESS; 1871667ec068SMatthias Ringwald } 1872667ec068SMatthias Ringwald 18733c65e705SMilanka Ringwald uint8_t hfp_hf_private_consultation_with_call(hci_con_handle_t acl_handle, int index){ 18749c9c64c1SMatthias Ringwald hfp_connection_t * hfp_connection = get_hfp_hf_connection_context_for_acl_handle(acl_handle); 1875a33eb0c4SMilanka Ringwald if (!hfp_connection) { 18763c65e705SMilanka Ringwald return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER; 1877a33eb0c4SMilanka Ringwald } 1878667ec068SMatthias Ringwald 1879aeb0f0feSMatthias Ringwald if ((hfp_hf_callsetup_status == HFP_CALLSETUP_STATUS_INCOMING_CALL_SETUP_IN_PROGRESS) || 1880aeb0f0feSMatthias Ringwald (hfp_hf_call_status == HFP_CALL_STATUS_ACTIVE_OR_HELD_CALL_IS_PRESENT)){ 1881a0ffb263SMatthias Ringwald hfp_connection->hf_send_chld_x = 1; 1882a0ffb263SMatthias Ringwald hfp_connection->hf_send_chld_x_index = 20 + index; 18831c6a0fc0SMatthias Ringwald hfp_hf_run_for_context(hfp_connection); 1884667ec068SMatthias Ringwald } 18853c65e705SMilanka Ringwald return ERROR_CODE_SUCCESS; 1886667ec068SMatthias Ringwald } 1887ce263fc8SMatthias Ringwald 18883c65e705SMilanka Ringwald uint8_t hfp_hf_dial_number(hci_con_handle_t acl_handle, char * number){ 18899c9c64c1SMatthias Ringwald hfp_connection_t * hfp_connection = get_hfp_hf_connection_context_for_acl_handle(acl_handle); 1890a33eb0c4SMilanka Ringwald if (!hfp_connection) { 18913c65e705SMilanka Ringwald return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER; 1892a33eb0c4SMilanka Ringwald } 1893ce263fc8SMatthias Ringwald 1894a0ffb263SMatthias Ringwald hfp_connection->hf_initiate_outgoing_call = 1; 1895aeb0f0feSMatthias Ringwald snprintf(hfp_hf_phone_number, sizeof(hfp_hf_phone_number), "%s", number); 18961c6a0fc0SMatthias Ringwald hfp_hf_run_for_context(hfp_connection); 18973c65e705SMilanka Ringwald return ERROR_CODE_SUCCESS; 1898ce263fc8SMatthias Ringwald } 1899ce263fc8SMatthias Ringwald 19003c65e705SMilanka Ringwald uint8_t hfp_hf_dial_memory(hci_con_handle_t acl_handle, int memory_id){ 19019c9c64c1SMatthias Ringwald hfp_connection_t * hfp_connection = get_hfp_hf_connection_context_for_acl_handle(acl_handle); 1902a33eb0c4SMilanka Ringwald if (!hfp_connection) { 19033c65e705SMilanka Ringwald return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER; 1904a33eb0c4SMilanka Ringwald } 1905ce263fc8SMatthias Ringwald 1906a0ffb263SMatthias Ringwald hfp_connection->hf_initiate_memory_dialing = 1; 1907a0ffb263SMatthias Ringwald hfp_connection->memory_id = memory_id; 1908a0ffb263SMatthias Ringwald 19091c6a0fc0SMatthias Ringwald hfp_hf_run_for_context(hfp_connection); 19103c65e705SMilanka Ringwald return ERROR_CODE_SUCCESS; 1911ce263fc8SMatthias Ringwald } 1912ce263fc8SMatthias Ringwald 19133c65e705SMilanka Ringwald uint8_t hfp_hf_redial_last_number(hci_con_handle_t acl_handle){ 19149c9c64c1SMatthias Ringwald hfp_connection_t * hfp_connection = get_hfp_hf_connection_context_for_acl_handle(acl_handle); 1915a33eb0c4SMilanka Ringwald if (!hfp_connection) { 19163c65e705SMilanka Ringwald return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER; 1917a33eb0c4SMilanka Ringwald } 1918ce263fc8SMatthias Ringwald 1919a0ffb263SMatthias Ringwald hfp_connection->hf_initiate_redial_last_number = 1; 19201c6a0fc0SMatthias Ringwald hfp_hf_run_for_context(hfp_connection); 19213c65e705SMilanka Ringwald return ERROR_CODE_SUCCESS; 1922ce263fc8SMatthias Ringwald } 1923ce263fc8SMatthias Ringwald 19243c65e705SMilanka Ringwald uint8_t hfp_hf_activate_call_waiting_notification(hci_con_handle_t acl_handle){ 19259c9c64c1SMatthias Ringwald hfp_connection_t * hfp_connection = get_hfp_hf_connection_context_for_acl_handle(acl_handle); 1926a33eb0c4SMilanka Ringwald if (!hfp_connection) { 19273c65e705SMilanka Ringwald return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER; 1928a33eb0c4SMilanka Ringwald } 1929ce263fc8SMatthias Ringwald 1930a0ffb263SMatthias Ringwald hfp_connection->hf_activate_call_waiting_notification = 1; 19311c6a0fc0SMatthias Ringwald hfp_hf_run_for_context(hfp_connection); 19323c65e705SMilanka Ringwald return ERROR_CODE_SUCCESS; 1933ce263fc8SMatthias Ringwald } 1934ce263fc8SMatthias Ringwald 1935ce263fc8SMatthias Ringwald 19363c65e705SMilanka Ringwald uint8_t hfp_hf_deactivate_call_waiting_notification(hci_con_handle_t acl_handle){ 19379c9c64c1SMatthias Ringwald hfp_connection_t * hfp_connection = get_hfp_hf_connection_context_for_acl_handle(acl_handle); 1938a33eb0c4SMilanka Ringwald if (!hfp_connection) { 19393c65e705SMilanka Ringwald return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER; 1940a33eb0c4SMilanka Ringwald } 1941ce263fc8SMatthias Ringwald 1942a0ffb263SMatthias Ringwald hfp_connection->hf_deactivate_call_waiting_notification = 1; 19431c6a0fc0SMatthias Ringwald hfp_hf_run_for_context(hfp_connection); 19443c65e705SMilanka Ringwald return ERROR_CODE_SUCCESS; 1945ce263fc8SMatthias Ringwald } 1946ce263fc8SMatthias Ringwald 1947ce263fc8SMatthias Ringwald 19483c65e705SMilanka Ringwald uint8_t hfp_hf_activate_calling_line_notification(hci_con_handle_t acl_handle){ 19499c9c64c1SMatthias Ringwald hfp_connection_t * hfp_connection = get_hfp_hf_connection_context_for_acl_handle(acl_handle); 1950a33eb0c4SMilanka Ringwald if (!hfp_connection) { 19513c65e705SMilanka Ringwald return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER; 1952a33eb0c4SMilanka Ringwald } 1953ce263fc8SMatthias Ringwald 1954a0ffb263SMatthias Ringwald hfp_connection->hf_activate_calling_line_notification = 1; 19551c6a0fc0SMatthias Ringwald hfp_hf_run_for_context(hfp_connection); 19563c65e705SMilanka Ringwald return ERROR_CODE_SUCCESS; 1957ce263fc8SMatthias Ringwald } 1958ce263fc8SMatthias Ringwald 19593c65e705SMilanka Ringwald uint8_t hfp_hf_deactivate_calling_line_notification(hci_con_handle_t acl_handle){ 19609c9c64c1SMatthias Ringwald hfp_connection_t * hfp_connection = get_hfp_hf_connection_context_for_acl_handle(acl_handle); 1961a33eb0c4SMilanka Ringwald if (!hfp_connection) { 19623c65e705SMilanka Ringwald return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER; 1963a33eb0c4SMilanka Ringwald } 1964ce263fc8SMatthias Ringwald 1965a0ffb263SMatthias Ringwald hfp_connection->hf_deactivate_calling_line_notification = 1; 19661c6a0fc0SMatthias Ringwald hfp_hf_run_for_context(hfp_connection); 19673c65e705SMilanka Ringwald return ERROR_CODE_SUCCESS; 1968ce263fc8SMatthias Ringwald } 1969ce263fc8SMatthias Ringwald 19706ba83b5eSMilanka Ringwald static bool hfp_hf_echo_canceling_and_noise_reduction_supported(hfp_connection_t * hfp_connection){ 19716ba83b5eSMilanka Ringwald int ag = get_bit(hfp_connection->remote_supported_features, HFP_AGSF_EC_NR_FUNCTION); 1972aeb0f0feSMatthias Ringwald int hf = get_bit(hfp_hf_supported_features, HFP_HFSF_EC_NR_FUNCTION); 19736ba83b5eSMilanka Ringwald return hf && ag; 1974ce263fc8SMatthias Ringwald } 1975ce263fc8SMatthias Ringwald 19763c65e705SMilanka Ringwald uint8_t hfp_hf_deactivate_echo_canceling_and_noise_reduction(hci_con_handle_t acl_handle){ 19779c9c64c1SMatthias Ringwald hfp_connection_t * hfp_connection = get_hfp_hf_connection_context_for_acl_handle(acl_handle); 1978a33eb0c4SMilanka Ringwald if (!hfp_connection) { 19793c65e705SMilanka Ringwald return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER; 1980a33eb0c4SMilanka Ringwald } 19816ba83b5eSMilanka Ringwald if (!hfp_hf_echo_canceling_and_noise_reduction_supported(hfp_connection)){ 19826ba83b5eSMilanka Ringwald return ERROR_CODE_COMMAND_DISALLOWED; 19836ba83b5eSMilanka Ringwald } 1984ce263fc8SMatthias Ringwald 1985a0ffb263SMatthias Ringwald hfp_connection->hf_deactivate_echo_canceling_and_noise_reduction = 1; 19861c6a0fc0SMatthias Ringwald hfp_hf_run_for_context(hfp_connection); 19873c65e705SMilanka Ringwald return ERROR_CODE_SUCCESS; 1988ce263fc8SMatthias Ringwald } 1989ce263fc8SMatthias Ringwald 1990acd11d4aSMilanka Ringwald uint8_t hfp_hf_activate_voice_recognition(hci_con_handle_t acl_handle){ 1991fdda66c0SMilanka Ringwald hfp_connection_t * hfp_connection = get_hfp_hf_connection_context_for_acl_handle(acl_handle); 1992fdda66c0SMilanka Ringwald if (!hfp_connection) { 1993fdda66c0SMilanka Ringwald return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER; 1994be55a11dSMilanka Ringwald } 1995013cc750SMilanka Ringwald if (hfp_connection->state < HFP_SERVICE_LEVEL_CONNECTION_ESTABLISHED || hfp_connection->state > HFP_AUDIO_CONNECTION_ESTABLISHED){ 1996013cc750SMilanka Ringwald return ERROR_CODE_COMMAND_DISALLOWED; 1997013cc750SMilanka Ringwald } 1998acd11d4aSMilanka Ringwald 1999acd11d4aSMilanka Ringwald bool enhanced_vra_supported = hfp_hf_enhanced_vra_flag_supported(hfp_connection); 2000acd11d4aSMilanka Ringwald bool legacy_vra_supported = hfp_hf_vra_flag_supported(hfp_connection); 2001acd11d4aSMilanka Ringwald if (!enhanced_vra_supported && !legacy_vra_supported){ 2002acd11d4aSMilanka Ringwald return ERROR_CODE_UNSUPPORTED_FEATURE_OR_PARAMETER_VALUE; 2003af97579eSMilanka Ringwald } 2004af97579eSMilanka Ringwald 2005498a8121SMilanka Ringwald switch (hfp_connection->vra_state){ 2006be55a11dSMilanka Ringwald case HFP_VRA_VOICE_RECOGNITION_OFF: 2007de9e0ea7SMilanka Ringwald case HFP_VRA_W2_SEND_VOICE_RECOGNITION_OFF: 2008fd4151d1SMilanka Ringwald hfp_connection->vra_state_requested = HFP_VRA_W2_SEND_VOICE_RECOGNITION_ACTIVATED; 2009acd11d4aSMilanka Ringwald hfp_connection->enhanced_voice_recognition_enabled = enhanced_vra_supported; 2010be55a11dSMilanka Ringwald break; 2011de9e0ea7SMilanka Ringwald case HFP_VRA_W4_VOICE_RECOGNITION_OFF: 2012de9e0ea7SMilanka Ringwald hfp_connection->activate_voice_recognition = true; 2013de9e0ea7SMilanka Ringwald break; 2014be55a11dSMilanka Ringwald default: 2015be55a11dSMilanka Ringwald return ERROR_CODE_COMMAND_DISALLOWED; 2016be55a11dSMilanka Ringwald } 2017ce263fc8SMatthias Ringwald 2018af97579eSMilanka Ringwald hfp_hf_run_for_context(hfp_connection); 2019fdda66c0SMilanka Ringwald return ERROR_CODE_SUCCESS; 2020af97579eSMilanka Ringwald } 2021af97579eSMilanka Ringwald 2022acd11d4aSMilanka Ringwald uint8_t hfp_hf_enhanced_voice_recognition_report_ready_for_audio(hci_con_handle_t acl_handle){ 2023af97579eSMilanka Ringwald hfp_connection_t * hfp_connection = get_hfp_hf_connection_context_for_acl_handle(acl_handle); 2024af97579eSMilanka Ringwald if (!hfp_connection) { 2025af97579eSMilanka Ringwald return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER; 2026af97579eSMilanka Ringwald } 202784fb9ac1SMilanka Ringwald 202884fb9ac1SMilanka Ringwald if (hfp_connection->emit_vra_enabled_after_audio_established){ 202984fb9ac1SMilanka Ringwald return ERROR_CODE_COMMAND_DISALLOWED; 203084fb9ac1SMilanka Ringwald } 203184fb9ac1SMilanka Ringwald 2032acd11d4aSMilanka Ringwald if (hfp_connection->state != HFP_AUDIO_CONNECTION_ESTABLISHED){ 203308a0b01cSMilanka Ringwald return ERROR_CODE_COMMAND_DISALLOWED; 203408a0b01cSMilanka Ringwald } 2035acd11d4aSMilanka Ringwald 2036acd11d4aSMilanka Ringwald bool enhanced_vra_supported = hfp_hf_enhanced_vra_flag_supported(hfp_connection); 2037acd11d4aSMilanka Ringwald if (!enhanced_vra_supported){ 2038acd11d4aSMilanka Ringwald return ERROR_CODE_UNSUPPORTED_FEATURE_OR_PARAMETER_VALUE; 2039acd11d4aSMilanka Ringwald } 2040acd11d4aSMilanka Ringwald 2041acd11d4aSMilanka Ringwald switch (hfp_connection->vra_state){ 2042acd11d4aSMilanka Ringwald case HFP_VRA_VOICE_RECOGNITION_ACTIVATED: 2043acd11d4aSMilanka Ringwald case HFP_VRA_ENHANCED_VOICE_RECOGNITION_READY_FOR_AUDIO: 2044acd11d4aSMilanka Ringwald hfp_connection->vra_state_requested = HFP_VRA_W2_SEND_ENHANCED_VOICE_RECOGNITION_READY_FOR_AUDIO; 2045acd11d4aSMilanka Ringwald break; 2046acd11d4aSMilanka Ringwald default: 2047fdda66c0SMilanka Ringwald return ERROR_CODE_COMMAND_DISALLOWED; 2048af97579eSMilanka Ringwald } 2049013cc750SMilanka Ringwald 2050acd11d4aSMilanka Ringwald hfp_hf_run_for_context(hfp_connection); 2051acd11d4aSMilanka Ringwald return ERROR_CODE_SUCCESS; 2052acd11d4aSMilanka Ringwald } 2053acd11d4aSMilanka Ringwald 2054acd11d4aSMilanka Ringwald 2055acd11d4aSMilanka Ringwald uint8_t hfp_hf_deactivate_voice_recognition(hci_con_handle_t acl_handle){ 2056acd11d4aSMilanka Ringwald // return deactivate_voice_recognition(acl_handle, false); 2057acd11d4aSMilanka Ringwald hfp_connection_t * hfp_connection = get_hfp_hf_connection_context_for_acl_handle(acl_handle); 2058acd11d4aSMilanka Ringwald if (!hfp_connection) { 2059acd11d4aSMilanka Ringwald return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER; 2060acd11d4aSMilanka Ringwald } 2061acd11d4aSMilanka Ringwald 206284fb9ac1SMilanka Ringwald if (hfp_connection->emit_vra_enabled_after_audio_established){ 206384fb9ac1SMilanka Ringwald return ERROR_CODE_COMMAND_DISALLOWED; 206484fb9ac1SMilanka Ringwald } 206584fb9ac1SMilanka Ringwald 2066acd11d4aSMilanka Ringwald if (hfp_connection->state < HFP_SERVICE_LEVEL_CONNECTION_ESTABLISHED || 2067acd11d4aSMilanka Ringwald hfp_connection->state > HFP_AUDIO_CONNECTION_ESTABLISHED){ 2068acd11d4aSMilanka Ringwald return ERROR_CODE_COMMAND_DISALLOWED; 2069acd11d4aSMilanka Ringwald } 2070acd11d4aSMilanka Ringwald 2071acd11d4aSMilanka Ringwald bool enhanced_vra_supported = hfp_hf_enhanced_vra_flag_supported(hfp_connection); 2072acd11d4aSMilanka Ringwald bool legacy_vra_supported = hfp_hf_vra_flag_supported(hfp_connection); 2073acd11d4aSMilanka Ringwald if (!enhanced_vra_supported && !legacy_vra_supported){ 2074acd11d4aSMilanka Ringwald return ERROR_CODE_UNSUPPORTED_FEATURE_OR_PARAMETER_VALUE; 2075acd11d4aSMilanka Ringwald } 2076acd11d4aSMilanka Ringwald 2077fdda66c0SMilanka Ringwald switch (hfp_connection->vra_state){ 2078de9e0ea7SMilanka Ringwald case HFP_VRA_W2_SEND_VOICE_RECOGNITION_ACTIVATED: 2079fdda66c0SMilanka Ringwald case HFP_VRA_VOICE_RECOGNITION_ACTIVATED: 2080de9e0ea7SMilanka Ringwald case HFP_VRA_W2_SEND_ENHANCED_VOICE_RECOGNITION_READY_FOR_AUDIO: 2081de9e0ea7SMilanka Ringwald case HFP_VRA_ENHANCED_VOICE_RECOGNITION_READY_FOR_AUDIO: 2082fdda66c0SMilanka Ringwald hfp_connection->vra_state_requested = HFP_VRA_W2_SEND_VOICE_RECOGNITION_OFF; 2083fdda66c0SMilanka Ringwald break; 2084de9e0ea7SMilanka Ringwald 2085de9e0ea7SMilanka Ringwald case HFP_VRA_W4_VOICE_RECOGNITION_ACTIVATED: 2086de9e0ea7SMilanka Ringwald case HFP_VRA_W4_ENHANCED_VOICE_RECOGNITION_READY_FOR_AUDIO: 2087de9e0ea7SMilanka Ringwald hfp_connection->deactivate_voice_recognition = true; 2088de9e0ea7SMilanka Ringwald break; 2089de9e0ea7SMilanka Ringwald 2090de9e0ea7SMilanka Ringwald case HFP_VRA_VOICE_RECOGNITION_OFF: 2091de9e0ea7SMilanka Ringwald case HFP_VRA_W2_SEND_VOICE_RECOGNITION_OFF: 2092de9e0ea7SMilanka Ringwald case HFP_VRA_W4_VOICE_RECOGNITION_OFF: 2093fdda66c0SMilanka Ringwald default: 2094fdda66c0SMilanka Ringwald return ERROR_CODE_COMMAND_DISALLOWED; 2095fdda66c0SMilanka Ringwald } 2096fdda66c0SMilanka Ringwald 2097fdda66c0SMilanka Ringwald hfp_hf_run_for_context(hfp_connection); 2098fdda66c0SMilanka Ringwald return ERROR_CODE_SUCCESS; 2099af97579eSMilanka Ringwald } 2100af97579eSMilanka Ringwald 21013c65e705SMilanka Ringwald uint8_t hfp_hf_set_microphone_gain(hci_con_handle_t acl_handle, int gain){ 21029c9c64c1SMatthias Ringwald hfp_connection_t * hfp_connection = get_hfp_hf_connection_context_for_acl_handle(acl_handle); 2103a33eb0c4SMilanka Ringwald if (!hfp_connection) { 21043c65e705SMilanka Ringwald return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER; 2105a33eb0c4SMilanka Ringwald } 2106c8626498SMilanka Ringwald 21073c65e705SMilanka Ringwald if (hfp_connection->microphone_gain == gain) { 21083c65e705SMilanka Ringwald return ERROR_CODE_SUCCESS; 21093c65e705SMilanka Ringwald } 21103c65e705SMilanka Ringwald 2111c1ab6cc1SMatthias Ringwald if ((gain < 0) || (gain > 15)){ 2112a0ffb263SMatthias Ringwald log_info("Valid range for a gain is [0..15]. Currently sent: %d", gain); 21133c65e705SMilanka Ringwald return ERROR_CODE_COMMAND_DISALLOWED; 2114a0ffb263SMatthias Ringwald } 21153c65e705SMilanka Ringwald 2116a0ffb263SMatthias Ringwald hfp_connection->microphone_gain = gain; 2117a0ffb263SMatthias Ringwald hfp_connection->send_microphone_gain = 1; 21181c6a0fc0SMatthias Ringwald hfp_hf_run_for_context(hfp_connection); 21193c65e705SMilanka Ringwald return ERROR_CODE_SUCCESS; 2120ce263fc8SMatthias Ringwald } 2121ce263fc8SMatthias Ringwald 21223c65e705SMilanka Ringwald uint8_t hfp_hf_set_speaker_gain(hci_con_handle_t acl_handle, int gain){ 21239c9c64c1SMatthias Ringwald hfp_connection_t * hfp_connection = get_hfp_hf_connection_context_for_acl_handle(acl_handle); 2124a33eb0c4SMilanka Ringwald if (!hfp_connection) { 21253c65e705SMilanka Ringwald return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER; 2126a33eb0c4SMilanka Ringwald } 2127c8626498SMilanka Ringwald 21283c65e705SMilanka Ringwald if (hfp_connection->speaker_gain == gain){ 21293c65e705SMilanka Ringwald return ERROR_CODE_SUCCESS; 21303c65e705SMilanka Ringwald } 21313c65e705SMilanka Ringwald 2132c1ab6cc1SMatthias Ringwald if ((gain < 0) || (gain > 15)){ 2133a0ffb263SMatthias Ringwald log_info("Valid range for a gain is [0..15]. Currently sent: %d", gain); 21343c65e705SMilanka Ringwald return ERROR_CODE_COMMAND_DISALLOWED; 2135a0ffb263SMatthias Ringwald } 21363c65e705SMilanka Ringwald 2137a0ffb263SMatthias Ringwald hfp_connection->speaker_gain = gain; 2138a0ffb263SMatthias Ringwald hfp_connection->send_speaker_gain = 1; 21391c6a0fc0SMatthias Ringwald hfp_hf_run_for_context(hfp_connection); 21403c65e705SMilanka Ringwald return ERROR_CODE_SUCCESS; 2141ce263fc8SMatthias Ringwald } 2142ce263fc8SMatthias Ringwald 21433c65e705SMilanka Ringwald uint8_t hfp_hf_send_dtmf_code(hci_con_handle_t acl_handle, char code){ 21449c9c64c1SMatthias Ringwald hfp_connection_t * hfp_connection = get_hfp_hf_connection_context_for_acl_handle(acl_handle); 2145a33eb0c4SMilanka Ringwald if (!hfp_connection) { 21463c65e705SMilanka Ringwald return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER; 2147a33eb0c4SMilanka Ringwald } 2148a0ffb263SMatthias Ringwald hfp_connection->hf_send_dtmf_code = code; 21491c6a0fc0SMatthias Ringwald hfp_hf_run_for_context(hfp_connection); 21503c65e705SMilanka Ringwald return ERROR_CODE_SUCCESS; 2151ce263fc8SMatthias Ringwald } 2152ce263fc8SMatthias Ringwald 21533c65e705SMilanka Ringwald uint8_t hfp_hf_request_phone_number_for_voice_tag(hci_con_handle_t acl_handle){ 21549c9c64c1SMatthias Ringwald hfp_connection_t * hfp_connection = get_hfp_hf_connection_context_for_acl_handle(acl_handle); 2155a33eb0c4SMilanka Ringwald if (!hfp_connection) { 21563c65e705SMilanka Ringwald return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER; 2157a33eb0c4SMilanka Ringwald } 2158a0ffb263SMatthias Ringwald hfp_connection->hf_send_binp = 1; 21591c6a0fc0SMatthias Ringwald hfp_hf_run_for_context(hfp_connection); 21603c65e705SMilanka Ringwald return ERROR_CODE_SUCCESS; 2161ce263fc8SMatthias Ringwald } 21623deb3ec6SMatthias Ringwald 21633c65e705SMilanka Ringwald uint8_t hfp_hf_query_current_call_status(hci_con_handle_t acl_handle){ 21649c9c64c1SMatthias Ringwald hfp_connection_t * hfp_connection = get_hfp_hf_connection_context_for_acl_handle(acl_handle); 2165a33eb0c4SMilanka Ringwald if (!hfp_connection) { 21663c65e705SMilanka Ringwald return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER; 2167a33eb0c4SMilanka Ringwald } 2168a0ffb263SMatthias Ringwald hfp_connection->hf_send_clcc = 1; 21691c6a0fc0SMatthias Ringwald hfp_hf_run_for_context(hfp_connection); 21703c65e705SMilanka Ringwald return ERROR_CODE_SUCCESS; 2171667ec068SMatthias Ringwald } 2172667ec068SMatthias Ringwald 2173667ec068SMatthias Ringwald 21743c65e705SMilanka Ringwald uint8_t hfp_hf_rrh_query_status(hci_con_handle_t acl_handle){ 21759c9c64c1SMatthias Ringwald hfp_connection_t * hfp_connection = get_hfp_hf_connection_context_for_acl_handle(acl_handle); 2176a33eb0c4SMilanka Ringwald if (!hfp_connection) { 21773c65e705SMilanka Ringwald return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER; 2178a33eb0c4SMilanka Ringwald } 2179a0ffb263SMatthias Ringwald hfp_connection->hf_send_rrh = 1; 2180a0ffb263SMatthias Ringwald hfp_connection->hf_send_rrh_command = '?'; 21811c6a0fc0SMatthias Ringwald hfp_hf_run_for_context(hfp_connection); 21823c65e705SMilanka Ringwald return ERROR_CODE_SUCCESS; 2183667ec068SMatthias Ringwald } 2184667ec068SMatthias Ringwald 21853c65e705SMilanka Ringwald uint8_t hfp_hf_rrh_hold_call(hci_con_handle_t acl_handle){ 21869c9c64c1SMatthias Ringwald hfp_connection_t * hfp_connection = get_hfp_hf_connection_context_for_acl_handle(acl_handle); 2187a33eb0c4SMilanka Ringwald if (!hfp_connection) { 21883c65e705SMilanka Ringwald return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER; 2189a33eb0c4SMilanka Ringwald } 2190a0ffb263SMatthias Ringwald hfp_connection->hf_send_rrh = 1; 2191a0ffb263SMatthias Ringwald hfp_connection->hf_send_rrh_command = '0'; 21921c6a0fc0SMatthias Ringwald hfp_hf_run_for_context(hfp_connection); 21933c65e705SMilanka Ringwald return ERROR_CODE_SUCCESS; 2194667ec068SMatthias Ringwald } 2195667ec068SMatthias Ringwald 21963c65e705SMilanka Ringwald uint8_t hfp_hf_rrh_accept_held_call(hci_con_handle_t acl_handle){ 21979c9c64c1SMatthias Ringwald hfp_connection_t * hfp_connection = get_hfp_hf_connection_context_for_acl_handle(acl_handle); 2198a33eb0c4SMilanka Ringwald if (!hfp_connection) { 21993c65e705SMilanka Ringwald return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER; 2200a33eb0c4SMilanka Ringwald } 2201a0ffb263SMatthias Ringwald hfp_connection->hf_send_rrh = 1; 2202a0ffb263SMatthias Ringwald hfp_connection->hf_send_rrh_command = '1'; 22031c6a0fc0SMatthias Ringwald hfp_hf_run_for_context(hfp_connection); 22043c65e705SMilanka Ringwald return ERROR_CODE_SUCCESS; 2205667ec068SMatthias Ringwald } 2206667ec068SMatthias Ringwald 22073c65e705SMilanka Ringwald uint8_t hfp_hf_rrh_reject_held_call(hci_con_handle_t acl_handle){ 22089c9c64c1SMatthias Ringwald hfp_connection_t * hfp_connection = get_hfp_hf_connection_context_for_acl_handle(acl_handle); 2209a33eb0c4SMilanka Ringwald if (!hfp_connection) { 22103c65e705SMilanka Ringwald return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER; 2211a33eb0c4SMilanka Ringwald } 2212a0ffb263SMatthias Ringwald hfp_connection->hf_send_rrh = 1; 2213a0ffb263SMatthias Ringwald hfp_connection->hf_send_rrh_command = '2'; 22141c6a0fc0SMatthias Ringwald hfp_hf_run_for_context(hfp_connection); 22153c65e705SMilanka Ringwald return ERROR_CODE_SUCCESS; 2216667ec068SMatthias Ringwald } 2217667ec068SMatthias Ringwald 22183c65e705SMilanka Ringwald uint8_t hfp_hf_query_subscriber_number(hci_con_handle_t acl_handle){ 22199c9c64c1SMatthias Ringwald hfp_connection_t * hfp_connection = get_hfp_hf_connection_context_for_acl_handle(acl_handle); 2220a33eb0c4SMilanka Ringwald if (!hfp_connection) { 22213c65e705SMilanka Ringwald return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER; 2222a33eb0c4SMilanka Ringwald } 2223a0ffb263SMatthias Ringwald hfp_connection->hf_send_cnum = 1; 22241c6a0fc0SMatthias Ringwald hfp_hf_run_for_context(hfp_connection); 22253c65e705SMilanka Ringwald return ERROR_CODE_SUCCESS; 2226667ec068SMatthias Ringwald } 2227667ec068SMatthias Ringwald 22283c65e705SMilanka Ringwald uint8_t hfp_hf_set_hf_indicator(hci_con_handle_t acl_handle, int assigned_number, int value){ 22299c9c64c1SMatthias Ringwald hfp_connection_t * hfp_connection = get_hfp_hf_connection_context_for_acl_handle(acl_handle); 2230a33eb0c4SMilanka Ringwald if (!hfp_connection) { 22313c65e705SMilanka Ringwald return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER; 2232a33eb0c4SMilanka Ringwald } 2233667ec068SMatthias Ringwald // find index for assigned number 2234667ec068SMatthias Ringwald int i; 2235aeb0f0feSMatthias Ringwald for (i = 0; i < hfp_hf_indicators_nr ; i++){ 2236aeb0f0feSMatthias Ringwald if (hfp_hf_indicators[i] == assigned_number){ 2237667ec068SMatthias Ringwald // set value 2238aeb0f0feSMatthias Ringwald hfp_hf_indicators_value[i] = value; 2239667ec068SMatthias Ringwald // mark for update 2240a0ffb263SMatthias Ringwald if (hfp_connection->state > HFP_LIST_GENERIC_STATUS_INDICATORS){ 2241a0ffb263SMatthias Ringwald hfp_connection->generic_status_update_bitmap |= (1<<i); 2242667ec068SMatthias Ringwald // send update 22431c6a0fc0SMatthias Ringwald hfp_hf_run_for_context(hfp_connection); 2244a0ffb263SMatthias Ringwald } 22453c65e705SMilanka Ringwald return ERROR_CODE_SUCCESS; 2246667ec068SMatthias Ringwald } 2247667ec068SMatthias Ringwald } 22483c65e705SMilanka Ringwald return ERROR_CODE_SUCCESS; 2249667ec068SMatthias Ringwald } 2250667ec068SMatthias Ringwald 225151a2ebdeSMatthias Ringwald uint8_t hfp_hf_send_at_command(hci_con_handle_t acl_handle, const char * at_command){ 225251a2ebdeSMatthias Ringwald hfp_connection_t * hfp_connection = get_hfp_hf_connection_context_for_acl_handle(acl_handle); 225351a2ebdeSMatthias Ringwald if (!hfp_connection) { 225451a2ebdeSMatthias Ringwald return ERROR_CODE_UNKNOWN_CONNECTION_IDENTIFIER; 225551a2ebdeSMatthias Ringwald } 225651a2ebdeSMatthias Ringwald if (hfp_connection->send_custom_message != NULL){ 225751a2ebdeSMatthias Ringwald return ERROR_CODE_COMMAND_DISALLOWED; 225851a2ebdeSMatthias Ringwald } 225951a2ebdeSMatthias Ringwald hfp_connection->send_custom_message = at_command; 226051a2ebdeSMatthias Ringwald hfp_hf_run_for_context(hfp_connection); 226151a2ebdeSMatthias Ringwald return ERROR_CODE_SUCCESS; 226251a2ebdeSMatthias Ringwald } 226351a2ebdeSMatthias Ringwald 2264d7f6b5cbSMatthias Ringwald int hfp_hf_in_band_ringtone_active(hci_con_handle_t acl_handle){ 2265d7f6b5cbSMatthias Ringwald hfp_connection_t * hfp_connection = get_hfp_hf_connection_context_for_acl_handle(acl_handle); 2266d7f6b5cbSMatthias Ringwald if (!hfp_connection) { 2267d7f6b5cbSMatthias Ringwald return 0; 2268d7f6b5cbSMatthias Ringwald } 2269d7f6b5cbSMatthias Ringwald return get_bit(hfp_connection->remote_supported_features, HFP_AGSF_IN_BAND_RING_TONE); 2270d7f6b5cbSMatthias Ringwald } 227176cc1527SMatthias Ringwald 2272aa10b9cbSMatthias Ringwald void hfp_hf_create_sdp_record_with_codecs(uint8_t * service, uint32_t service_record_handle, int rfcomm_channel_nr, 2273aa10b9cbSMatthias Ringwald const char * name, uint16_t supported_features, uint8_t codecs_nr, const uint8_t * codecs){ 227476cc1527SMatthias Ringwald if (!name){ 2275aeb0f0feSMatthias Ringwald name = hfp_hf_default_service_name; 227676cc1527SMatthias Ringwald } 227776cc1527SMatthias Ringwald hfp_create_sdp_record(service, service_record_handle, BLUETOOTH_SERVICE_CLASS_HANDSFREE, rfcomm_channel_nr, name); 227876cc1527SMatthias Ringwald 227976cc1527SMatthias Ringwald // Construct SupportedFeatures for SDP bitmap: 228076cc1527SMatthias Ringwald // 228176cc1527SMatthias Ringwald // "The values of the “SupportedFeatures” bitmap given in Table 5.4 shall be the same as the values 228276cc1527SMatthias Ringwald // of the Bits 0 to 4 of the unsolicited result code +BRSF" 228376cc1527SMatthias Ringwald // 2284aa10b9cbSMatthias Ringwald // Wide band speech (bit 5) and LC3-SWB (bit 8) require Codec negotiation 228576cc1527SMatthias Ringwald // 228676cc1527SMatthias Ringwald uint16_t sdp_features = supported_features & 0x1f; 2287ef3ae4ebSMilanka Ringwald 2288ef3ae4ebSMilanka Ringwald if (supported_features & (1 << HFP_HFSF_ENHANCED_VOICE_RECOGNITION_STATUS)){ 228956f1adacSMilanka Ringwald sdp_features |= 1 << 6; 2290ef3ae4ebSMilanka Ringwald } 2291ef3ae4ebSMilanka Ringwald 2292ef3ae4ebSMilanka Ringwald if (supported_features & (1 << HFP_HFSF_VOICE_RECOGNITION_TEXT)){ 229356f1adacSMilanka Ringwald sdp_features |= 1 << 7; 2294ef3ae4ebSMilanka Ringwald } 2295ef3ae4ebSMilanka Ringwald 2296aa10b9cbSMatthias Ringwald // codecs 2297aa10b9cbSMatthias Ringwald if ((supported_features & (1 << HFP_HFSF_CODEC_NEGOTIATION)) != 0){ 2298aa10b9cbSMatthias Ringwald uint8_t i; 2299aa10b9cbSMatthias Ringwald for (i=0;i<codecs_nr;i++){ 2300aa10b9cbSMatthias Ringwald switch (codecs[i]){ 2301aa10b9cbSMatthias Ringwald case HFP_CODEC_MSBC: 2302aa10b9cbSMatthias Ringwald sdp_features |= 1 << 5; 2303aa10b9cbSMatthias Ringwald break; 2304aa10b9cbSMatthias Ringwald case HFP_CODEC_LC3_SWB: 2305aa10b9cbSMatthias Ringwald sdp_features |= 1 << 8; 2306aa10b9cbSMatthias Ringwald break; 2307*75389f80SMatthias Ringwald default: 2308*75389f80SMatthias Ringwald break; 2309aa10b9cbSMatthias Ringwald } 2310aa10b9cbSMatthias Ringwald } 2311aa10b9cbSMatthias Ringwald } 2312aa10b9cbSMatthias Ringwald 2313aa10b9cbSMatthias Ringwald de_add_number(service, DE_UINT, DE_SIZE_16, BLUETOOTH_ATTRIBUTE_SUPPORTED_FEATURES); 231476cc1527SMatthias Ringwald de_add_number(service, DE_UINT, DE_SIZE_16, sdp_features); 231576cc1527SMatthias Ringwald } 231676cc1527SMatthias Ringwald 2317aa10b9cbSMatthias Ringwald // @deprecated, call new API 2318aa10b9cbSMatthias Ringwald void hfp_hf_create_sdp_record(uint8_t * service, uint32_t service_record_handle, int rfcomm_channel_nr, const char * name, uint16_t supported_features, int wide_band_speech){ 2319aa10b9cbSMatthias Ringwald uint8_t codecs_nr; 2320aa10b9cbSMatthias Ringwald const uint8_t * codecs; 2321aa10b9cbSMatthias Ringwald const uint8_t wide_band_codecs[] = { HFP_CODEC_MSBC }; 2322aa10b9cbSMatthias Ringwald if (wide_band_speech == 0){ 2323aa10b9cbSMatthias Ringwald codecs_nr = 0; 2324aa10b9cbSMatthias Ringwald codecs = NULL; 2325aa10b9cbSMatthias Ringwald } else { 2326aa10b9cbSMatthias Ringwald codecs_nr = 1; 2327aa10b9cbSMatthias Ringwald codecs = wide_band_codecs; 2328aa10b9cbSMatthias Ringwald } 2329aa10b9cbSMatthias Ringwald hfp_hf_create_sdp_record_with_codecs(service, service_record_handle, rfcomm_channel_nr, name, supported_features, codecs_nr, codecs); 2330aa10b9cbSMatthias Ringwald } 2331aa10b9cbSMatthias Ringwald 2332077c2d92SMatthias Ringwald void hfp_hf_register_custom_at_command(hfp_custom_at_command_t * custom_at_command){ 2333077c2d92SMatthias Ringwald hfp_register_custom_hf_command(custom_at_command); 2334077c2d92SMatthias Ringwald } 2335077c2d92SMatthias Ringwald 233676cc1527SMatthias Ringwald void hfp_hf_register_packet_handler(btstack_packet_handler_t callback){ 233768466199SMilanka Ringwald btstack_assert(callback != NULL); 233868466199SMilanka Ringwald 233976cc1527SMatthias Ringwald hfp_hf_callback = callback; 234076cc1527SMatthias Ringwald hfp_set_hf_callback(callback); 234176cc1527SMatthias Ringwald } 2342