13deb3ec6SMatthias Ringwald /* 23deb3ec6SMatthias Ringwald * Copyright (C) 2014 BlueKitchen GmbH 33deb3ec6SMatthias Ringwald * 43deb3ec6SMatthias Ringwald * Redistribution and use in source and binary forms, with or without 53deb3ec6SMatthias Ringwald * modification, are permitted provided that the following conditions 63deb3ec6SMatthias Ringwald * are met: 73deb3ec6SMatthias Ringwald * 83deb3ec6SMatthias Ringwald * 1. Redistributions of source code must retain the above copyright 93deb3ec6SMatthias Ringwald * notice, this list of conditions and the following disclaimer. 103deb3ec6SMatthias Ringwald * 2. Redistributions in binary form must reproduce the above copyright 113deb3ec6SMatthias Ringwald * notice, this list of conditions and the following disclaimer in the 123deb3ec6SMatthias Ringwald * documentation and/or other materials provided with the distribution. 133deb3ec6SMatthias Ringwald * 3. Neither the name of the copyright holders nor the names of 143deb3ec6SMatthias Ringwald * contributors may be used to endorse or promote products derived 153deb3ec6SMatthias Ringwald * from this software without specific prior written permission. 163deb3ec6SMatthias Ringwald * 4. Any redistribution, use, or modification is done solely for 173deb3ec6SMatthias Ringwald * personal benefit and not for any commercial purpose or for 183deb3ec6SMatthias Ringwald * monetary gain. 193deb3ec6SMatthias Ringwald * 203deb3ec6SMatthias Ringwald * THIS SOFTWARE IS PROVIDED BY BLUEKITCHEN GMBH AND CONTRIBUTORS 213deb3ec6SMatthias Ringwald * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 223deb3ec6SMatthias Ringwald * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS 233deb3ec6SMatthias Ringwald * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL MATTHIAS 243deb3ec6SMatthias Ringwald * RINGWALD OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, 253deb3ec6SMatthias Ringwald * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, 263deb3ec6SMatthias Ringwald * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS 273deb3ec6SMatthias Ringwald * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED 283deb3ec6SMatthias Ringwald * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, 293deb3ec6SMatthias Ringwald * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF 303deb3ec6SMatthias Ringwald * THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 313deb3ec6SMatthias Ringwald * SUCH DAMAGE. 323deb3ec6SMatthias Ringwald * 333deb3ec6SMatthias Ringwald * Please inquire about commercial licensing options at 343deb3ec6SMatthias Ringwald * [email protected] 353deb3ec6SMatthias Ringwald * 363deb3ec6SMatthias Ringwald */ 37ab2c6ae4SMatthias Ringwald 38e501bae0SMatthias Ringwald #define BTSTACK_FILE__ "hfp_ag.c" 393deb3ec6SMatthias Ringwald 403deb3ec6SMatthias Ringwald // ***************************************************************************** 413deb3ec6SMatthias Ringwald // 4266a048abSMatthias Ringwald // HFP Audio Gateway (AG) unit 433deb3ec6SMatthias Ringwald // 443deb3ec6SMatthias Ringwald // ***************************************************************************** 453deb3ec6SMatthias Ringwald 467907f069SMatthias Ringwald #include "btstack_config.h" 473deb3ec6SMatthias Ringwald 483deb3ec6SMatthias Ringwald #include <stdint.h> 493deb3ec6SMatthias Ringwald #include <string.h> 503deb3ec6SMatthias Ringwald 5156042629SMatthias Ringwald #include "hci_cmd.h" 5282636622SMatthias Ringwald #include "btstack_run_loop.h" 533deb3ec6SMatthias Ringwald 54235946f1SMatthias Ringwald #include "bluetooth_sdp.h" 553deb3ec6SMatthias Ringwald #include "hci.h" 563deb3ec6SMatthias Ringwald #include "btstack_memory.h" 573deb3ec6SMatthias Ringwald #include "hci_dump.h" 583deb3ec6SMatthias Ringwald #include "l2cap.h" 5916ece135SMatthias Ringwald #include "btstack_debug.h" 60e30a6a47SMatthias Ringwald #include "btstack_event.h" 6159c6af15SMatthias Ringwald #include "classic/core.h" 623edc84c5SMatthias Ringwald #include "classic/hfp.h" 633edc84c5SMatthias Ringwald #include "classic/hfp_ag.h" 64023f2764SMatthias Ringwald #include "classic/hfp_gsm_model.h" 65efda0b48SMatthias Ringwald #include "classic/sdp_client_rfcomm.h" 66023f2764SMatthias Ringwald #include "classic/sdp_server.h" 67023f2764SMatthias Ringwald #include "classic/sdp_util.h" 683deb3ec6SMatthias Ringwald 69c5b64319SMatthias Ringwald // private prototypes 70f0aeb307SMatthias Ringwald static void hfp_ag_run_for_context(hfp_connection_t *hfp_connection); 71adaba9f3SMatthias Ringwald static void hfp_ag_hf_start_ringing(hfp_connection_t * hfp_connection); 72adaba9f3SMatthias Ringwald static void hfp_ag_setup_audio_connection(hfp_connection_t * hfp_connection); 73c5b64319SMatthias Ringwald 74c5b64319SMatthias Ringwald // public prototypes 7535833313SMatthias Ringwald hfp_generic_status_indicator_t * get_hfp_generic_status_indicators(void); 7635833313SMatthias Ringwald int get_hfp_generic_status_indicators_nr(void); 77c5b64319SMatthias Ringwald void set_hfp_generic_status_indicators(hfp_generic_status_indicator_t * indicators, int indicator_nr); 78c5b64319SMatthias Ringwald void set_hfp_ag_indicators(hfp_ag_indicator_t * indicators, int indicator_nr); 79c5b64319SMatthias Ringwald int get_hfp_ag_indicators_nr(hfp_connection_t * context); 80c5b64319SMatthias Ringwald hfp_ag_indicator_t * get_hfp_ag_indicators(hfp_connection_t * context); 81c5b64319SMatthias Ringwald 8227950165SMatthias Ringwald 8320b2edb6SMatthias Ringwald // const 843deb3ec6SMatthias Ringwald static const char default_hfp_ag_service_name[] = "Voice gateway"; 85aa4dd815SMatthias Ringwald 8620b2edb6SMatthias Ringwald // globals 8720b2edb6SMatthias Ringwald static btstack_packet_callback_registration_t hfp_ag_hci_event_callback_registration; 88aa4dd815SMatthias Ringwald 8920b2edb6SMatthias Ringwald static uint16_t hfp_supported_features; 9020b2edb6SMatthias Ringwald 9120b2edb6SMatthias Ringwald static uint8_t hfp_codecs_nr; 923deb3ec6SMatthias Ringwald static uint8_t hfp_codecs[HFP_MAX_NUM_CODECS]; 933deb3ec6SMatthias Ringwald 9420b2edb6SMatthias Ringwald static int hfp_ag_indicators_nr; 9525789943SMilanka Ringwald static hfp_ag_indicator_t hfp_ag_indicators[HFP_MAX_NUM_INDICATORS]; 963deb3ec6SMatthias Ringwald 9720b2edb6SMatthias Ringwald static int hfp_generic_status_indicators_nr; 9825789943SMilanka Ringwald static hfp_generic_status_indicator_t hfp_generic_status_indicators[HFP_MAX_NUM_INDICATORS]; 99a0ffb263SMatthias Ringwald 10020b2edb6SMatthias Ringwald static int hfp_ag_call_hold_services_nr; 1013deb3ec6SMatthias Ringwald static char *hfp_ag_call_hold_services[6]; 102ca59be51SMatthias Ringwald static btstack_packet_handler_t hfp_ag_callback; 1033deb3ec6SMatthias Ringwald 104ce263fc8SMatthias Ringwald static hfp_response_and_hold_state_t hfp_ag_response_and_hold_state; 10520b2edb6SMatthias Ringwald static int hfp_ag_response_and_hold_active; 106aa4dd815SMatthias Ringwald 10720b2edb6SMatthias Ringwald // Subscriber information entries 10820b2edb6SMatthias Ringwald static hfp_phone_number_t * subscriber_numbers; 10920b2edb6SMatthias Ringwald static int subscriber_numbers_count; 110ce263fc8SMatthias Ringwald 11120b2edb6SMatthias Ringwald // code 112a0ffb263SMatthias Ringwald static int hfp_ag_get_ag_indicators_nr(hfp_connection_t * hfp_connection){ 113a0ffb263SMatthias Ringwald if (hfp_connection->ag_indicators_nr != hfp_ag_indicators_nr){ 114a0ffb263SMatthias Ringwald hfp_connection->ag_indicators_nr = hfp_ag_indicators_nr; 1156535961aSMatthias Ringwald (void)memcpy(hfp_connection->ag_indicators, hfp_ag_indicators, 1166535961aSMatthias Ringwald hfp_ag_indicators_nr * sizeof(hfp_ag_indicator_t)); 1173deb3ec6SMatthias Ringwald } 118a0ffb263SMatthias Ringwald return hfp_connection->ag_indicators_nr; 119a0ffb263SMatthias Ringwald } 120a0ffb263SMatthias Ringwald 121a0ffb263SMatthias Ringwald hfp_ag_indicator_t * hfp_ag_get_ag_indicators(hfp_connection_t * hfp_connection){ 122a0ffb263SMatthias Ringwald // TODO: save only value, and value changed in the hfp_connection? 123a0ffb263SMatthias Ringwald if (hfp_connection->ag_indicators_nr != hfp_ag_indicators_nr){ 124a0ffb263SMatthias Ringwald hfp_connection->ag_indicators_nr = hfp_ag_indicators_nr; 1256535961aSMatthias Ringwald (void)memcpy(hfp_connection->ag_indicators, hfp_ag_indicators, 1266535961aSMatthias Ringwald hfp_ag_indicators_nr * sizeof(hfp_ag_indicator_t)); 127a0ffb263SMatthias Ringwald } 128a0ffb263SMatthias Ringwald return (hfp_ag_indicator_t *)&(hfp_connection->ag_indicators); 1293deb3ec6SMatthias Ringwald } 1303deb3ec6SMatthias Ringwald 131aa4dd815SMatthias Ringwald static hfp_ag_indicator_t * get_ag_indicator_for_name(const char * name){ 132aa4dd815SMatthias Ringwald int i; 133aa4dd815SMatthias Ringwald for (i = 0; i < hfp_ag_indicators_nr; i++){ 134aa4dd815SMatthias Ringwald if (strcmp(hfp_ag_indicators[i].name, name) == 0){ 135aa4dd815SMatthias Ringwald return &hfp_ag_indicators[i]; 136aa4dd815SMatthias Ringwald } 137aa4dd815SMatthias Ringwald } 138aa4dd815SMatthias Ringwald return NULL; 139aa4dd815SMatthias Ringwald } 140aa4dd815SMatthias Ringwald 141aa4dd815SMatthias Ringwald static int get_ag_indicator_index_for_name(const char * name){ 142aa4dd815SMatthias Ringwald int i; 143aa4dd815SMatthias Ringwald for (i = 0; i < hfp_ag_indicators_nr; i++){ 144aa4dd815SMatthias Ringwald if (strcmp(hfp_ag_indicators[i].name, name) == 0){ 145aa4dd815SMatthias Ringwald return i; 146aa4dd815SMatthias Ringwald } 147aa4dd815SMatthias Ringwald } 148aa4dd815SMatthias Ringwald return -1; 149aa4dd815SMatthias Ringwald } 150aa4dd815SMatthias Ringwald 1519c9c64c1SMatthias Ringwald static hfp_connection_t * get_hfp_ag_connection_context_for_acl_handle(uint16_t handle){ 1529c9c64c1SMatthias Ringwald btstack_linked_list_iterator_t it; 1539c9c64c1SMatthias Ringwald btstack_linked_list_iterator_init(&it, hfp_get_connections()); 1549c9c64c1SMatthias Ringwald while (btstack_linked_list_iterator_has_next(&it)){ 1559c9c64c1SMatthias Ringwald hfp_connection_t * hfp_connection = (hfp_connection_t *)btstack_linked_list_iterator_next(&it); 1569c9c64c1SMatthias Ringwald if (hfp_connection->acl_handle != handle) continue; 1579c9c64c1SMatthias Ringwald if (hfp_connection->local_role != HFP_ROLE_AG) continue; 1589c9c64c1SMatthias Ringwald return hfp_connection; 1599c9c64c1SMatthias Ringwald } 1609c9c64c1SMatthias Ringwald return NULL; 1619c9c64c1SMatthias Ringwald } 1623deb3ec6SMatthias Ringwald 1630cb5b971SMatthias Ringwald static int use_in_band_tone(void){ 164aa4dd815SMatthias Ringwald return get_bit(hfp_supported_features, HFP_AGSF_IN_BAND_RING_TONE); 1653deb3ec6SMatthias Ringwald } 1663deb3ec6SMatthias Ringwald 167a0ffb263SMatthias Ringwald static int has_codec_negotiation_feature(hfp_connection_t * hfp_connection){ 168a0ffb263SMatthias Ringwald int hf = get_bit(hfp_connection->remote_supported_features, HFP_HFSF_CODEC_NEGOTIATION); 1693deb3ec6SMatthias Ringwald int ag = get_bit(hfp_supported_features, HFP_AGSF_CODEC_NEGOTIATION); 1703deb3ec6SMatthias Ringwald return hf && ag; 1713deb3ec6SMatthias Ringwald } 1723deb3ec6SMatthias Ringwald 173a0ffb263SMatthias Ringwald static int has_call_waiting_and_3way_calling_feature(hfp_connection_t * hfp_connection){ 174a0ffb263SMatthias Ringwald int hf = get_bit(hfp_connection->remote_supported_features, HFP_HFSF_THREE_WAY_CALLING); 1753deb3ec6SMatthias Ringwald int ag = get_bit(hfp_supported_features, HFP_AGSF_THREE_WAY_CALLING); 1763deb3ec6SMatthias Ringwald return hf && ag; 1773deb3ec6SMatthias Ringwald } 1783deb3ec6SMatthias Ringwald 179a0ffb263SMatthias Ringwald static int has_hf_indicators_feature(hfp_connection_t * hfp_connection){ 180a0ffb263SMatthias Ringwald int hf = get_bit(hfp_connection->remote_supported_features, HFP_HFSF_HF_INDICATORS); 1813deb3ec6SMatthias Ringwald int ag = get_bit(hfp_supported_features, HFP_AGSF_HF_INDICATORS); 1823deb3ec6SMatthias Ringwald return hf && ag; 1833deb3ec6SMatthias Ringwald } 1843deb3ec6SMatthias Ringwald 18576cc1527SMatthias Ringwald /* unsolicited responses */ 186aa4dd815SMatthias Ringwald 187485ac19eSMilanka Ringwald static int hfp_ag_send_change_in_band_ring_tone_setting_cmd(uint16_t cid){ 188aa4dd815SMatthias Ringwald char buffer[20]; 189ff7d6aeaSMatthias Ringwald snprintf(buffer, sizeof(buffer), "\r\n%s: %d\r\n", 190ff7d6aeaSMatthias Ringwald HFP_CHANGE_IN_BAND_RING_TONE_SETTING, use_in_band_tone()); 191ff7d6aeaSMatthias Ringwald buffer[sizeof(buffer) - 1] = 0; 192aa4dd815SMatthias Ringwald return send_str_over_rfcomm(cid, buffer); 1933deb3ec6SMatthias Ringwald } 1943deb3ec6SMatthias Ringwald 1953deb3ec6SMatthias Ringwald static int hfp_ag_exchange_supported_features_cmd(uint16_t cid){ 1963deb3ec6SMatthias Ringwald char buffer[40]; 197ff7d6aeaSMatthias Ringwald snprintf(buffer, sizeof(buffer), "\r\n%s:%d\r\n\r\nOK\r\n", 198ff7d6aeaSMatthias Ringwald HFP_SUPPORTED_FEATURES, hfp_supported_features); 199ff7d6aeaSMatthias Ringwald buffer[sizeof(buffer) - 1] = 0; 2003deb3ec6SMatthias Ringwald return send_str_over_rfcomm(cid, buffer); 2013deb3ec6SMatthias Ringwald } 2023deb3ec6SMatthias Ringwald 203485ac19eSMilanka Ringwald static int hfp_ag_send_ok(uint16_t cid){ 2043deb3ec6SMatthias Ringwald char buffer[10]; 205ff7d6aeaSMatthias Ringwald snprintf(buffer, sizeof(buffer), "\r\nOK\r\n"); 206ff7d6aeaSMatthias Ringwald buffer[sizeof(buffer) - 1] = 0; 2073deb3ec6SMatthias Ringwald return send_str_over_rfcomm(cid, buffer); 2083deb3ec6SMatthias Ringwald } 2093deb3ec6SMatthias Ringwald 210485ac19eSMilanka Ringwald static int hfp_ag_send_ring(uint16_t cid){ 211aa4dd815SMatthias Ringwald return send_str_over_rfcomm(cid, (char *) "\r\nRING\r\n"); 212aa4dd815SMatthias Ringwald } 213aa4dd815SMatthias Ringwald 214245852b7SMilanka Ringwald static int hfp_ag_send_no_carrier(uint16_t cid){ 215245852b7SMilanka Ringwald char buffer[15]; 216245852b7SMilanka Ringwald snprintf(buffer, sizeof(buffer), "\r\nNO CARRIER\r\n"); 217245852b7SMilanka Ringwald buffer[sizeof(buffer) - 1] = 0; 218245852b7SMilanka Ringwald return send_str_over_rfcomm(cid, buffer); 219245852b7SMilanka Ringwald } 220245852b7SMilanka Ringwald 221aa4dd815SMatthias Ringwald static int hfp_ag_send_clip(uint16_t cid){ 222aa4dd815SMatthias Ringwald char buffer[50]; 223ff7d6aeaSMatthias Ringwald snprintf(buffer, sizeof(buffer), "\r\n%s: \"%s\",%u\r\n", HFP_ENABLE_CLIP, 224ff7d6aeaSMatthias Ringwald hfp_gsm_clip_number(), hfp_gsm_clip_type()); 225ff7d6aeaSMatthias Ringwald buffer[sizeof(buffer) - 1] = 0; 226aa4dd815SMatthias Ringwald return send_str_over_rfcomm(cid, buffer); 227aa4dd815SMatthias Ringwald } 228aa4dd815SMatthias Ringwald 229ce263fc8SMatthias Ringwald static int hfp_send_subscriber_number_cmd(uint16_t cid, uint8_t type, const char * number){ 230ce263fc8SMatthias Ringwald char buffer[50]; 231ff7d6aeaSMatthias Ringwald snprintf(buffer, sizeof(buffer), "\r\n%s: ,\"%s\",%u, , \r\n", 232ff7d6aeaSMatthias Ringwald HFP_SUBSCRIBER_NUMBER_INFORMATION, number, type); 233ff7d6aeaSMatthias Ringwald buffer[sizeof(buffer) - 1] = 0; 234ce263fc8SMatthias Ringwald return send_str_over_rfcomm(cid, buffer); 235ce263fc8SMatthias Ringwald } 236ce263fc8SMatthias Ringwald 237c1797c7dSMatthias Ringwald static int hfp_ag_send_phone_number_for_voice_tag_cmd(uint16_t cid){ 238aa4dd815SMatthias Ringwald char buffer[50]; 239ff7d6aeaSMatthias Ringwald snprintf(buffer, sizeof(buffer), "\r\n%s: %s\r\n", 240ff7d6aeaSMatthias Ringwald HFP_PHONE_NUMBER_FOR_VOICE_TAG, hfp_gsm_clip_number()); 241ff7d6aeaSMatthias Ringwald buffer[sizeof(buffer) - 1] = 0; 242aa4dd815SMatthias Ringwald return send_str_over_rfcomm(cid, buffer); 243aa4dd815SMatthias Ringwald } 244aa4dd815SMatthias Ringwald 245aa4dd815SMatthias Ringwald static int hfp_ag_send_call_waiting_notification(uint16_t cid){ 246aa4dd815SMatthias Ringwald char buffer[50]; 247ff7d6aeaSMatthias Ringwald snprintf(buffer, sizeof(buffer), "\r\n%s: \"%s\",%u\r\n", 248ff7d6aeaSMatthias Ringwald HFP_ENABLE_CALL_WAITING_NOTIFICATION, hfp_gsm_clip_number(), 249ff7d6aeaSMatthias Ringwald hfp_gsm_clip_type()); 250ff7d6aeaSMatthias Ringwald buffer[sizeof(buffer) - 1] = 0; 251aa4dd815SMatthias Ringwald return send_str_over_rfcomm(cid, buffer); 252aa4dd815SMatthias Ringwald } 253aa4dd815SMatthias Ringwald 254485ac19eSMilanka Ringwald static int hfp_ag_send_error(uint16_t cid){ 2553deb3ec6SMatthias Ringwald char buffer[10]; 256ff7d6aeaSMatthias Ringwald snprintf(buffer, sizeof(buffer), "\r\nERROR\r\n"); 257ff7d6aeaSMatthias Ringwald buffer[sizeof(buffer) - 1] = 0; 2583deb3ec6SMatthias Ringwald return send_str_over_rfcomm(cid, buffer); 2593deb3ec6SMatthias Ringwald } 2603deb3ec6SMatthias Ringwald 261485ac19eSMilanka Ringwald static int hfp_ag_send_report_extended_audio_gateway_error(uint16_t cid, uint8_t error){ 2623deb3ec6SMatthias Ringwald char buffer[20]; 263ff7d6aeaSMatthias Ringwald snprintf(buffer, sizeof(buffer), "\r\n%s=%d\r\n", 264ff7d6aeaSMatthias Ringwald HFP_EXTENDED_AUDIO_GATEWAY_ERROR, error); 265ff7d6aeaSMatthias Ringwald buffer[sizeof(buffer) - 1] = 0; 2663deb3ec6SMatthias Ringwald return send_str_over_rfcomm(cid, buffer); 2673deb3ec6SMatthias Ringwald } 2683deb3ec6SMatthias Ringwald 269ad902e3dSMatthias Ringwald // get size for indicator string 270a0ffb263SMatthias Ringwald static int hfp_ag_indicators_string_size(hfp_connection_t * hfp_connection, int i){ 271ad902e3dSMatthias Ringwald // template: ("$NAME",($MIN,$MAX)) 27245718b6fSMatthias Ringwald return 8 + (int) strlen(hfp_ag_get_ag_indicators(hfp_connection)[i].name) 273a0ffb263SMatthias Ringwald + string_len_for_uint32(hfp_ag_get_ag_indicators(hfp_connection)[i].min_range) 274a0ffb263SMatthias Ringwald + string_len_for_uint32(hfp_ag_get_ag_indicators(hfp_connection)[i].min_range); 275ad902e3dSMatthias Ringwald } 276ad902e3dSMatthias Ringwald 277ad902e3dSMatthias Ringwald // store indicator 2781167ff83SMatthias Ringwald static void hfp_ag_indicators_string_store(hfp_connection_t * hfp_connection, int i, uint8_t * buffer, uint16_t buffer_size){ 2791167ff83SMatthias Ringwald snprintf((char *)buffer, buffer_size, "(\"%s\",(%d,%d)),", 280a0ffb263SMatthias Ringwald hfp_ag_get_ag_indicators(hfp_connection)[i].name, 281a0ffb263SMatthias Ringwald hfp_ag_get_ag_indicators(hfp_connection)[i].min_range, 282a0ffb263SMatthias Ringwald hfp_ag_get_ag_indicators(hfp_connection)[i].max_range); 2831167ff83SMatthias Ringwald ((char *)buffer)[buffer_size - 1] = 0; 2843deb3ec6SMatthias Ringwald } 285ad902e3dSMatthias Ringwald 286ad902e3dSMatthias Ringwald // structure: header [indicator [comma indicator]] footer 287a0ffb263SMatthias Ringwald static int hfp_ag_indicators_cmd_generator_num_segments(hfp_connection_t * hfp_connection){ 288a0ffb263SMatthias Ringwald int num_indicators = hfp_ag_get_ag_indicators_nr(hfp_connection); 289ad902e3dSMatthias Ringwald if (!num_indicators) return 2; 290c1ab6cc1SMatthias Ringwald return 3 + ((num_indicators-1) * 2); 2913deb3ec6SMatthias Ringwald } 292ad902e3dSMatthias Ringwald 293ad902e3dSMatthias Ringwald // get size of individual segment for hfp_ag_retrieve_indicators_cmd 294a0ffb263SMatthias Ringwald static int hfp_ag_indicators_cmd_generator_get_segment_len(hfp_connection_t * hfp_connection, int index){ 295ad902e3dSMatthias Ringwald if (index == 0) { 296ad902e3dSMatthias Ringwald return strlen(HFP_INDICATOR) + 3; // "\n\r%s:"" 297ad902e3dSMatthias Ringwald } 298ad902e3dSMatthias Ringwald index--; 299a0ffb263SMatthias Ringwald int num_indicators = hfp_ag_get_ag_indicators_nr(hfp_connection); 300ad902e3dSMatthias Ringwald int indicator_index = index >> 1; 301ad902e3dSMatthias Ringwald if ((index & 1) == 0){ 302a0ffb263SMatthias Ringwald return hfp_ag_indicators_string_size(hfp_connection, indicator_index); 303ad902e3dSMatthias Ringwald } 304c1ab6cc1SMatthias Ringwald if (indicator_index == (num_indicators - 1)){ 305ad902e3dSMatthias Ringwald return 8; // "\r\n\r\nOK\r\n" 306ad902e3dSMatthias Ringwald } 307ad902e3dSMatthias Ringwald return 1; // comma 308ad902e3dSMatthias Ringwald } 309ad902e3dSMatthias Ringwald 3101167ff83SMatthias Ringwald static void hfp_ag_indicators_cmd_generator_store_segment(hfp_connection_t * hfp_connection, int index, uint8_t * buffer, uint16_t buffer_size){ 311ad902e3dSMatthias Ringwald if (index == 0){ 312ad902e3dSMatthias Ringwald *buffer++ = '\r'; 31374386ee0SMatthias Ringwald *buffer++ = '\n'; 314ad902e3dSMatthias Ringwald int len = strlen(HFP_INDICATOR); 3156535961aSMatthias Ringwald (void)memcpy(buffer, HFP_INDICATOR, len); 316ad902e3dSMatthias Ringwald buffer += len; 317ad902e3dSMatthias Ringwald *buffer++ = ':'; 318ad902e3dSMatthias Ringwald return; 319ad902e3dSMatthias Ringwald } 320ad902e3dSMatthias Ringwald index--; 321a0ffb263SMatthias Ringwald int num_indicators = hfp_ag_get_ag_indicators_nr(hfp_connection); 322ad902e3dSMatthias Ringwald int indicator_index = index >> 1; 323ad902e3dSMatthias Ringwald if ((index & 1) == 0){ 3241167ff83SMatthias Ringwald hfp_ag_indicators_string_store(hfp_connection, indicator_index, buffer, buffer_size); 325ad902e3dSMatthias Ringwald return; 326ad902e3dSMatthias Ringwald } 327c1ab6cc1SMatthias Ringwald if (indicator_index == (num_indicators-1)){ 3286535961aSMatthias Ringwald (void)memcpy(buffer, "\r\n\r\nOK\r\n", 8); 329ad902e3dSMatthias Ringwald return; 330ad902e3dSMatthias Ringwald } 331ad902e3dSMatthias Ringwald *buffer = ','; 3323deb3ec6SMatthias Ringwald } 3333deb3ec6SMatthias Ringwald 3343deb3ec6SMatthias Ringwald static int hfp_hf_indicators_join(char * buffer, int buffer_size){ 335c1ab6cc1SMatthias Ringwald if (buffer_size < (hfp_ag_indicators_nr * 3)) return 0; 3363deb3ec6SMatthias Ringwald int i; 3373deb3ec6SMatthias Ringwald int offset = 0; 338c1ab6cc1SMatthias Ringwald for (i = 0; i < (hfp_generic_status_indicators_nr-1); i++) { 339a0ffb263SMatthias Ringwald offset += snprintf(buffer+offset, buffer_size-offset, "%d,", hfp_generic_status_indicators[i].uuid); 3403deb3ec6SMatthias Ringwald } 341a0ffb263SMatthias Ringwald if (i < hfp_generic_status_indicators_nr){ 342ae46d666SMatthias Ringwald offset += snprintf(buffer+offset, buffer_size-offset, "%d", hfp_generic_status_indicators[i].uuid); 3433deb3ec6SMatthias Ringwald } 3443deb3ec6SMatthias Ringwald return offset; 3453deb3ec6SMatthias Ringwald } 3463deb3ec6SMatthias Ringwald 3473deb3ec6SMatthias Ringwald static int hfp_hf_indicators_initial_status_join(char * buffer, int buffer_size){ 348c1ab6cc1SMatthias Ringwald if (buffer_size < (hfp_generic_status_indicators_nr * 3)) return 0; 3493deb3ec6SMatthias Ringwald int i; 3503deb3ec6SMatthias Ringwald int offset = 0; 351a0ffb263SMatthias Ringwald for (i = 0; i < hfp_generic_status_indicators_nr; i++) { 352a0ffb263SMatthias Ringwald offset += snprintf(buffer+offset, buffer_size-offset, "\r\n%s:%d,%d\r\n", HFP_GENERIC_STATUS_INDICATOR, hfp_generic_status_indicators[i].uuid, hfp_generic_status_indicators[i].state); 3533deb3ec6SMatthias Ringwald } 3543deb3ec6SMatthias Ringwald return offset; 3553deb3ec6SMatthias Ringwald } 3563deb3ec6SMatthias Ringwald 3573deb3ec6SMatthias Ringwald static int hfp_ag_indicators_status_join(char * buffer, int buffer_size){ 358c1ab6cc1SMatthias Ringwald if (buffer_size < (hfp_ag_indicators_nr * 3)) return 0; 3593deb3ec6SMatthias Ringwald int i; 3603deb3ec6SMatthias Ringwald int offset = 0; 361c1ab6cc1SMatthias Ringwald for (i = 0; i < (hfp_ag_indicators_nr-1); i++) { 3623deb3ec6SMatthias Ringwald offset += snprintf(buffer+offset, buffer_size-offset, "%d,", hfp_ag_indicators[i].status); 3633deb3ec6SMatthias Ringwald } 3643deb3ec6SMatthias Ringwald if (i<hfp_ag_indicators_nr){ 3653deb3ec6SMatthias Ringwald offset += snprintf(buffer+offset, buffer_size-offset, "%d", hfp_ag_indicators[i].status); 3663deb3ec6SMatthias Ringwald } 3673deb3ec6SMatthias Ringwald return offset; 3683deb3ec6SMatthias Ringwald } 3693deb3ec6SMatthias Ringwald 3703deb3ec6SMatthias Ringwald static int hfp_ag_call_services_join(char * buffer, int buffer_size){ 371c1ab6cc1SMatthias Ringwald if (buffer_size < (hfp_ag_call_hold_services_nr * 3)) return 0; 3723deb3ec6SMatthias Ringwald int i; 3733deb3ec6SMatthias Ringwald int offset = snprintf(buffer, buffer_size, "("); 374c1ab6cc1SMatthias Ringwald for (i = 0; i < (hfp_ag_call_hold_services_nr-1); i++) { 3753deb3ec6SMatthias Ringwald offset += snprintf(buffer+offset, buffer_size-offset, "%s,", hfp_ag_call_hold_services[i]); 3763deb3ec6SMatthias Ringwald } 3773deb3ec6SMatthias Ringwald if (i<hfp_ag_call_hold_services_nr){ 3783deb3ec6SMatthias Ringwald offset += snprintf(buffer+offset, buffer_size-offset, "%s)", hfp_ag_call_hold_services[i]); 3793deb3ec6SMatthias Ringwald } 3803deb3ec6SMatthias Ringwald return offset; 3813deb3ec6SMatthias Ringwald } 3823deb3ec6SMatthias Ringwald 383485ac19eSMilanka Ringwald static int hfp_ag_send_cmd_via_generator(uint16_t cid, hfp_connection_t * hfp_connection, 384ad902e3dSMatthias Ringwald int start_segment, int num_segments, 385a0ffb263SMatthias Ringwald int (*get_segment_len)(hfp_connection_t * hfp_connection, int segment), 3861167ff83SMatthias Ringwald void (*store_segment) (hfp_connection_t * hfp_connection, int segment, uint8_t * buffer, uint16_t buffer_size)){ 3873deb3ec6SMatthias Ringwald 388ad902e3dSMatthias Ringwald // assumes: can send now == true 389ad902e3dSMatthias Ringwald // assumes: num segments > 0 390aba39421SMatthias Ringwald // assumes: individual segments are smaller than MTU 391ad902e3dSMatthias Ringwald rfcomm_reserve_packet_buffer(); 392ad902e3dSMatthias Ringwald int mtu = rfcomm_get_max_frame_size(cid); 393ad902e3dSMatthias Ringwald uint8_t * data = rfcomm_get_outgoing_buffer(); 394ad902e3dSMatthias Ringwald int offset = 0; 395ad902e3dSMatthias Ringwald int segment = start_segment; 396ad902e3dSMatthias Ringwald while (segment < num_segments){ 397a0ffb263SMatthias Ringwald int segment_len = get_segment_len(hfp_connection, segment); 3981167ff83SMatthias Ringwald if ((offset + segment_len + 1) > mtu) break; 3991167ff83SMatthias Ringwald // append segment. As it appends a '\0', we provide a buffer one byte larger 4001167ff83SMatthias Ringwald store_segment(hfp_connection, segment, data+offset, segment_len + 1); 401ad902e3dSMatthias Ringwald offset += segment_len; 402ad902e3dSMatthias Ringwald segment++; 403ad902e3dSMatthias Ringwald } 404ad902e3dSMatthias Ringwald rfcomm_send_prepared(cid, offset); 405f20dd2aeSBjoern Hartmann #ifdef ENABLE_HFP_AT_MESSAGES 406f20dd2aeSBjoern Hartmann hfp_emit_string_event(hfp_connection, HFP_SUBEVENT_AT_MESSAGE_SENT, (char *) data); 407f20dd2aeSBjoern Hartmann #endif 408ad902e3dSMatthias Ringwald return segment; 409ad902e3dSMatthias Ringwald } 4103deb3ec6SMatthias Ringwald 411ad902e3dSMatthias Ringwald // returns next segment to store 412485ac19eSMilanka Ringwald static int hfp_ag_send_retrieve_indicators_cmd_via_generator(uint16_t cid, hfp_connection_t * hfp_connection, int start_segment){ 413a0ffb263SMatthias Ringwald int num_segments = hfp_ag_indicators_cmd_generator_num_segments(hfp_connection); 414485ac19eSMilanka Ringwald return hfp_ag_send_cmd_via_generator(cid, hfp_connection, start_segment, num_segments, 415894d499cSMatthias Ringwald hfp_ag_indicators_cmd_generator_get_segment_len, 416894d499cSMatthias Ringwald hfp_ag_indicators_cmd_generator_store_segment); 4173deb3ec6SMatthias Ringwald } 4183deb3ec6SMatthias Ringwald 419485ac19eSMilanka Ringwald static int hfp_ag_send_retrieve_indicators_status_cmd(uint16_t cid){ 4203deb3ec6SMatthias Ringwald char buffer[40]; 42189425bfcSMilanka Ringwald const int size = sizeof(buffer); 42289425bfcSMilanka Ringwald int offset = snprintf(buffer, size, "\r\n%s:", HFP_INDICATOR); 42389425bfcSMilanka Ringwald offset += hfp_ag_indicators_status_join(buffer+offset, size-offset-9); 42489425bfcSMilanka Ringwald offset += snprintf(buffer+offset, size-offset, "\r\n\r\nOK\r\n"); 4253deb3ec6SMatthias Ringwald return send_str_over_rfcomm(cid, buffer); 4263deb3ec6SMatthias Ringwald } 4273deb3ec6SMatthias Ringwald 428485ac19eSMilanka Ringwald static int hfp_ag_send_retrieve_can_hold_call_cmd(uint16_t cid){ 429ad902e3dSMatthias Ringwald char buffer[40]; 43089425bfcSMilanka Ringwald const int size = sizeof(buffer); 43189425bfcSMilanka Ringwald int offset = snprintf(buffer, size, "\r\n%s:", HFP_SUPPORT_CALL_HOLD_AND_MULTIPARTY_SERVICES); 43289425bfcSMilanka Ringwald offset += hfp_ag_call_services_join(buffer+offset, size-offset-9); 43389425bfcSMilanka Ringwald offset += snprintf(buffer+offset, size-offset, "\r\n\r\nOK\r\n"); 4343deb3ec6SMatthias Ringwald return send_str_over_rfcomm(cid, buffer); 4353deb3ec6SMatthias Ringwald } 4363deb3ec6SMatthias Ringwald 4373deb3ec6SMatthias Ringwald 438485ac19eSMilanka Ringwald static int hfp_ag_send_list_supported_generic_status_indicators_cmd(uint16_t cid){ 439485ac19eSMilanka Ringwald return hfp_ag_send_ok(cid); 4403deb3ec6SMatthias Ringwald } 4413deb3ec6SMatthias Ringwald 442485ac19eSMilanka Ringwald static int hfp_ag_send_retrieve_supported_generic_status_indicators_cmd(uint16_t cid){ 4433deb3ec6SMatthias Ringwald char buffer[40]; 44489425bfcSMilanka Ringwald const int size = sizeof(buffer); 44589425bfcSMilanka Ringwald int offset = snprintf(buffer, size, "\r\n%s:(", HFP_GENERIC_STATUS_INDICATOR); 44689425bfcSMilanka Ringwald offset += hfp_hf_indicators_join(buffer+offset, size-offset-10); 44789425bfcSMilanka Ringwald offset += snprintf(buffer+offset, size-offset, ")\r\n\r\nOK\r\n"); 4483deb3ec6SMatthias Ringwald return send_str_over_rfcomm(cid, buffer); 4493deb3ec6SMatthias Ringwald } 4503deb3ec6SMatthias Ringwald 451485ac19eSMilanka Ringwald static int hfp_ag_send_retrieve_initital_supported_generic_status_indicators_cmd(uint16_t cid){ 4523deb3ec6SMatthias Ringwald char buffer[40]; 4531cc1d9e9SMilanka Ringwald int offset = hfp_hf_indicators_initial_status_join(buffer, sizeof(buffer) - 7); 4541cc1d9e9SMilanka Ringwald snprintf(buffer+offset, sizeof(buffer)-offset, "\r\nOK\r\n"); 4553deb3ec6SMatthias Ringwald return send_str_over_rfcomm(cid, buffer); 4563deb3ec6SMatthias Ringwald } 4573deb3ec6SMatthias Ringwald 458485ac19eSMilanka Ringwald static int hfp_ag_send_transfer_ag_indicators_status_cmd(uint16_t cid, hfp_ag_indicator_t * indicator){ 4593deb3ec6SMatthias Ringwald char buffer[20]; 460ff7d6aeaSMatthias Ringwald snprintf(buffer, sizeof(buffer), "\r\n%s:%d,%d\r\n", 461ff7d6aeaSMatthias Ringwald HFP_TRANSFER_AG_INDICATOR_STATUS, indicator->index, 462ff7d6aeaSMatthias Ringwald indicator->status); 463ff7d6aeaSMatthias Ringwald buffer[sizeof(buffer) - 1] = 0; 4643deb3ec6SMatthias Ringwald return send_str_over_rfcomm(cid, buffer); 4653deb3ec6SMatthias Ringwald } 4663deb3ec6SMatthias Ringwald 467485ac19eSMilanka Ringwald static int hfp_ag_send_report_network_operator_name_cmd(uint16_t cid, hfp_network_opearator_t op){ 4685e71456cSMilanka Ringwald char buffer[41]; 4693deb3ec6SMatthias Ringwald if (strlen(op.name) == 0){ 47089425bfcSMilanka Ringwald snprintf(buffer, sizeof(buffer), "\r\n%s:%d,,\r\n\r\nOK\r\n", HFP_QUERY_OPERATOR_SELECTION, op.mode); 4713deb3ec6SMatthias Ringwald } else { 47289425bfcSMilanka Ringwald int offset = snprintf(buffer, sizeof(buffer), "\r\n%s:%d,%d,", HFP_QUERY_OPERATOR_SELECTION, op.mode, op.format); 4735e71456cSMilanka Ringwald offset += snprintf(buffer+offset, 16, "%s", op.name); 47489425bfcSMilanka Ringwald snprintf(buffer+offset, sizeof(buffer)-offset, "\r\n\r\nOK\r\n"); 4753deb3ec6SMatthias Ringwald } 4763deb3ec6SMatthias Ringwald return send_str_over_rfcomm(cid, buffer); 4773deb3ec6SMatthias Ringwald } 4783deb3ec6SMatthias Ringwald 479a04aecb1SMilanka Ringwald static inline int hfp_ag_send_cmd_with_space_and_int(uint16_t cid, const char * cmd, uint8_t value){ 480a04aecb1SMilanka Ringwald char buffer[30]; 481a04aecb1SMilanka Ringwald snprintf(buffer, sizeof(buffer), "\r\n%s: %d\r\n", cmd, value); 482a04aecb1SMilanka Ringwald return send_str_over_rfcomm(cid, buffer); 483a04aecb1SMilanka Ringwald } 484a04aecb1SMilanka Ringwald 485a04aecb1SMilanka Ringwald 4861cc1d9e9SMilanka Ringwald static inline int hfp_ag_send_cmd_with_int(uint16_t cid, const char * cmd, uint8_t value){ 4871cc1d9e9SMilanka Ringwald char buffer[30]; 48889425bfcSMilanka Ringwald snprintf(buffer, sizeof(buffer), "\r\n%s:%d\r\n", cmd, value); 4891cc1d9e9SMilanka Ringwald return send_str_over_rfcomm(cid, buffer); 4901cc1d9e9SMilanka Ringwald } 4913deb3ec6SMatthias Ringwald 492485ac19eSMilanka Ringwald static int hfp_ag_send_suggest_codec_cmd(uint16_t cid, uint8_t codec){ 4931cc1d9e9SMilanka Ringwald return hfp_ag_send_cmd_with_int(cid, HFP_CONFIRM_COMMON_CODEC, codec); 4943deb3ec6SMatthias Ringwald } 4953deb3ec6SMatthias Ringwald 496485ac19eSMilanka Ringwald static int hfp_ag_send_activate_voice_recognition_cmd(uint16_t cid, uint8_t activate_voice_recognition){ 497a04aecb1SMilanka Ringwald return hfp_ag_send_cmd_with_space_and_int(cid, HFP_ACTIVATE_VOICE_RECOGNITION, activate_voice_recognition); 498aa4dd815SMatthias Ringwald } 499aa4dd815SMatthias Ringwald 500485ac19eSMilanka Ringwald static int hfp_ag_send_set_speaker_gain_cmd(uint16_t cid, uint8_t gain){ 5011cc1d9e9SMilanka Ringwald return hfp_ag_send_cmd_with_int(cid, HFP_SET_SPEAKER_GAIN, gain); 502aa4dd815SMatthias Ringwald } 503aa4dd815SMatthias Ringwald 504485ac19eSMilanka Ringwald static int hfp_ag_send_set_microphone_gain_cmd(uint16_t cid, uint8_t gain){ 5051cc1d9e9SMilanka Ringwald return hfp_ag_send_cmd_with_int(cid, HFP_SET_MICROPHONE_GAIN, gain); 506aa4dd815SMatthias Ringwald } 507aa4dd815SMatthias Ringwald 508485ac19eSMilanka Ringwald static int hfp_ag_send_set_response_and_hold(uint16_t cid, int state){ 50966191aa0SMilanka Ringwald return hfp_ag_send_cmd_with_space_and_int(cid, HFP_RESPONSE_AND_HOLD, state); 510ce263fc8SMatthias Ringwald } 511ce263fc8SMatthias Ringwald 512a0ffb263SMatthias Ringwald static uint8_t hfp_ag_suggest_codec(hfp_connection_t *hfp_connection){ 513bc1b1537SMilanka Ringwald if (hfp_connection->sco_for_msbc_failed) return HFP_CODEC_CVSD; 514bc1b1537SMilanka Ringwald 5156a7f44bdSMilanka Ringwald if (hfp_supports_codec(HFP_CODEC_MSBC, hfp_codecs_nr, hfp_codecs)){ 5166a7f44bdSMilanka Ringwald if (hfp_supports_codec(HFP_CODEC_MSBC, hfp_connection->remote_codecs_nr, hfp_connection->remote_codecs)){ 517df327ff3SMilanka Ringwald return HFP_CODEC_MSBC; 5183deb3ec6SMatthias Ringwald } 5193deb3ec6SMatthias Ringwald } 520df327ff3SMilanka Ringwald return HFP_CODEC_CVSD; 5213deb3ec6SMatthias Ringwald } 5223deb3ec6SMatthias Ringwald 52376cc1527SMatthias Ringwald /* state machines */ 52476cc1527SMatthias Ringwald 525afac2a04SMilanka Ringwald static uint8_t hfp_ag_esco_s4_supported(hfp_connection_t * hfp_connection){ 526afac2a04SMilanka Ringwald return (hfp_connection->remote_supported_features & (1<<HFP_HFSF_ESCO_S4)) && (hfp_supported_features & (1<<HFP_AGSF_ESCO_S4)); 5277522e673SMatthias Ringwald } 5287522e673SMatthias Ringwald 529a0ffb263SMatthias Ringwald static int codecs_exchange_state_machine(hfp_connection_t * hfp_connection){ 530aa4dd815SMatthias Ringwald /* events ( == commands): 531aa4dd815SMatthias Ringwald HFP_CMD_AVAILABLE_CODECS == received AT+BAC with list of codecs 532aa4dd815SMatthias Ringwald HFP_CMD_TRIGGER_CODEC_CONNECTION_SETUP: 533aa4dd815SMatthias Ringwald hf_trigger_codec_connection_setup == received BCC 534aa4dd815SMatthias Ringwald ag_trigger_codec_connection_setup == received from AG to send BCS 535aa4dd815SMatthias Ringwald HFP_CMD_HF_CONFIRMED_CODEC == received AT+BCS 536aa4dd815SMatthias Ringwald */ 537a0ffb263SMatthias Ringwald switch (hfp_connection->codecs_state){ 5383e3b9207SMilanka Ringwald case HFP_CODECS_EXCHANGED: 5393e3b9207SMilanka Ringwald if (hfp_connection->command == HFP_CMD_AVAILABLE_CODECS){ 5403e3b9207SMilanka Ringwald hfp_ag_send_ok(hfp_connection->rfcomm_cid); 5413e3b9207SMilanka Ringwald return 1; 5423e3b9207SMilanka Ringwald } 5433e3b9207SMilanka Ringwald break; 5443e3b9207SMilanka Ringwald 545aa4dd815SMatthias Ringwald case HFP_CODECS_RECEIVED_TRIGGER_CODEC_EXCHANGE: 546a0ffb263SMatthias Ringwald hfp_connection->command = HFP_CMD_AG_SEND_COMMON_CODEC; 547aa4dd815SMatthias Ringwald break; 548aa4dd815SMatthias Ringwald case HFP_CODECS_AG_RESEND_COMMON_CODEC: 549a0ffb263SMatthias Ringwald hfp_connection->command = HFP_CMD_AG_SEND_COMMON_CODEC; 550aa4dd815SMatthias Ringwald break; 551aa4dd815SMatthias Ringwald default: 552aa4dd815SMatthias Ringwald break; 553aa4dd815SMatthias Ringwald } 554aa4dd815SMatthias Ringwald 555a0ffb263SMatthias Ringwald switch (hfp_connection->command){ 556aa4dd815SMatthias Ringwald case HFP_CMD_AVAILABLE_CODECS: 557a0ffb263SMatthias Ringwald if (hfp_connection->state < HFP_SERVICE_LEVEL_CONNECTION_ESTABLISHED){ 558a0ffb263SMatthias Ringwald hfp_connection->codecs_state = HFP_CODECS_RECEIVED_LIST; 559485ac19eSMilanka Ringwald hfp_ag_send_ok(hfp_connection->rfcomm_cid); 560aa4dd815SMatthias Ringwald return 1; 561aa4dd815SMatthias Ringwald } 562aa4dd815SMatthias Ringwald 563a0ffb263SMatthias Ringwald switch (hfp_connection->codecs_state){ 564aa4dd815SMatthias Ringwald case HFP_CODECS_AG_SENT_COMMON_CODEC: 565a0ffb263SMatthias Ringwald hfp_connection->codecs_state = HFP_CODECS_AG_RESEND_COMMON_CODEC; 566aa4dd815SMatthias Ringwald break; 567aa4dd815SMatthias Ringwald default: 568aa4dd815SMatthias Ringwald break; 569aa4dd815SMatthias Ringwald } 570485ac19eSMilanka Ringwald hfp_ag_send_ok(hfp_connection->rfcomm_cid); 571aa4dd815SMatthias Ringwald return 1; 572aa4dd815SMatthias Ringwald 573aa4dd815SMatthias Ringwald case HFP_CMD_TRIGGER_CODEC_CONNECTION_SETUP: 574a0ffb263SMatthias Ringwald hfp_connection->codecs_state = HFP_CODECS_RECEIVED_TRIGGER_CODEC_EXCHANGE; 57540e8d6c5SMatthias Ringwald hfp_connection->establish_audio_connection = 1; 576485ac19eSMilanka Ringwald hfp_ag_send_ok(hfp_connection->rfcomm_cid); 577aa4dd815SMatthias Ringwald return 1; 578aa4dd815SMatthias Ringwald 579aa4dd815SMatthias Ringwald case HFP_CMD_AG_SEND_COMMON_CODEC: 580a0ffb263SMatthias Ringwald hfp_connection->codecs_state = HFP_CODECS_AG_SENT_COMMON_CODEC; 581a0ffb263SMatthias Ringwald hfp_connection->suggested_codec = hfp_ag_suggest_codec(hfp_connection); 582485ac19eSMilanka Ringwald hfp_ag_send_suggest_codec_cmd(hfp_connection->rfcomm_cid, hfp_connection->suggested_codec); 583aa4dd815SMatthias Ringwald return 1; 584aa4dd815SMatthias Ringwald 585aa4dd815SMatthias Ringwald case HFP_CMD_HF_CONFIRMED_CODEC: 586a0ffb263SMatthias Ringwald if (hfp_connection->codec_confirmed != hfp_connection->suggested_codec){ 587a0ffb263SMatthias Ringwald hfp_connection->codecs_state = HFP_CODECS_ERROR; 588485ac19eSMilanka Ringwald hfp_ag_send_error(hfp_connection->rfcomm_cid); 589aa4dd815SMatthias Ringwald return 1; 590aa4dd815SMatthias Ringwald } 591a0ffb263SMatthias Ringwald hfp_connection->negotiated_codec = hfp_connection->codec_confirmed; 592a0ffb263SMatthias Ringwald hfp_connection->codecs_state = HFP_CODECS_EXCHANGED; 593c1ab6cc1SMatthias Ringwald log_info("hfp: codec confirmed: %s", (hfp_connection->negotiated_codec == HFP_CODEC_MSBC) ? "mSBC" : "CVSD"); 594485ac19eSMilanka Ringwald hfp_ag_send_ok(hfp_connection->rfcomm_cid); 5957522e673SMatthias Ringwald // now, pick link settings 596afac2a04SMilanka Ringwald hfp_init_link_settings(hfp_connection, hfp_ag_esco_s4_supported(hfp_connection)); 5973721a235SMatthias Ringwald #ifdef ENABLE_CC256X_ASSISTED_HFP 5983721a235SMatthias Ringwald hfp_cc256x_prepare_for_sco(hfp_connection); 5993721a235SMatthias Ringwald #endif 600aa4dd815SMatthias Ringwald return 1; 601aa4dd815SMatthias Ringwald default: 602aa4dd815SMatthias Ringwald break; 603aa4dd815SMatthias Ringwald } 604aa4dd815SMatthias Ringwald return 0; 605aa4dd815SMatthias Ringwald } 606aa4dd815SMatthias Ringwald 607a0ffb263SMatthias Ringwald static void hfp_ag_slc_established(hfp_connection_t * hfp_connection){ 608a0ffb263SMatthias Ringwald hfp_connection->state = HFP_SERVICE_LEVEL_CONNECTION_ESTABLISHED; 609ca59be51SMatthias Ringwald hfp_emit_slc_connection_event(hfp_connection, 0, hfp_connection->acl_handle, hfp_connection->remote_addr); 610aa4dd815SMatthias Ringwald 611a0ffb263SMatthias Ringwald // if active call exist, set per-hfp_connection state active, too (when audio is on) 612d0c20769SMatthias Ringwald if (hfp_gsm_call_status() == HFP_CALL_STATUS_ACTIVE_OR_HELD_CALL_IS_PRESENT){ 613a0ffb263SMatthias Ringwald hfp_connection->call_state = HFP_CALL_W4_AUDIO_CONNECTION_FOR_ACTIVE; 614aa4dd815SMatthias Ringwald } 615ce263fc8SMatthias Ringwald // if AG is ringing, also start ringing on the HF 616c1ab6cc1SMatthias Ringwald if ((hfp_gsm_call_status() == HFP_CALL_STATUS_NO_HELD_OR_ACTIVE_CALLS) && 617505f1c30SMatthias Ringwald (hfp_gsm_callsetup_status() == HFP_CALLSETUP_STATUS_INCOMING_CALL_SETUP_IN_PROGRESS)){ 618a0ffb263SMatthias Ringwald hfp_ag_hf_start_ringing(hfp_connection); 619ce263fc8SMatthias Ringwald } 620aa4dd815SMatthias Ringwald } 6213deb3ec6SMatthias Ringwald 622a0ffb263SMatthias Ringwald static int hfp_ag_run_for_context_service_level_connection(hfp_connection_t * hfp_connection){ 623c79b4cabSMatthias Ringwald // log_info("hfp_ag_run_for_context_service_level_connection state %u, command %u", hfp_connection->state, hfp_connection->command); 624a0ffb263SMatthias Ringwald if (hfp_connection->state >= HFP_SERVICE_LEVEL_CONNECTION_ESTABLISHED) return 0; 625c04cf7ffSMilanka Ringwald int sent = 0; 626a0ffb263SMatthias Ringwald switch(hfp_connection->command){ 6273deb3ec6SMatthias Ringwald case HFP_CMD_SUPPORTED_FEATURES: 628a0ffb263SMatthias Ringwald switch(hfp_connection->state){ 6293deb3ec6SMatthias Ringwald case HFP_W4_EXCHANGE_SUPPORTED_FEATURES: 630aa4dd815SMatthias Ringwald case HFP_EXCHANGE_SUPPORTED_FEATURES: 631d715cf51SMatthias Ringwald hfp_hf_drop_mSBC_if_eSCO_not_supported(hfp_codecs, &hfp_codecs_nr); 632a0ffb263SMatthias Ringwald if (has_codec_negotiation_feature(hfp_connection)){ 633a0ffb263SMatthias Ringwald hfp_connection->state = HFP_W4_NOTIFY_ON_CODECS; 634aa4dd815SMatthias Ringwald } else { 635a0ffb263SMatthias Ringwald hfp_connection->state = HFP_W4_RETRIEVE_INDICATORS; 636aa4dd815SMatthias Ringwald } 637a0ffb263SMatthias Ringwald hfp_ag_exchange_supported_features_cmd(hfp_connection->rfcomm_cid); 638aa4dd815SMatthias Ringwald return 1; 6393deb3ec6SMatthias Ringwald default: 6403deb3ec6SMatthias Ringwald break; 6413deb3ec6SMatthias Ringwald } 6423deb3ec6SMatthias Ringwald break; 6433deb3ec6SMatthias Ringwald case HFP_CMD_AVAILABLE_CODECS: 644c04cf7ffSMilanka Ringwald sent = codecs_exchange_state_machine(hfp_connection); 645a0ffb263SMatthias Ringwald if (hfp_connection->codecs_state == HFP_CODECS_RECEIVED_LIST){ 646a0ffb263SMatthias Ringwald hfp_connection->state = HFP_W4_RETRIEVE_INDICATORS; 6473deb3ec6SMatthias Ringwald } 648c04cf7ffSMilanka Ringwald return sent; 649aa4dd815SMatthias Ringwald 650aa4dd815SMatthias Ringwald case HFP_CMD_RETRIEVE_AG_INDICATORS: 651a0ffb263SMatthias Ringwald if (hfp_connection->state == HFP_W4_RETRIEVE_INDICATORS) { 652473ac565SMatthias Ringwald // HF requested AG Indicators and we did expect it 65384a0c24eSMatthias Ringwald hfp_connection->send_ag_indicators_segment = 0; 654473ac565SMatthias Ringwald hfp_connection->state = HFP_RETRIEVE_INDICATORS; 655473ac565SMatthias Ringwald // continue below in state switch 656ad902e3dSMatthias Ringwald } 657ad902e3dSMatthias Ringwald break; 658aa4dd815SMatthias Ringwald 659aa4dd815SMatthias Ringwald case HFP_CMD_RETRIEVE_AG_INDICATORS_STATUS: 660a0ffb263SMatthias Ringwald if (hfp_connection->state != HFP_W4_RETRIEVE_INDICATORS_STATUS) break; 661a0ffb263SMatthias Ringwald hfp_connection->state = HFP_W4_ENABLE_INDICATORS_STATUS_UPDATE; 662485ac19eSMilanka Ringwald hfp_ag_send_retrieve_indicators_status_cmd(hfp_connection->rfcomm_cid); 663aa4dd815SMatthias Ringwald return 1; 664aa4dd815SMatthias Ringwald 6653deb3ec6SMatthias Ringwald case HFP_CMD_ENABLE_INDICATOR_STATUS_UPDATE: 666a0ffb263SMatthias Ringwald if (hfp_connection->state != HFP_W4_ENABLE_INDICATORS_STATUS_UPDATE) break; 667a0ffb263SMatthias Ringwald if (has_call_waiting_and_3way_calling_feature(hfp_connection)){ 668a0ffb263SMatthias Ringwald hfp_connection->state = HFP_W4_RETRIEVE_CAN_HOLD_CALL; 669a0ffb263SMatthias Ringwald } else if (has_hf_indicators_feature(hfp_connection)){ 670a0ffb263SMatthias Ringwald hfp_connection->state = HFP_W4_LIST_GENERIC_STATUS_INDICATORS; 671aa4dd815SMatthias Ringwald } else { 672a0ffb263SMatthias Ringwald hfp_ag_slc_established(hfp_connection); 6733deb3ec6SMatthias Ringwald } 6748a46ec40SMatthias Ringwald hfp_ag_send_ok(hfp_connection->rfcomm_cid); 675aa4dd815SMatthias Ringwald return 1; 6763deb3ec6SMatthias Ringwald 677aa4dd815SMatthias Ringwald case HFP_CMD_SUPPORT_CALL_HOLD_AND_MULTIPARTY_SERVICES: 678a0ffb263SMatthias Ringwald if (hfp_connection->state != HFP_W4_RETRIEVE_CAN_HOLD_CALL) break; 679a0ffb263SMatthias Ringwald if (has_hf_indicators_feature(hfp_connection)){ 680a0ffb263SMatthias Ringwald hfp_connection->state = HFP_W4_LIST_GENERIC_STATUS_INDICATORS; 681aa4dd815SMatthias Ringwald } 682485ac19eSMilanka Ringwald hfp_ag_send_retrieve_can_hold_call_cmd(hfp_connection->rfcomm_cid); 683a0ffb263SMatthias Ringwald if (!has_hf_indicators_feature(hfp_connection)){ 684a0ffb263SMatthias Ringwald hfp_ag_slc_established(hfp_connection); 685ce263fc8SMatthias Ringwald } 686aa4dd815SMatthias Ringwald return 1; 687aa4dd815SMatthias Ringwald 688aa4dd815SMatthias Ringwald case HFP_CMD_LIST_GENERIC_STATUS_INDICATORS: 689a0ffb263SMatthias Ringwald if (hfp_connection->state != HFP_W4_LIST_GENERIC_STATUS_INDICATORS) break; 690a0ffb263SMatthias Ringwald hfp_connection->state = HFP_W4_RETRIEVE_GENERIC_STATUS_INDICATORS; 691485ac19eSMilanka Ringwald hfp_ag_send_list_supported_generic_status_indicators_cmd(hfp_connection->rfcomm_cid); 692aa4dd815SMatthias Ringwald return 1; 693aa4dd815SMatthias Ringwald 694aa4dd815SMatthias Ringwald case HFP_CMD_RETRIEVE_GENERIC_STATUS_INDICATORS: 695a0ffb263SMatthias Ringwald if (hfp_connection->state != HFP_W4_RETRIEVE_GENERIC_STATUS_INDICATORS) break; 696a0ffb263SMatthias Ringwald hfp_connection->state = HFP_W4_RETRIEVE_INITITAL_STATE_GENERIC_STATUS_INDICATORS; 697485ac19eSMilanka Ringwald hfp_ag_send_retrieve_supported_generic_status_indicators_cmd(hfp_connection->rfcomm_cid); 698aa4dd815SMatthias Ringwald return 1; 699aa4dd815SMatthias Ringwald 700aa4dd815SMatthias Ringwald case HFP_CMD_RETRIEVE_GENERIC_STATUS_INDICATORS_STATE: 701a0ffb263SMatthias Ringwald if (hfp_connection->state != HFP_W4_RETRIEVE_INITITAL_STATE_GENERIC_STATUS_INDICATORS) break; 702a0ffb263SMatthias Ringwald hfp_ag_slc_established(hfp_connection); 703485ac19eSMilanka Ringwald hfp_ag_send_retrieve_initital_supported_generic_status_indicators_cmd(hfp_connection->rfcomm_cid); 704aa4dd815SMatthias Ringwald return 1; 7053deb3ec6SMatthias Ringwald default: 7063deb3ec6SMatthias Ringwald break; 7073deb3ec6SMatthias Ringwald } 708473ac565SMatthias Ringwald 709473ac565SMatthias Ringwald switch (hfp_connection->state){ 710473ac565SMatthias Ringwald case HFP_RETRIEVE_INDICATORS: { 711485ac19eSMilanka Ringwald int next_segment = hfp_ag_send_retrieve_indicators_cmd_via_generator(hfp_connection->rfcomm_cid, hfp_connection, hfp_connection->send_ag_indicators_segment); 712473ac565SMatthias Ringwald int num_segments = hfp_ag_indicators_cmd_generator_num_segments(hfp_connection); 713473ac565SMatthias Ringwald log_info("HFP_CMD_RETRIEVE_AG_INDICATORS next segment %u, num_segments %u", next_segment, num_segments); 714473ac565SMatthias Ringwald if (next_segment < num_segments){ 715473ac565SMatthias Ringwald // prepare sending of next segment 716473ac565SMatthias Ringwald hfp_connection->send_ag_indicators_segment = next_segment; 717473ac565SMatthias Ringwald log_info("HFP_CMD_RETRIEVE_AG_INDICATORS more. command %u, next seg %u", hfp_connection->command, next_segment); 718473ac565SMatthias Ringwald } else { 719473ac565SMatthias Ringwald // done, go to next state 720473ac565SMatthias Ringwald hfp_connection->send_ag_indicators_segment = 0; 721473ac565SMatthias Ringwald hfp_connection->state = HFP_W4_RETRIEVE_INDICATORS_STATUS; 722473ac565SMatthias Ringwald } 723473ac565SMatthias Ringwald return 1; 724473ac565SMatthias Ringwald } 725473ac565SMatthias Ringwald default: 726473ac565SMatthias Ringwald break; 727473ac565SMatthias Ringwald } 728c04cf7ffSMilanka Ringwald return 0; 7293deb3ec6SMatthias Ringwald } 7303deb3ec6SMatthias Ringwald 731a0ffb263SMatthias Ringwald static int hfp_ag_run_for_context_service_level_connection_queries(hfp_connection_t * hfp_connection){ 732c04cf7ffSMilanka Ringwald int sent = codecs_exchange_state_machine(hfp_connection); 733c04cf7ffSMilanka Ringwald if (sent) return 1; 734aa4dd815SMatthias Ringwald 735a0ffb263SMatthias Ringwald switch(hfp_connection->command){ 736aa4dd815SMatthias Ringwald case HFP_CMD_AG_ACTIVATE_VOICE_RECOGNITION: 737485ac19eSMilanka Ringwald hfp_ag_send_activate_voice_recognition_cmd(hfp_connection->rfcomm_cid, hfp_connection->ag_activate_voice_recognition); 73805ce4bb6SMilanka Ringwald if (hfp_connection->ag_activate_voice_recognition > 0){ 73905ce4bb6SMilanka Ringwald hfp_ag_setup_audio_connection(hfp_connection); 74005ce4bb6SMilanka Ringwald } else { 74105ce4bb6SMilanka Ringwald hfp_release_audio_connection(hfp_connection); 74205ce4bb6SMilanka Ringwald } 743aa4dd815SMatthias Ringwald return 1; 744aa4dd815SMatthias Ringwald case HFP_CMD_HF_ACTIVATE_VOICE_RECOGNITION: 745aa4dd815SMatthias Ringwald if (get_bit(hfp_supported_features, HFP_AGSF_VOICE_RECOGNITION_FUNCTION)){ 746485ac19eSMilanka Ringwald hfp_ag_send_ok(hfp_connection->rfcomm_cid); 747aa4dd815SMatthias Ringwald } else { 748485ac19eSMilanka Ringwald hfp_ag_send_error(hfp_connection->rfcomm_cid); 749aa4dd815SMatthias Ringwald } 750aa4dd815SMatthias Ringwald return 1; 751aa4dd815SMatthias Ringwald case HFP_CMD_CHANGE_IN_BAND_RING_TONE_SETTING: 752485ac19eSMilanka Ringwald hfp_ag_send_change_in_band_ring_tone_setting_cmd(hfp_connection->rfcomm_cid); 753aa4dd815SMatthias Ringwald return 1; 754aa4dd815SMatthias Ringwald case HFP_CMD_QUERY_OPERATOR_SELECTION_NAME: 755485ac19eSMilanka Ringwald hfp_ag_send_report_network_operator_name_cmd(hfp_connection->rfcomm_cid, hfp_connection->network_operator); 756aa4dd815SMatthias Ringwald return 1; 757aa4dd815SMatthias Ringwald case HFP_CMD_QUERY_OPERATOR_SELECTION_NAME_FORMAT: 758a0ffb263SMatthias Ringwald if (hfp_connection->network_operator.format != 0){ 759485ac19eSMilanka Ringwald hfp_ag_send_error(hfp_connection->rfcomm_cid); 760aa4dd815SMatthias Ringwald } else { 761485ac19eSMilanka Ringwald hfp_ag_send_ok(hfp_connection->rfcomm_cid); 7623deb3ec6SMatthias Ringwald } 763aa4dd815SMatthias Ringwald return 1; 764aa4dd815SMatthias Ringwald case HFP_CMD_ENABLE_INDIVIDUAL_AG_INDICATOR_STATUS_UPDATE: 765485ac19eSMilanka Ringwald hfp_ag_send_ok(hfp_connection->rfcomm_cid); 766aa4dd815SMatthias Ringwald return 1; 7673deb3ec6SMatthias Ringwald case HFP_CMD_ENABLE_EXTENDED_AUDIO_GATEWAY_ERROR: 768a0ffb263SMatthias Ringwald if (hfp_connection->extended_audio_gateway_error){ 769a0ffb263SMatthias Ringwald hfp_connection->extended_audio_gateway_error = 0; 770485ac19eSMilanka Ringwald hfp_ag_send_report_extended_audio_gateway_error(hfp_connection->rfcomm_cid, hfp_connection->extended_audio_gateway_error_value); 771aa4dd815SMatthias Ringwald return 1; 7723deb3ec6SMatthias Ringwald } 773202c8a4cSMatthias Ringwald break; 7743deb3ec6SMatthias Ringwald case HFP_CMD_ENABLE_INDICATOR_STATUS_UPDATE: 775485ac19eSMilanka Ringwald hfp_ag_send_ok(hfp_connection->rfcomm_cid); 776ce263fc8SMatthias Ringwald return 1; 7773deb3ec6SMatthias Ringwald default: 7783deb3ec6SMatthias Ringwald break; 7793deb3ec6SMatthias Ringwald } 780aa4dd815SMatthias Ringwald return 0; 7813deb3ec6SMatthias Ringwald } 7823deb3ec6SMatthias Ringwald 783a0ffb263SMatthias Ringwald static int hfp_ag_run_for_audio_connection(hfp_connection_t * hfp_connection){ 784505f1c30SMatthias Ringwald if ((hfp_connection->state < HFP_SERVICE_LEVEL_CONNECTION_ESTABLISHED) || 785505f1c30SMatthias Ringwald (hfp_connection->state > HFP_W2_DISCONNECT_SCO)) return 0; 7863deb3ec6SMatthias Ringwald 787a0ffb263SMatthias Ringwald if (hfp_connection->state == HFP_AUDIO_CONNECTION_ESTABLISHED) return 0; 788aa4dd815SMatthias Ringwald 78929cddf58SMatthias Ringwald // accept incoming audio connection (codec negotiation is not used) 79029cddf58SMatthias Ringwald if (hfp_connection->accept_sco){ 79129cddf58SMatthias Ringwald // notify about codec selection if not done already 79229cddf58SMatthias Ringwald if (hfp_connection->negotiated_codec == 0){ 79329cddf58SMatthias Ringwald hfp_connection->negotiated_codec = HFP_CODEC_CVSD; 79429cddf58SMatthias Ringwald } 79529cddf58SMatthias Ringwald // 79629cddf58SMatthias Ringwald bool incoming_eSCO = hfp_connection->accept_sco == 2; 79729cddf58SMatthias Ringwald hfp_connection->accept_sco = 0; 79829cddf58SMatthias Ringwald hfp_connection->state = HFP_W4_SCO_CONNECTED; 79929cddf58SMatthias Ringwald hfp_accept_synchronous_connection(hfp_connection, incoming_eSCO); 80029cddf58SMatthias Ringwald return 1; 80129cddf58SMatthias Ringwald } 80229cddf58SMatthias Ringwald 803aa4dd815SMatthias Ringwald // run codecs exchange 804c04cf7ffSMilanka Ringwald int sent = codecs_exchange_state_machine(hfp_connection); 805c04cf7ffSMilanka Ringwald if (sent) return 1; 806aa4dd815SMatthias Ringwald 807c04cf7ffSMilanka Ringwald if (hfp_connection->codecs_state != HFP_CODECS_EXCHANGED) return 0; 808a0ffb263SMatthias Ringwald if (hfp_connection->establish_audio_connection){ 809a0ffb263SMatthias Ringwald hfp_connection->state = HFP_W4_SCO_CONNECTED; 810a0ffb263SMatthias Ringwald hfp_connection->establish_audio_connection = 0; 811eddcd308SMatthias Ringwald hfp_setup_synchronous_connection(hfp_connection); 812aa4dd815SMatthias Ringwald return 1; 813aa4dd815SMatthias Ringwald } 814aa4dd815SMatthias Ringwald return 0; 815aa4dd815SMatthias Ringwald } 816aa4dd815SMatthias Ringwald 817ec820d77SMatthias Ringwald static hfp_connection_t * hfp_ag_context_for_timer(btstack_timer_source_t * ts){ 818665d90f2SMatthias Ringwald btstack_linked_list_iterator_t it; 819665d90f2SMatthias Ringwald btstack_linked_list_iterator_init(&it, hfp_get_connections()); 820aa4dd815SMatthias Ringwald 821665d90f2SMatthias Ringwald while (btstack_linked_list_iterator_has_next(&it)){ 822a0ffb263SMatthias Ringwald hfp_connection_t * hfp_connection = (hfp_connection_t *)btstack_linked_list_iterator_next(&it); 823a0ffb263SMatthias Ringwald if ( & hfp_connection->hfp_timeout == ts) { 824a0ffb263SMatthias Ringwald return hfp_connection; 825aa4dd815SMatthias Ringwald } 826aa4dd815SMatthias Ringwald } 827aa4dd815SMatthias Ringwald return NULL; 828aa4dd815SMatthias Ringwald } 829aa4dd815SMatthias Ringwald 830ec820d77SMatthias Ringwald static void hfp_timeout_handler(btstack_timer_source_t * timer){ 831d63c37a1SMatthias Ringwald hfp_connection_t * hfp_connection = hfp_ag_context_for_timer(timer); 832d63c37a1SMatthias Ringwald if (!hfp_connection) return; 833aa4dd815SMatthias Ringwald 834d63c37a1SMatthias Ringwald log_info("HFP start ring timeout, con handle 0x%02x", hfp_connection->acl_handle); 835a0ffb263SMatthias Ringwald hfp_connection->ag_ring = 1; 836a0ffb263SMatthias Ringwald hfp_connection->ag_send_clip = hfp_gsm_clip_type() && hfp_connection->clip_enabled; 837aa4dd815SMatthias Ringwald 838a0ffb263SMatthias Ringwald btstack_run_loop_set_timer(& hfp_connection->hfp_timeout, 2000); // 2 seconds timeout 839a0ffb263SMatthias Ringwald btstack_run_loop_add_timer(& hfp_connection->hfp_timeout); 840aa4dd815SMatthias Ringwald 841f0aeb307SMatthias Ringwald hfp_ag_run_for_context(hfp_connection); 842aa4dd815SMatthias Ringwald } 843aa4dd815SMatthias Ringwald 844a0ffb263SMatthias Ringwald static void hfp_timeout_start(hfp_connection_t * hfp_connection){ 845a0ffb263SMatthias Ringwald btstack_run_loop_remove_timer(& hfp_connection->hfp_timeout); 846a0ffb263SMatthias Ringwald btstack_run_loop_set_timer_handler(& hfp_connection->hfp_timeout, hfp_timeout_handler); 847a0ffb263SMatthias Ringwald btstack_run_loop_set_timer(& hfp_connection->hfp_timeout, 2000); // 2 seconds timeout 848a0ffb263SMatthias Ringwald btstack_run_loop_add_timer(& hfp_connection->hfp_timeout); 849aa4dd815SMatthias Ringwald } 850aa4dd815SMatthias Ringwald 851a0ffb263SMatthias Ringwald static void hfp_timeout_stop(hfp_connection_t * hfp_connection){ 852a0ffb263SMatthias Ringwald log_info("HFP stop ring timeout, con handle 0x%02x", hfp_connection->acl_handle); 853a0ffb263SMatthias Ringwald btstack_run_loop_remove_timer(& hfp_connection->hfp_timeout); 854aa4dd815SMatthias Ringwald } 855aa4dd815SMatthias Ringwald 856056efd45SMatthias Ringwald static void hfp_ag_set_callsetup_indicator(void){ 857056efd45SMatthias Ringwald hfp_ag_indicator_t * indicator = get_ag_indicator_for_name("callsetup"); 858056efd45SMatthias Ringwald if (!indicator){ 859056efd45SMatthias Ringwald log_error("hfp_ag_set_callsetup_indicator: callsetup indicator is missing"); 860056efd45SMatthias Ringwald return; 861056efd45SMatthias Ringwald }; 862056efd45SMatthias Ringwald indicator->status = hfp_gsm_callsetup_status(); 863056efd45SMatthias Ringwald } 864056efd45SMatthias Ringwald 865056efd45SMatthias Ringwald static void hfp_ag_set_callheld_indicator(void){ 866056efd45SMatthias Ringwald hfp_ag_indicator_t * indicator = get_ag_indicator_for_name("callheld"); 867056efd45SMatthias Ringwald if (!indicator){ 868056efd45SMatthias Ringwald log_error("hfp_ag_set_callheld_state: callheld indicator is missing"); 869056efd45SMatthias Ringwald return; 870056efd45SMatthias Ringwald }; 871056efd45SMatthias Ringwald indicator->status = hfp_gsm_callheld_status(); 872056efd45SMatthias Ringwald } 873056efd45SMatthias Ringwald 874aa4dd815SMatthias Ringwald // 875aa4dd815SMatthias Ringwald // transitition implementations for hfp_ag_call_state_machine 876aa4dd815SMatthias Ringwald // 877aa4dd815SMatthias Ringwald 878a0ffb263SMatthias Ringwald static void hfp_ag_hf_start_ringing(hfp_connection_t * hfp_connection){ 879aa4dd815SMatthias Ringwald if (use_in_band_tone()){ 880a0ffb263SMatthias Ringwald hfp_connection->call_state = HFP_CALL_W4_AUDIO_CONNECTION_FOR_IN_BAND_RING; 881d97d752dSMilanka Ringwald hfp_ag_establish_audio_connection(hfp_connection->acl_handle); 882aa4dd815SMatthias Ringwald } else { 883a0ffb263SMatthias Ringwald hfp_timeout_start(hfp_connection); 884a0ffb263SMatthias Ringwald hfp_connection->ag_ring = 1; 885a0ffb263SMatthias Ringwald hfp_connection->ag_send_clip = hfp_gsm_clip_type() && hfp_connection->clip_enabled; 886a0ffb263SMatthias Ringwald hfp_connection->call_state = HFP_CALL_RINGING; 887ca59be51SMatthias Ringwald hfp_emit_simple_event(hfp_connection, HFP_SUBEVENT_START_RINGINIG); 888aa4dd815SMatthias Ringwald } 889aa4dd815SMatthias Ringwald } 890aa4dd815SMatthias Ringwald 891a0ffb263SMatthias Ringwald static void hfp_ag_hf_stop_ringing(hfp_connection_t * hfp_connection){ 892a0ffb263SMatthias Ringwald hfp_connection->ag_ring = 0; 893a0ffb263SMatthias Ringwald hfp_connection->ag_send_clip = 0; 894a0ffb263SMatthias Ringwald hfp_timeout_stop(hfp_connection); 895ca59be51SMatthias Ringwald hfp_emit_simple_event(hfp_connection, HFP_SUBEVENT_STOP_RINGINIG); 896aa4dd815SMatthias Ringwald } 897aa4dd815SMatthias Ringwald 898aa4dd815SMatthias Ringwald static void hfp_ag_trigger_incoming_call(void){ 899aa4dd815SMatthias Ringwald int indicator_index = get_ag_indicator_index_for_name("callsetup"); 900aa4dd815SMatthias Ringwald if (indicator_index < 0) return; 901aa4dd815SMatthias Ringwald 902665d90f2SMatthias Ringwald btstack_linked_list_iterator_t it; 903665d90f2SMatthias Ringwald btstack_linked_list_iterator_init(&it, hfp_get_connections()); 904665d90f2SMatthias Ringwald while (btstack_linked_list_iterator_has_next(&it)){ 905a0ffb263SMatthias Ringwald hfp_connection_t * hfp_connection = (hfp_connection_t *)btstack_linked_list_iterator_next(&it); 90666c5995fSMatthias Ringwald if (hfp_connection->local_role != HFP_ROLE_AG) continue; 907a0ffb263SMatthias Ringwald hfp_ag_establish_service_level_connection(hfp_connection->remote_addr); 908a0ffb263SMatthias Ringwald if (hfp_connection->call_state == HFP_CALL_IDLE){ 909a0ffb263SMatthias Ringwald hfp_connection->ag_indicators_status_update_bitmap = store_bit(hfp_connection->ag_indicators_status_update_bitmap, indicator_index, 1); 910d63c37a1SMatthias Ringwald hfp_ag_hf_start_ringing(hfp_connection); 911aa4dd815SMatthias Ringwald } 912a0ffb263SMatthias Ringwald if (hfp_connection->call_state == HFP_CALL_ACTIVE){ 913a0ffb263SMatthias Ringwald hfp_connection->call_state = HFP_CALL_W2_SEND_CALL_WAITING; 914aa4dd815SMatthias Ringwald } 915f0aeb307SMatthias Ringwald hfp_ag_run_for_context(hfp_connection); 916aa4dd815SMatthias Ringwald } 917aa4dd815SMatthias Ringwald } 918aa4dd815SMatthias Ringwald 919*fe899794SMatthias Ringwald static void hfp_ag_trigger_outgoing_call(void){ 920*fe899794SMatthias Ringwald btstack_linked_list_iterator_t it; 921*fe899794SMatthias Ringwald btstack_linked_list_iterator_init(&it, hfp_get_connections()); 922*fe899794SMatthias Ringwald while (btstack_linked_list_iterator_has_next(&it)){ 923*fe899794SMatthias Ringwald hfp_connection_t * hfp_connection = (hfp_connection_t *)btstack_linked_list_iterator_next(&it); 924*fe899794SMatthias Ringwald if (hfp_connection->local_role != HFP_ROLE_AG) continue; 925*fe899794SMatthias Ringwald hfp_ag_establish_service_level_connection(hfp_connection->remote_addr); 926*fe899794SMatthias Ringwald if (hfp_connection->call_state == HFP_CALL_IDLE){ 927*fe899794SMatthias Ringwald hfp_connection->call_state = HFP_CALL_OUTGOING_INITIATED; 928*fe899794SMatthias Ringwald } 929*fe899794SMatthias Ringwald } 930*fe899794SMatthias Ringwald } 9315a7033e2SMatthias Ringwald 9325a7033e2SMatthias Ringwald static void hfp_ag_handle_outgoing_call_accepted(hfp_connection_t * hfp_connection){ 9335a7033e2SMatthias Ringwald hfp_connection->call_state = HFP_CALL_OUTGOING_DIALING; 9345a7033e2SMatthias Ringwald 9355a7033e2SMatthias Ringwald // trigger callsetup to be 9365a7033e2SMatthias Ringwald int put_call_on_hold = hfp_gsm_call_status() == HFP_CALL_STATUS_ACTIVE_OR_HELD_CALL_IS_PRESENT; 9375a7033e2SMatthias Ringwald hfp_gsm_handler(HFP_AG_OUTGOING_CALL_ACCEPTED, 0, 0, NULL); 9385a7033e2SMatthias Ringwald 9395a7033e2SMatthias Ringwald int indicator_index ; 9405a7033e2SMatthias Ringwald 9415a7033e2SMatthias Ringwald hfp_ag_set_callsetup_indicator(); 9425a7033e2SMatthias Ringwald indicator_index = get_ag_indicator_index_for_name("callsetup"); 9435a7033e2SMatthias Ringwald hfp_connection->ag_indicators_status_update_bitmap = store_bit(hfp_connection->ag_indicators_status_update_bitmap, indicator_index, 1); 9445a7033e2SMatthias Ringwald 9455a7033e2SMatthias Ringwald // put current call on hold if active 9465a7033e2SMatthias Ringwald if (put_call_on_hold){ 9475a7033e2SMatthias Ringwald log_info("AG putting current call on hold for new outgoing call"); 9485a7033e2SMatthias Ringwald hfp_ag_set_callheld_indicator(); 9495a7033e2SMatthias Ringwald indicator_index = get_ag_indicator_index_for_name("callheld"); 9505a7033e2SMatthias Ringwald hfp_ag_send_transfer_ag_indicators_status_cmd(hfp_connection->rfcomm_cid, &hfp_ag_indicators[indicator_index]); 9515a7033e2SMatthias Ringwald } 9525a7033e2SMatthias Ringwald 9535a7033e2SMatthias Ringwald // start audio if needed 9545a7033e2SMatthias Ringwald hfp_ag_establish_audio_connection(hfp_connection->acl_handle); 9555a7033e2SMatthias Ringwald } 956*fe899794SMatthias Ringwald 9574a2e058fSMatthias Ringwald static void hfp_ag_transfer_indicator(const char * name){ 9584a2e058fSMatthias Ringwald int indicator_index = get_ag_indicator_index_for_name(name); 959aa4dd815SMatthias Ringwald if (indicator_index < 0) return; 960aa4dd815SMatthias Ringwald 961665d90f2SMatthias Ringwald btstack_linked_list_iterator_t it; 962665d90f2SMatthias Ringwald btstack_linked_list_iterator_init(&it, hfp_get_connections()); 963665d90f2SMatthias Ringwald while (btstack_linked_list_iterator_has_next(&it)){ 964a0ffb263SMatthias Ringwald hfp_connection_t * hfp_connection = (hfp_connection_t *)btstack_linked_list_iterator_next(&it); 96566c5995fSMatthias Ringwald if (hfp_connection->local_role != HFP_ROLE_AG) continue; 966a0ffb263SMatthias Ringwald hfp_ag_establish_service_level_connection(hfp_connection->remote_addr); 967a0ffb263SMatthias Ringwald hfp_connection->ag_indicators_status_update_bitmap = store_bit(hfp_connection->ag_indicators_status_update_bitmap, indicator_index, 1); 968f0aeb307SMatthias Ringwald hfp_ag_run_for_context(hfp_connection); 969aa4dd815SMatthias Ringwald } 970aa4dd815SMatthias Ringwald } 971aa4dd815SMatthias Ringwald 9724a2e058fSMatthias Ringwald static void hfp_ag_transfer_callsetup_state(void){ 9734a2e058fSMatthias Ringwald hfp_ag_transfer_indicator("callsetup"); 9744a2e058fSMatthias Ringwald } 9754a2e058fSMatthias Ringwald 976aa4dd815SMatthias Ringwald static void hfp_ag_transfer_call_state(void){ 9774a2e058fSMatthias Ringwald hfp_ag_transfer_indicator("call"); 978aa4dd815SMatthias Ringwald } 979aa4dd815SMatthias Ringwald 980aa4dd815SMatthias Ringwald static void hfp_ag_transfer_callheld_state(void){ 9814a2e058fSMatthias Ringwald hfp_ag_transfer_indicator("callheld"); 982aa4dd815SMatthias Ringwald } 983aa4dd815SMatthias Ringwald 984aa4dd815SMatthias Ringwald static void hfp_ag_hf_accept_call(hfp_connection_t * source){ 985aa4dd815SMatthias Ringwald int call_indicator_index = get_ag_indicator_index_for_name("call"); 986aa4dd815SMatthias Ringwald int callsetup_indicator_index = get_ag_indicator_index_for_name("callsetup"); 987aa4dd815SMatthias Ringwald 988665d90f2SMatthias Ringwald btstack_linked_list_iterator_t it; 989665d90f2SMatthias Ringwald btstack_linked_list_iterator_init(&it, hfp_get_connections()); 990665d90f2SMatthias Ringwald while (btstack_linked_list_iterator_has_next(&it)){ 991a0ffb263SMatthias Ringwald hfp_connection_t * hfp_connection = (hfp_connection_t *)btstack_linked_list_iterator_next(&it); 99266c5995fSMatthias Ringwald if (hfp_connection->local_role != HFP_ROLE_AG) continue; 993505f1c30SMatthias Ringwald if ((hfp_connection->call_state != HFP_CALL_RINGING) && 994505f1c30SMatthias Ringwald (hfp_connection->call_state != HFP_CALL_W4_AUDIO_CONNECTION_FOR_IN_BAND_RING)) continue; 995aa4dd815SMatthias Ringwald 996a0ffb263SMatthias Ringwald hfp_ag_hf_stop_ringing(hfp_connection); 997a0ffb263SMatthias Ringwald if (hfp_connection == source){ 998aa4dd815SMatthias Ringwald 999aa4dd815SMatthias Ringwald if (use_in_band_tone()){ 1000a0ffb263SMatthias Ringwald hfp_connection->call_state = HFP_CALL_ACTIVE; 1001aa4dd815SMatthias Ringwald } else { 1002a0ffb263SMatthias Ringwald hfp_connection->call_state = HFP_CALL_W4_AUDIO_CONNECTION_FOR_ACTIVE; 1003d97d752dSMilanka Ringwald hfp_ag_establish_audio_connection(hfp_connection->acl_handle); 1004aa4dd815SMatthias Ringwald } 1005aa4dd815SMatthias Ringwald 1006a0ffb263SMatthias Ringwald hfp_connection->ag_indicators_status_update_bitmap = store_bit(hfp_connection->ag_indicators_status_update_bitmap, call_indicator_index, 1); 1007a0ffb263SMatthias Ringwald hfp_connection->ag_indicators_status_update_bitmap = store_bit(hfp_connection->ag_indicators_status_update_bitmap, callsetup_indicator_index, 1); 1008aa4dd815SMatthias Ringwald 1009aa4dd815SMatthias Ringwald } else { 1010a0ffb263SMatthias Ringwald hfp_connection->call_state = HFP_CALL_IDLE; 1011aa4dd815SMatthias Ringwald } 1012f0aeb307SMatthias Ringwald hfp_ag_run_for_context(hfp_connection); 1013aa4dd815SMatthias Ringwald } 1014aa4dd815SMatthias Ringwald } 1015aa4dd815SMatthias Ringwald 1016aa4dd815SMatthias Ringwald static void hfp_ag_ag_accept_call(void){ 1017aa4dd815SMatthias Ringwald int call_indicator_index = get_ag_indicator_index_for_name("call"); 1018aa4dd815SMatthias Ringwald int callsetup_indicator_index = get_ag_indicator_index_for_name("callsetup"); 1019aa4dd815SMatthias Ringwald 1020665d90f2SMatthias Ringwald btstack_linked_list_iterator_t it; 1021665d90f2SMatthias Ringwald btstack_linked_list_iterator_init(&it, hfp_get_connections()); 1022665d90f2SMatthias Ringwald while (btstack_linked_list_iterator_has_next(&it)){ 1023a0ffb263SMatthias Ringwald hfp_connection_t * hfp_connection = (hfp_connection_t *)btstack_linked_list_iterator_next(&it); 102466c5995fSMatthias Ringwald if (hfp_connection->local_role != HFP_ROLE_AG) continue; 1025a0ffb263SMatthias Ringwald if (hfp_connection->call_state != HFP_CALL_RINGING) continue; 1026aa4dd815SMatthias Ringwald 1027a0ffb263SMatthias Ringwald hfp_ag_hf_stop_ringing(hfp_connection); 1028a0ffb263SMatthias Ringwald hfp_connection->call_state = HFP_CALL_TRIGGER_AUDIO_CONNECTION; 1029aa4dd815SMatthias Ringwald 1030a0ffb263SMatthias Ringwald hfp_connection->ag_indicators_status_update_bitmap = store_bit(hfp_connection->ag_indicators_status_update_bitmap, call_indicator_index, 1); 1031a0ffb263SMatthias Ringwald hfp_connection->ag_indicators_status_update_bitmap = store_bit(hfp_connection->ag_indicators_status_update_bitmap, callsetup_indicator_index, 1); 1032aa4dd815SMatthias Ringwald 1033f0aeb307SMatthias Ringwald hfp_ag_run_for_context(hfp_connection); 1034aa4dd815SMatthias Ringwald break; // only single 1035aa4dd815SMatthias Ringwald } 1036aa4dd815SMatthias Ringwald } 1037aa4dd815SMatthias Ringwald 1038aa4dd815SMatthias Ringwald static void hfp_ag_trigger_reject_call(void){ 1039aa4dd815SMatthias Ringwald int callsetup_indicator_index = get_ag_indicator_index_for_name("callsetup"); 1040665d90f2SMatthias Ringwald btstack_linked_list_iterator_t it; 1041665d90f2SMatthias Ringwald btstack_linked_list_iterator_init(&it, hfp_get_connections()); 1042665d90f2SMatthias Ringwald while (btstack_linked_list_iterator_has_next(&it)){ 1043665d90f2SMatthias Ringwald hfp_connection_t * connection = (hfp_connection_t *)btstack_linked_list_iterator_next(&it); 104466c5995fSMatthias Ringwald if (connection->local_role != HFP_ROLE_AG) continue; 1045505f1c30SMatthias Ringwald if ((connection->call_state != HFP_CALL_RINGING) && 1046505f1c30SMatthias Ringwald (connection->call_state != HFP_CALL_W4_AUDIO_CONNECTION_FOR_IN_BAND_RING)) continue; 1047aa4dd815SMatthias Ringwald hfp_ag_hf_stop_ringing(connection); 1048aa4dd815SMatthias Ringwald connection->ag_indicators_status_update_bitmap = store_bit(connection->ag_indicators_status_update_bitmap, callsetup_indicator_index, 1); 1049aa4dd815SMatthias Ringwald connection->call_state = HFP_CALL_IDLE; 1050f0aeb307SMatthias Ringwald hfp_ag_run_for_context(connection); 1051aa4dd815SMatthias Ringwald } 1052aa4dd815SMatthias Ringwald } 1053aa4dd815SMatthias Ringwald 1054aa4dd815SMatthias Ringwald static void hfp_ag_trigger_terminate_call(void){ 1055aa4dd815SMatthias Ringwald int call_indicator_index = get_ag_indicator_index_for_name("call"); 1056aa4dd815SMatthias Ringwald 1057665d90f2SMatthias Ringwald btstack_linked_list_iterator_t it; 1058665d90f2SMatthias Ringwald btstack_linked_list_iterator_init(&it, hfp_get_connections()); 1059665d90f2SMatthias Ringwald while (btstack_linked_list_iterator_has_next(&it)){ 1060a0ffb263SMatthias Ringwald hfp_connection_t * hfp_connection = (hfp_connection_t *)btstack_linked_list_iterator_next(&it); 106166c5995fSMatthias Ringwald if (hfp_connection->local_role != HFP_ROLE_AG) continue; 1062d63c37a1SMatthias Ringwald hfp_ag_establish_service_level_connection(hfp_connection->remote_addr); 1063a0ffb263SMatthias Ringwald if (hfp_connection->call_state == HFP_CALL_IDLE) continue; 1064a0ffb263SMatthias Ringwald hfp_connection->call_state = HFP_CALL_IDLE; 1065a0ffb263SMatthias Ringwald hfp_connection->ag_indicators_status_update_bitmap = store_bit(hfp_connection->ag_indicators_status_update_bitmap, call_indicator_index, 1); 10666d78145cSMatthias Ringwald if (hfp_connection->state == HFP_AUDIO_CONNECTION_ESTABLISHED){ 1067a0ffb263SMatthias Ringwald hfp_connection->release_audio_connection = 1; 10686d78145cSMatthias Ringwald } 1069f0aeb307SMatthias Ringwald hfp_ag_run_for_context(hfp_connection); 1070aa4dd815SMatthias Ringwald } 10717d81706fSMatthias Ringwald hfp_emit_simple_event(NULL, HFP_SUBEVENT_CALL_TERMINATED); 1072aa4dd815SMatthias Ringwald } 1073aa4dd815SMatthias Ringwald 10740cb5b971SMatthias Ringwald static void hfp_ag_set_call_indicator(void){ 1075aa4dd815SMatthias Ringwald hfp_ag_indicator_t * indicator = get_ag_indicator_for_name("call"); 1076aa4dd815SMatthias Ringwald if (!indicator){ 1077aa4dd815SMatthias Ringwald log_error("hfp_ag_set_call_state: call indicator is missing"); 107845718b6fSMatthias Ringwald return; 1079aa4dd815SMatthias Ringwald }; 1080d210d9c4SMatthias Ringwald indicator->status = hfp_gsm_call_status(); 1081aa4dd815SMatthias Ringwald } 1082aa4dd815SMatthias Ringwald 1083aa4dd815SMatthias Ringwald static void hfp_ag_stop_ringing(void){ 1084665d90f2SMatthias Ringwald btstack_linked_list_iterator_t it; 1085665d90f2SMatthias Ringwald btstack_linked_list_iterator_init(&it, hfp_get_connections()); 1086665d90f2SMatthias Ringwald while (btstack_linked_list_iterator_has_next(&it)){ 1087a0ffb263SMatthias Ringwald hfp_connection_t * hfp_connection = (hfp_connection_t *)btstack_linked_list_iterator_next(&it); 108866c5995fSMatthias Ringwald if (hfp_connection->local_role != HFP_ROLE_AG) continue; 1089505f1c30SMatthias Ringwald if ((hfp_connection->call_state != HFP_CALL_RINGING) && 1090505f1c30SMatthias Ringwald (hfp_connection->call_state != HFP_CALL_W4_AUDIO_CONNECTION_FOR_IN_BAND_RING)) continue; 1091a0ffb263SMatthias Ringwald hfp_ag_hf_stop_ringing(hfp_connection); 1092aa4dd815SMatthias Ringwald } 1093aa4dd815SMatthias Ringwald } 1094aa4dd815SMatthias Ringwald 1095aa4dd815SMatthias Ringwald static hfp_connection_t * hfp_ag_connection_for_call_state(hfp_call_state_t call_state){ 1096665d90f2SMatthias Ringwald btstack_linked_list_iterator_t it; 1097665d90f2SMatthias Ringwald btstack_linked_list_iterator_init(&it, hfp_get_connections()); 1098665d90f2SMatthias Ringwald while (btstack_linked_list_iterator_has_next(&it)){ 1099a0ffb263SMatthias Ringwald hfp_connection_t * hfp_connection = (hfp_connection_t *)btstack_linked_list_iterator_next(&it); 110066c5995fSMatthias Ringwald if (hfp_connection->local_role != HFP_ROLE_AG) continue; 1101a0ffb263SMatthias Ringwald if (hfp_connection->call_state == call_state) return hfp_connection; 1102aa4dd815SMatthias Ringwald } 1103aa4dd815SMatthias Ringwald return NULL; 1104aa4dd815SMatthias Ringwald } 1105aa4dd815SMatthias Ringwald 1106a5bdcda8SMatthias Ringwald static void hfp_ag_send_response_and_hold_state(hfp_response_and_hold_state_t state){ 1107665d90f2SMatthias Ringwald btstack_linked_list_iterator_t it; 1108665d90f2SMatthias Ringwald btstack_linked_list_iterator_init(&it, hfp_get_connections()); 1109665d90f2SMatthias Ringwald while (btstack_linked_list_iterator_has_next(&it)){ 1110a0ffb263SMatthias Ringwald hfp_connection_t * hfp_connection = (hfp_connection_t *)btstack_linked_list_iterator_next(&it); 111166c5995fSMatthias Ringwald if (hfp_connection->local_role != HFP_ROLE_AG) continue; 1112a0ffb263SMatthias Ringwald hfp_connection->send_response_and_hold_status = state + 1; 1113ce263fc8SMatthias Ringwald } 1114ce263fc8SMatthias Ringwald } 1115ce263fc8SMatthias Ringwald 1116a0ffb263SMatthias Ringwald static int call_setup_state_machine(hfp_connection_t * hfp_connection){ 1117aa4dd815SMatthias Ringwald int indicator_index; 1118a0ffb263SMatthias Ringwald switch (hfp_connection->call_state){ 1119aa4dd815SMatthias Ringwald case HFP_CALL_W4_AUDIO_CONNECTION_FOR_IN_BAND_RING: 1120a0ffb263SMatthias Ringwald if (hfp_connection->state != HFP_AUDIO_CONNECTION_ESTABLISHED) return 0; 1121a0ffb263SMatthias Ringwald // we got event: audio hfp_connection established 1122a0ffb263SMatthias Ringwald hfp_timeout_start(hfp_connection); 1123a0ffb263SMatthias Ringwald hfp_connection->ag_ring = 1; 1124a0ffb263SMatthias Ringwald hfp_connection->ag_send_clip = hfp_gsm_clip_type() && hfp_connection->clip_enabled; 1125a0ffb263SMatthias Ringwald hfp_connection->call_state = HFP_CALL_RINGING; 1126ca59be51SMatthias Ringwald hfp_emit_simple_event(hfp_connection, HFP_SUBEVENT_START_RINGINIG); 1127aa4dd815SMatthias Ringwald break; 1128aa4dd815SMatthias Ringwald case HFP_CALL_W4_AUDIO_CONNECTION_FOR_ACTIVE: 1129a0ffb263SMatthias Ringwald if (hfp_connection->state != HFP_AUDIO_CONNECTION_ESTABLISHED) return 0; 1130a0ffb263SMatthias Ringwald // we got event: audio hfp_connection established 1131a0ffb263SMatthias Ringwald hfp_connection->call_state = HFP_CALL_ACTIVE; 1132aa4dd815SMatthias Ringwald break; 1133aa4dd815SMatthias Ringwald case HFP_CALL_W2_SEND_CALL_WAITING: 1134a0ffb263SMatthias Ringwald hfp_connection->call_state = HFP_CALL_W4_CHLD; 1135a0ffb263SMatthias Ringwald hfp_ag_send_call_waiting_notification(hfp_connection->rfcomm_cid); 1136aa4dd815SMatthias Ringwald indicator_index = get_ag_indicator_index_for_name("callsetup"); 1137a0ffb263SMatthias Ringwald hfp_connection->ag_indicators_status_update_bitmap = store_bit(hfp_connection->ag_indicators_status_update_bitmap, indicator_index, 1); 1138aa4dd815SMatthias Ringwald break; 1139aa4dd815SMatthias Ringwald default: 1140aa4dd815SMatthias Ringwald break; 1141aa4dd815SMatthias Ringwald } 1142aa4dd815SMatthias Ringwald return 0; 1143aa4dd815SMatthias Ringwald } 114439426febSMatthias Ringwald 114539426febSMatthias Ringwald // functions extracted from hfp_ag_call_sm below 11469f9621cfSMatthias Ringwald static void hfp_ag_handle_reject_outgoing_call(void){ 114739426febSMatthias Ringwald hfp_connection_t * hfp_connection = hfp_ag_connection_for_call_state(HFP_CALL_OUTGOING_INITIATED); 114839426febSMatthias Ringwald if (!hfp_connection){ 114939426febSMatthias Ringwald log_info("hfp_ag_call_sm: did not find outgoing hfp_connection in initiated state"); 115039426febSMatthias Ringwald return; 115139426febSMatthias Ringwald } 115239426febSMatthias Ringwald 1153f8737b81SMatthias Ringwald hfp_gsm_handler(HFP_AG_OUTGOING_CALL_REJECTED, 0, 0, NULL); 115439426febSMatthias Ringwald hfp_connection->call_state = HFP_CALL_IDLE; 115539426febSMatthias Ringwald hfp_connection->send_error = 1; 115639426febSMatthias Ringwald hfp_ag_run_for_context(hfp_connection); 115739426febSMatthias Ringwald } 115839426febSMatthias Ringwald 1159a0ffb263SMatthias Ringwald // hfp_connection is used to identify originating HF 1160a0ffb263SMatthias Ringwald static void hfp_ag_call_sm(hfp_ag_call_event_t event, hfp_connection_t * hfp_connection){ 1161aa4dd815SMatthias Ringwald int indicator_index; 1162d210d9c4SMatthias Ringwald int callsetup_indicator_index = get_ag_indicator_index_for_name("callsetup"); 1163d210d9c4SMatthias Ringwald int callheld_indicator_index = get_ag_indicator_index_for_name("callheld"); 1164d210d9c4SMatthias Ringwald int call_indicator_index = get_ag_indicator_index_for_name("call"); 116574386ee0SMatthias Ringwald 1166aa4dd815SMatthias Ringwald switch (event){ 1167aa4dd815SMatthias Ringwald case HFP_AG_INCOMING_CALL: 1168d0c20769SMatthias Ringwald switch (hfp_gsm_call_status()){ 1169aa4dd815SMatthias Ringwald case HFP_CALL_STATUS_NO_HELD_OR_ACTIVE_CALLS: 1170d0c20769SMatthias Ringwald switch (hfp_gsm_callsetup_status()){ 117112cbbeeeSMatthias Ringwald case HFP_CALLSETUP_STATUS_NO_CALL_SETUP_IN_PROGRESS: 1172f8737b81SMatthias Ringwald hfp_gsm_handler(HFP_AG_INCOMING_CALL, 0, 0, NULL); 1173d0c20769SMatthias Ringwald hfp_ag_set_callsetup_indicator(); 1174aa4dd815SMatthias Ringwald hfp_ag_trigger_incoming_call(); 117560ebb071SMilanka Ringwald log_info("AG rings"); 1176aa4dd815SMatthias Ringwald break; 1177aa4dd815SMatthias Ringwald default: 11783deb3ec6SMatthias Ringwald break; 11793deb3ec6SMatthias Ringwald } 11803deb3ec6SMatthias Ringwald break; 1181aa4dd815SMatthias Ringwald case HFP_CALL_STATUS_ACTIVE_OR_HELD_CALL_IS_PRESENT: 1182d0c20769SMatthias Ringwald switch (hfp_gsm_callsetup_status()){ 118312cbbeeeSMatthias Ringwald case HFP_CALLSETUP_STATUS_NO_CALL_SETUP_IN_PROGRESS: 1184f8737b81SMatthias Ringwald hfp_gsm_handler(HFP_AG_INCOMING_CALL, 0, 0, NULL); 1185d0c20769SMatthias Ringwald hfp_ag_set_callsetup_indicator(); 1186aa4dd815SMatthias Ringwald hfp_ag_trigger_incoming_call(); 118760ebb071SMilanka Ringwald log_info("AG call waiting"); 1188aa4dd815SMatthias Ringwald break; 1189aa4dd815SMatthias Ringwald default: 11903deb3ec6SMatthias Ringwald break; 11913deb3ec6SMatthias Ringwald } 11923deb3ec6SMatthias Ringwald break; 11937bbeb3adSMilanka Ringwald default: 11947bbeb3adSMilanka Ringwald break; 1195aa4dd815SMatthias Ringwald } 1196aa4dd815SMatthias Ringwald break; 1197aa4dd815SMatthias Ringwald case HFP_AG_INCOMING_CALL_ACCEPTED_BY_AG: 1198d0c20769SMatthias Ringwald switch (hfp_gsm_call_status()){ 1199aa4dd815SMatthias Ringwald case HFP_CALL_STATUS_NO_HELD_OR_ACTIVE_CALLS: 1200d0c20769SMatthias Ringwald switch (hfp_gsm_callsetup_status()){ 120112cbbeeeSMatthias Ringwald case HFP_CALLSETUP_STATUS_INCOMING_CALL_SETUP_IN_PROGRESS: 1202f8737b81SMatthias Ringwald hfp_gsm_handler(HFP_AG_INCOMING_CALL_ACCEPTED_BY_AG, 0, 0, NULL); 1203d210d9c4SMatthias Ringwald hfp_ag_set_call_indicator(); 1204d0c20769SMatthias Ringwald hfp_ag_set_callsetup_indicator(); 1205aa4dd815SMatthias Ringwald hfp_ag_ag_accept_call(); 120660ebb071SMilanka Ringwald log_info("AG answers call, accept call by GSM"); 1207aa4dd815SMatthias Ringwald break; 1208aa4dd815SMatthias Ringwald default: 12093deb3ec6SMatthias Ringwald break; 12103deb3ec6SMatthias Ringwald } 1211aa4dd815SMatthias Ringwald break; 1212aa4dd815SMatthias Ringwald case HFP_CALL_STATUS_ACTIVE_OR_HELD_CALL_IS_PRESENT: 1213d0c20769SMatthias Ringwald switch (hfp_gsm_callsetup_status()){ 1214aa4dd815SMatthias Ringwald case HFP_CALLSETUP_STATUS_INCOMING_CALL_SETUP_IN_PROGRESS: 121560ebb071SMilanka Ringwald log_info("AG: current call is placed on hold, incoming call gets active"); 1216f8737b81SMatthias Ringwald hfp_gsm_handler(HFP_AG_INCOMING_CALL_ACCEPTED_BY_AG, 0, 0, NULL); 1217d0c20769SMatthias Ringwald hfp_ag_set_callsetup_indicator(); 1218d0c20769SMatthias Ringwald hfp_ag_set_callheld_indicator(); 1219ce263fc8SMatthias Ringwald hfp_ag_transfer_callsetup_state(); 1220ce263fc8SMatthias Ringwald hfp_ag_transfer_callheld_state(); 1221aa4dd815SMatthias Ringwald break; 1222aa4dd815SMatthias Ringwald default: 1223aa4dd815SMatthias Ringwald break; 1224aa4dd815SMatthias Ringwald } 1225aa4dd815SMatthias Ringwald break; 12267bbeb3adSMilanka Ringwald default: 12277bbeb3adSMilanka Ringwald break; 1228aa4dd815SMatthias Ringwald } 1229aa4dd815SMatthias Ringwald break; 1230ce263fc8SMatthias Ringwald 1231ce263fc8SMatthias Ringwald case HFP_AG_HELD_CALL_JOINED_BY_AG: 1232d0c20769SMatthias Ringwald switch (hfp_gsm_call_status()){ 1233ce263fc8SMatthias Ringwald case HFP_CALL_STATUS_ACTIVE_OR_HELD_CALL_IS_PRESENT: 1234d0c20769SMatthias Ringwald switch (hfp_gsm_callheld_status()){ 1235ce263fc8SMatthias Ringwald case HFP_CALLHELD_STATUS_CALL_ON_HOLD_OR_SWAPPED: 123660ebb071SMilanka Ringwald log_info("AG: joining held call with active call"); 1237f8737b81SMatthias Ringwald hfp_gsm_handler(HFP_AG_HELD_CALL_JOINED_BY_AG, 0, 0, NULL); 1238d0c20769SMatthias Ringwald hfp_ag_set_callheld_indicator(); 1239ce263fc8SMatthias Ringwald hfp_ag_transfer_callheld_state(); 1240ca59be51SMatthias Ringwald hfp_emit_simple_event(hfp_connection, HFP_SUBEVENT_CONFERENCE_CALL); 1241ce263fc8SMatthias Ringwald break; 1242ce263fc8SMatthias Ringwald default: 1243ce263fc8SMatthias Ringwald break; 1244ce263fc8SMatthias Ringwald } 1245ce263fc8SMatthias Ringwald break; 1246ce263fc8SMatthias Ringwald default: 1247ce263fc8SMatthias Ringwald break; 1248ce263fc8SMatthias Ringwald } 1249ce263fc8SMatthias Ringwald break; 1250ce263fc8SMatthias Ringwald 1251aa4dd815SMatthias Ringwald case HFP_AG_INCOMING_CALL_ACCEPTED_BY_HF: 1252d0c20769SMatthias Ringwald switch (hfp_gsm_call_status()){ 1253aa4dd815SMatthias Ringwald case HFP_CALL_STATUS_NO_HELD_OR_ACTIVE_CALLS: 1254d0c20769SMatthias Ringwald switch (hfp_gsm_callsetup_status()){ 125512cbbeeeSMatthias Ringwald case HFP_CALLSETUP_STATUS_INCOMING_CALL_SETUP_IN_PROGRESS: 1256f8737b81SMatthias Ringwald hfp_gsm_handler(HFP_AG_INCOMING_CALL_ACCEPTED_BY_HF, 0, 0, NULL); 1257d0c20769SMatthias Ringwald hfp_ag_set_callsetup_indicator(); 1258d210d9c4SMatthias Ringwald hfp_ag_set_call_indicator(); 1259a0ffb263SMatthias Ringwald hfp_ag_hf_accept_call(hfp_connection); 12606323f788SMatthias Ringwald hfp_connection->ok_pending = 1; 126160ebb071SMilanka Ringwald log_info("HF answers call, accept call by GSM"); 1262ca59be51SMatthias Ringwald hfp_emit_simple_event(hfp_connection, HFP_SUBEVENT_CALL_ANSWERED); 1263aa4dd815SMatthias Ringwald break; 1264aa4dd815SMatthias Ringwald default: 1265aa4dd815SMatthias Ringwald break; 1266aa4dd815SMatthias Ringwald } 12673deb3ec6SMatthias Ringwald break; 12683deb3ec6SMatthias Ringwald default: 12693deb3ec6SMatthias Ringwald break; 12703deb3ec6SMatthias Ringwald } 12713deb3ec6SMatthias Ringwald break; 12723deb3ec6SMatthias Ringwald 1273ce263fc8SMatthias Ringwald case HFP_AG_RESPONSE_AND_HOLD_ACCEPT_INCOMING_CALL_BY_AG: 1274d0c20769SMatthias Ringwald switch (hfp_gsm_call_status()){ 1275ce263fc8SMatthias Ringwald case HFP_CALL_STATUS_NO_HELD_OR_ACTIVE_CALLS: 1276d0c20769SMatthias Ringwald switch (hfp_gsm_callsetup_status()){ 127712cbbeeeSMatthias Ringwald case HFP_CALLSETUP_STATUS_INCOMING_CALL_SETUP_IN_PROGRESS: 1278f8737b81SMatthias Ringwald hfp_gsm_handler(HFP_AG_RESPONSE_AND_HOLD_ACCEPT_INCOMING_CALL_BY_AG, 0, 0, NULL); 1279ce263fc8SMatthias Ringwald hfp_ag_response_and_hold_active = 1; 1280ce263fc8SMatthias Ringwald hfp_ag_response_and_hold_state = HFP_RESPONSE_AND_HOLD_INCOMING_ON_HOLD; 1281a5bdcda8SMatthias Ringwald hfp_ag_send_response_and_hold_state(hfp_ag_response_and_hold_state); 1282ce263fc8SMatthias Ringwald // as with regualr call 1283d210d9c4SMatthias Ringwald hfp_ag_set_call_indicator(); 1284d0c20769SMatthias Ringwald hfp_ag_set_callsetup_indicator(); 1285ce263fc8SMatthias Ringwald hfp_ag_ag_accept_call(); 128660ebb071SMilanka Ringwald log_info("AG response and hold - hold by AG"); 1287ce263fc8SMatthias Ringwald break; 1288ce263fc8SMatthias Ringwald default: 1289ce263fc8SMatthias Ringwald break; 1290ce263fc8SMatthias Ringwald } 1291ce263fc8SMatthias Ringwald break; 1292ce263fc8SMatthias Ringwald default: 1293ce263fc8SMatthias Ringwald break; 1294ce263fc8SMatthias Ringwald } 1295ce263fc8SMatthias Ringwald break; 1296ce263fc8SMatthias Ringwald 1297ce263fc8SMatthias Ringwald case HFP_AG_RESPONSE_AND_HOLD_ACCEPT_INCOMING_CALL_BY_HF: 1298d0c20769SMatthias Ringwald switch (hfp_gsm_call_status()){ 1299ce263fc8SMatthias Ringwald case HFP_CALL_STATUS_NO_HELD_OR_ACTIVE_CALLS: 1300d0c20769SMatthias Ringwald switch (hfp_gsm_callsetup_status()){ 130112cbbeeeSMatthias Ringwald case HFP_CALLSETUP_STATUS_INCOMING_CALL_SETUP_IN_PROGRESS: 1302f8737b81SMatthias Ringwald hfp_gsm_handler(HFP_AG_RESPONSE_AND_HOLD_ACCEPT_INCOMING_CALL_BY_HF, 0, 0, NULL); 1303ce263fc8SMatthias Ringwald hfp_ag_response_and_hold_active = 1; 1304ce263fc8SMatthias Ringwald hfp_ag_response_and_hold_state = HFP_RESPONSE_AND_HOLD_INCOMING_ON_HOLD; 1305a5bdcda8SMatthias Ringwald hfp_ag_send_response_and_hold_state(hfp_ag_response_and_hold_state); 1306ce263fc8SMatthias Ringwald // as with regualr call 1307d210d9c4SMatthias Ringwald hfp_ag_set_call_indicator(); 1308d0c20769SMatthias Ringwald hfp_ag_set_callsetup_indicator(); 1309a0ffb263SMatthias Ringwald hfp_ag_hf_accept_call(hfp_connection); 131060ebb071SMilanka Ringwald log_info("AG response and hold - hold by HF"); 1311ce263fc8SMatthias Ringwald break; 1312ce263fc8SMatthias Ringwald default: 1313ce263fc8SMatthias Ringwald break; 1314ce263fc8SMatthias Ringwald } 1315ce263fc8SMatthias Ringwald break; 1316ce263fc8SMatthias Ringwald default: 1317ce263fc8SMatthias Ringwald break; 1318ce263fc8SMatthias Ringwald } 1319ce263fc8SMatthias Ringwald break; 1320ce263fc8SMatthias Ringwald 1321ce263fc8SMatthias Ringwald case HFP_AG_RESPONSE_AND_HOLD_ACCEPT_HELD_CALL_BY_AG: 1322ce263fc8SMatthias Ringwald case HFP_AG_RESPONSE_AND_HOLD_ACCEPT_HELD_CALL_BY_HF: 1323ce263fc8SMatthias Ringwald if (!hfp_ag_response_and_hold_active) break; 1324ce263fc8SMatthias Ringwald if (hfp_ag_response_and_hold_state != HFP_RESPONSE_AND_HOLD_INCOMING_ON_HOLD) break; 1325f8737b81SMatthias Ringwald hfp_gsm_handler(HFP_AG_RESPONSE_AND_HOLD_ACCEPT_HELD_CALL_BY_AG, 0, 0, NULL); 1326a5bdcda8SMatthias Ringwald hfp_ag_response_and_hold_active = 0; 1327ce263fc8SMatthias Ringwald hfp_ag_response_and_hold_state = HFP_RESPONSE_AND_HOLD_HELD_INCOMING_ACCEPTED; 1328a5bdcda8SMatthias Ringwald hfp_ag_send_response_and_hold_state(hfp_ag_response_and_hold_state); 132960ebb071SMilanka Ringwald log_info("Held Call accepted and active"); 1330ce263fc8SMatthias Ringwald break; 1331ce263fc8SMatthias Ringwald 1332ce263fc8SMatthias Ringwald case HFP_AG_RESPONSE_AND_HOLD_REJECT_HELD_CALL_BY_AG: 1333ce263fc8SMatthias Ringwald case HFP_AG_RESPONSE_AND_HOLD_REJECT_HELD_CALL_BY_HF: 1334ce263fc8SMatthias Ringwald if (!hfp_ag_response_and_hold_active) break; 1335ce263fc8SMatthias Ringwald if (hfp_ag_response_and_hold_state != HFP_RESPONSE_AND_HOLD_INCOMING_ON_HOLD) break; 1336f8737b81SMatthias Ringwald hfp_gsm_handler(HFP_AG_RESPONSE_AND_HOLD_REJECT_HELD_CALL_BY_AG, 0, 0, NULL); 1337a5bdcda8SMatthias Ringwald hfp_ag_response_and_hold_active = 0; 1338ce263fc8SMatthias Ringwald hfp_ag_response_and_hold_state = HFP_RESPONSE_AND_HOLD_HELD_INCOMING_REJECTED; 1339a5bdcda8SMatthias Ringwald hfp_ag_send_response_and_hold_state(hfp_ag_response_and_hold_state); 1340ce263fc8SMatthias Ringwald // from terminate by ag 1341d210d9c4SMatthias Ringwald hfp_ag_set_call_indicator(); 1342ce263fc8SMatthias Ringwald hfp_ag_trigger_terminate_call(); 1343ce263fc8SMatthias Ringwald break; 1344ce263fc8SMatthias Ringwald 1345aa4dd815SMatthias Ringwald case HFP_AG_TERMINATE_CALL_BY_HF: 1346d0c20769SMatthias Ringwald switch (hfp_gsm_call_status()){ 1347aa4dd815SMatthias Ringwald case HFP_CALL_STATUS_NO_HELD_OR_ACTIVE_CALLS: 1348d0c20769SMatthias Ringwald switch (hfp_gsm_callsetup_status()){ 134912cbbeeeSMatthias Ringwald case HFP_CALLSETUP_STATUS_INCOMING_CALL_SETUP_IN_PROGRESS: 1350f8737b81SMatthias Ringwald hfp_gsm_handler(HFP_AG_TERMINATE_CALL_BY_HF, 0, 0, NULL); 1351d0c20769SMatthias Ringwald hfp_ag_set_callsetup_indicator(); 1352aa4dd815SMatthias Ringwald hfp_ag_transfer_callsetup_state(); 1353aa4dd815SMatthias Ringwald hfp_ag_trigger_reject_call(); 135460ebb071SMilanka Ringwald log_info("HF Rejected Incoming call, AG terminate call"); 1355aa4dd815SMatthias Ringwald break; 1356aa4dd815SMatthias Ringwald case HFP_CALLSETUP_STATUS_OUTGOING_CALL_SETUP_IN_DIALING_STATE: 135712cbbeeeSMatthias Ringwald case HFP_CALLSETUP_STATUS_OUTGOING_CALL_SETUP_IN_ALERTING_STATE: 1358f8737b81SMatthias Ringwald hfp_gsm_handler(HFP_AG_TERMINATE_CALL_BY_HF, 0, 0, NULL); 1359d0c20769SMatthias Ringwald hfp_ag_set_callsetup_indicator(); 1360aa4dd815SMatthias Ringwald hfp_ag_transfer_callsetup_state(); 136160ebb071SMilanka Ringwald log_info("AG terminate outgoing call process"); 1362202c8a4cSMatthias Ringwald break; 1363aa4dd815SMatthias Ringwald default: 1364aa4dd815SMatthias Ringwald break; 1365aa4dd815SMatthias Ringwald } 1366aa4dd815SMatthias Ringwald break; 136712cbbeeeSMatthias Ringwald case HFP_CALL_STATUS_ACTIVE_OR_HELD_CALL_IS_PRESENT: 1368f8737b81SMatthias Ringwald hfp_gsm_handler(HFP_AG_TERMINATE_CALL_BY_HF, 0, 0, NULL); 13691ec112deSMatthias Ringwald hfp_ag_set_callsetup_indicator(); 1370d210d9c4SMatthias Ringwald hfp_ag_set_call_indicator(); 13711ec112deSMatthias Ringwald hfp_ag_trigger_terminate_call(); 137260ebb071SMilanka Ringwald log_info("AG terminate call"); 1373aa4dd815SMatthias Ringwald break; 13747bbeb3adSMilanka Ringwald default: 13757bbeb3adSMilanka Ringwald break; 1376aa4dd815SMatthias Ringwald } 13770c1b8529SMatthias Ringwald hfp_emit_simple_event(hfp_connection, HFP_SUBEVENT_CALL_TERMINATED); 1378aa4dd815SMatthias Ringwald break; 13793deb3ec6SMatthias Ringwald 1380aa4dd815SMatthias Ringwald case HFP_AG_TERMINATE_CALL_BY_AG: 1381d0c20769SMatthias Ringwald switch (hfp_gsm_call_status()){ 1382aa4dd815SMatthias Ringwald case HFP_CALL_STATUS_NO_HELD_OR_ACTIVE_CALLS: 1383d0c20769SMatthias Ringwald switch (hfp_gsm_callsetup_status()){ 138412cbbeeeSMatthias Ringwald case HFP_CALLSETUP_STATUS_INCOMING_CALL_SETUP_IN_PROGRESS: 1385f8737b81SMatthias Ringwald hfp_gsm_handler(HFP_AG_TERMINATE_CALL_BY_AG, 0, 0, NULL); 1386d0c20769SMatthias Ringwald hfp_ag_set_callsetup_indicator(); 1387aa4dd815SMatthias Ringwald hfp_ag_trigger_reject_call(); 138860ebb071SMilanka Ringwald log_info("AG Rejected Incoming call, AG terminate call"); 1389aa4dd815SMatthias Ringwald break; 1390aa4dd815SMatthias Ringwald default: 1391aa4dd815SMatthias Ringwald break; 13923deb3ec6SMatthias Ringwald } 1393202c8a4cSMatthias Ringwald break; 139412cbbeeeSMatthias Ringwald case HFP_CALL_STATUS_ACTIVE_OR_HELD_CALL_IS_PRESENT: 1395f8737b81SMatthias Ringwald hfp_gsm_handler(HFP_AG_TERMINATE_CALL_BY_AG, 0, 0, NULL); 1396d0c20769SMatthias Ringwald hfp_ag_set_callsetup_indicator(); 1397d210d9c4SMatthias Ringwald hfp_ag_set_call_indicator(); 1398aa4dd815SMatthias Ringwald hfp_ag_trigger_terminate_call(); 139960ebb071SMilanka Ringwald log_info("AG terminate call"); 1400aa4dd815SMatthias Ringwald break; 1401aa4dd815SMatthias Ringwald default: 14023deb3ec6SMatthias Ringwald break; 14033deb3ec6SMatthias Ringwald } 14043deb3ec6SMatthias Ringwald break; 1405aa4dd815SMatthias Ringwald case HFP_AG_CALL_DROPPED: 1406d0c20769SMatthias Ringwald switch (hfp_gsm_call_status()){ 1407aa4dd815SMatthias Ringwald case HFP_CALL_STATUS_NO_HELD_OR_ACTIVE_CALLS: 1408d0c20769SMatthias Ringwald switch (hfp_gsm_callsetup_status()){ 1409aa4dd815SMatthias Ringwald case HFP_CALLSETUP_STATUS_INCOMING_CALL_SETUP_IN_PROGRESS: 1410aa4dd815SMatthias Ringwald hfp_ag_stop_ringing(); 141160ebb071SMilanka Ringwald log_info("Incoming call interrupted"); 1412aa4dd815SMatthias Ringwald break; 1413aa4dd815SMatthias Ringwald case HFP_CALLSETUP_STATUS_OUTGOING_CALL_SETUP_IN_DIALING_STATE: 1414aa4dd815SMatthias Ringwald case HFP_CALLSETUP_STATUS_OUTGOING_CALL_SETUP_IN_ALERTING_STATE: 141560ebb071SMilanka Ringwald log_info("Outgoing call interrupted\n"); 141660ebb071SMilanka Ringwald log_info("AG notify call dropped\n"); 1417aa4dd815SMatthias Ringwald break; 1418aa4dd815SMatthias Ringwald default: 14193deb3ec6SMatthias Ringwald break; 14203deb3ec6SMatthias Ringwald } 1421f8737b81SMatthias Ringwald hfp_gsm_handler(HFP_AG_CALL_DROPPED, 0, 0, NULL); 1422d0c20769SMatthias Ringwald hfp_ag_set_callsetup_indicator(); 1423aa4dd815SMatthias Ringwald hfp_ag_transfer_callsetup_state(); 142410c236bfSMatthias Ringwald hfp_ag_trigger_terminate_call(); 1425aa4dd815SMatthias Ringwald break; 1426aa4dd815SMatthias Ringwald case HFP_CALL_STATUS_ACTIVE_OR_HELD_CALL_IS_PRESENT: 1427ce263fc8SMatthias Ringwald if (hfp_ag_response_and_hold_active) { 1428f8737b81SMatthias Ringwald hfp_gsm_handler(HFP_AG_CALL_DROPPED, 0, 0, NULL); 1429ce263fc8SMatthias Ringwald hfp_ag_response_and_hold_state = HFP_RESPONSE_AND_HOLD_HELD_INCOMING_REJECTED; 1430a5bdcda8SMatthias Ringwald hfp_ag_send_response_and_hold_state(hfp_ag_response_and_hold_state); 1431ce263fc8SMatthias Ringwald } 1432f8737b81SMatthias Ringwald hfp_gsm_handler(HFP_AG_CALL_DROPPED, 0, 0, NULL); 1433d0c20769SMatthias Ringwald hfp_ag_set_callsetup_indicator(); 1434d210d9c4SMatthias Ringwald hfp_ag_set_call_indicator(); 1435aa4dd815SMatthias Ringwald hfp_ag_trigger_terminate_call(); 143660ebb071SMilanka Ringwald log_info("AG notify call dropped"); 1437aa4dd815SMatthias Ringwald break; 1438aa4dd815SMatthias Ringwald default: 1439aa4dd815SMatthias Ringwald break; 1440aa4dd815SMatthias Ringwald } 1441aa4dd815SMatthias Ringwald break; 1442aa4dd815SMatthias Ringwald 14439ff73f41SMatthias Ringwald case HFP_AG_OUTGOING_CALL_INITIATED_BY_HF: 1444d210d9c4SMatthias Ringwald // directly reject call if number of free slots is exceeded 1445d210d9c4SMatthias Ringwald if (!hfp_gsm_call_possible()){ 1446a0ffb263SMatthias Ringwald hfp_connection->send_error = 1; 1447f0aeb307SMatthias Ringwald hfp_ag_run_for_context(hfp_connection); 1448d210d9c4SMatthias Ringwald break; 1449d210d9c4SMatthias Ringwald } 1450*fe899794SMatthias Ringwald 1451*fe899794SMatthias Ringwald // note: number not used currently 14529ff73f41SMatthias Ringwald hfp_gsm_handler(HFP_AG_OUTGOING_CALL_INITIATED_BY_HF, 0, 0, (const char *) &hfp_connection->line_buffer[3]); 14539cae807eSMatthias Ringwald 1454a0ffb263SMatthias Ringwald hfp_connection->call_state = HFP_CALL_OUTGOING_INITIATED; 145574386ee0SMatthias Ringwald 1456ca59be51SMatthias Ringwald hfp_emit_string_event(hfp_connection, HFP_SUBEVENT_PLACE_CALL_WITH_NUMBER, (const char *) &hfp_connection->line_buffer[3]); 1457aa4dd815SMatthias Ringwald break; 1458aa4dd815SMatthias Ringwald 1459*fe899794SMatthias Ringwald case HFP_AG_OUTGOING_CALL_INITIATED_BY_AG: 1460*fe899794SMatthias Ringwald // directly reject call if number of free slots is exceeded 1461*fe899794SMatthias Ringwald if (!hfp_gsm_call_possible()) { 1462*fe899794SMatthias Ringwald // TODO: no error for user 1463*fe899794SMatthias Ringwald break; 1464*fe899794SMatthias Ringwald } 1465*fe899794SMatthias Ringwald switch (hfp_gsm_call_status()) { 1466*fe899794SMatthias Ringwald case HFP_CALL_STATUS_NO_HELD_OR_ACTIVE_CALLS: 1467*fe899794SMatthias Ringwald switch (hfp_gsm_callsetup_status()) { 1468*fe899794SMatthias Ringwald case HFP_CALLSETUP_STATUS_NO_CALL_SETUP_IN_PROGRESS: 1469*fe899794SMatthias Ringwald // note: number not used currently 1470*fe899794SMatthias Ringwald hfp_gsm_handler(HFP_AG_OUTGOING_CALL_INITIATED_BY_AG, 0, 0, "1234567"); 1471*fe899794SMatthias Ringwald // init call state for all connections 1472*fe899794SMatthias Ringwald hfp_ag_trigger_outgoing_call(); 1473*fe899794SMatthias Ringwald // get first one and accept call 1474*fe899794SMatthias Ringwald hfp_connection = hfp_ag_connection_for_call_state(HFP_CALL_OUTGOING_INITIATED); 1475*fe899794SMatthias Ringwald if (hfp_connection) { 1476*fe899794SMatthias Ringwald hfp_ag_handle_outgoing_call_accepted(hfp_connection); 1477*fe899794SMatthias Ringwald } 1478*fe899794SMatthias Ringwald break; 1479*fe899794SMatthias Ringwald default: 1480*fe899794SMatthias Ringwald // TODO: no error for user 1481*fe899794SMatthias Ringwald break; 1482*fe899794SMatthias Ringwald } 1483*fe899794SMatthias Ringwald break; 1484*fe899794SMatthias Ringwald default: 1485*fe899794SMatthias Ringwald // TODO: no error for user 1486*fe899794SMatthias Ringwald break; 1487*fe899794SMatthias Ringwald } 1488*fe899794SMatthias Ringwald break; 14899cae807eSMatthias Ringwald case HFP_AG_OUTGOING_REDIAL_INITIATED:{ 1490d210d9c4SMatthias Ringwald // directly reject call if number of free slots is exceeded 1491d210d9c4SMatthias Ringwald if (!hfp_gsm_call_possible()){ 1492a0ffb263SMatthias Ringwald hfp_connection->send_error = 1; 1493f0aeb307SMatthias Ringwald hfp_ag_run_for_context(hfp_connection); 1494d210d9c4SMatthias Ringwald break; 1495d210d9c4SMatthias Ringwald } 1496d210d9c4SMatthias Ringwald 1497f8737b81SMatthias Ringwald hfp_gsm_handler(HFP_AG_OUTGOING_REDIAL_INITIATED, 0, 0, NULL); 1498a0ffb263SMatthias Ringwald hfp_connection->call_state = HFP_CALL_OUTGOING_INITIATED; 149974386ee0SMatthias Ringwald 150060ebb071SMilanka Ringwald log_info("Redial last number"); 15019cae807eSMatthias Ringwald char * last_dialed_number = hfp_gsm_last_dialed_number(); 1502aa4dd815SMatthias Ringwald 15039cae807eSMatthias Ringwald if (strlen(last_dialed_number) > 0){ 150460ebb071SMilanka Ringwald log_info("Last number exists: accept call"); 1505ca59be51SMatthias Ringwald hfp_emit_string_event(hfp_connection, HFP_SUBEVENT_PLACE_CALL_WITH_NUMBER, last_dialed_number); 15069cae807eSMatthias Ringwald } else { 150760ebb071SMilanka Ringwald log_info("log_infoLast number missing: reject call"); 15089f9621cfSMatthias Ringwald hfp_ag_handle_reject_outgoing_call(); 15099cae807eSMatthias Ringwald } 15109cae807eSMatthias Ringwald break; 15119cae807eSMatthias Ringwald } 1512aa4dd815SMatthias Ringwald case HFP_AG_OUTGOING_CALL_REJECTED: 15139f9621cfSMatthias Ringwald hfp_ag_handle_reject_outgoing_call(); 1514aa4dd815SMatthias Ringwald break; 1515aa4dd815SMatthias Ringwald 1516d210d9c4SMatthias Ringwald case HFP_AG_OUTGOING_CALL_ACCEPTED:{ 1517a0ffb263SMatthias Ringwald hfp_connection = hfp_ag_connection_for_call_state(HFP_CALL_OUTGOING_INITIATED); 1518a0ffb263SMatthias Ringwald if (!hfp_connection){ 1519a0ffb263SMatthias Ringwald log_info("hfp_ag_call_sm: did not find outgoing hfp_connection in initiated state"); 1520aa4dd815SMatthias Ringwald break; 1521aa4dd815SMatthias Ringwald } 1522aa4dd815SMatthias Ringwald 1523a0ffb263SMatthias Ringwald hfp_connection->ok_pending = 1; 15245a7033e2SMatthias Ringwald hfp_ag_handle_outgoing_call_accepted(hfp_connection); 1525aa4dd815SMatthias Ringwald break; 1526d210d9c4SMatthias Ringwald } 1527aa4dd815SMatthias Ringwald case HFP_AG_OUTGOING_CALL_RINGING: 1528a0ffb263SMatthias Ringwald hfp_connection = hfp_ag_connection_for_call_state(HFP_CALL_OUTGOING_DIALING); 1529a0ffb263SMatthias Ringwald if (!hfp_connection){ 1530a0ffb263SMatthias Ringwald log_info("hfp_ag_call_sm: did not find outgoing hfp_connection in dialing state"); 1531aa4dd815SMatthias Ringwald break; 1532aa4dd815SMatthias Ringwald } 1533d210d9c4SMatthias Ringwald 1534f8737b81SMatthias Ringwald hfp_gsm_handler(HFP_AG_OUTGOING_CALL_RINGING, 0, 0, NULL); 1535a0ffb263SMatthias Ringwald hfp_connection->call_state = HFP_CALL_OUTGOING_RINGING; 1536d0c20769SMatthias Ringwald hfp_ag_set_callsetup_indicator(); 1537aa4dd815SMatthias Ringwald hfp_ag_transfer_callsetup_state(); 1538aa4dd815SMatthias Ringwald break; 1539aa4dd815SMatthias Ringwald 1540d210d9c4SMatthias Ringwald case HFP_AG_OUTGOING_CALL_ESTABLISHED:{ 1541aa4dd815SMatthias Ringwald // get outgoing call 1542a0ffb263SMatthias Ringwald hfp_connection = hfp_ag_connection_for_call_state(HFP_CALL_OUTGOING_RINGING); 1543a0ffb263SMatthias Ringwald if (!hfp_connection){ 1544a0ffb263SMatthias Ringwald hfp_connection = hfp_ag_connection_for_call_state(HFP_CALL_OUTGOING_DIALING); 1545aa4dd815SMatthias Ringwald } 1546a0ffb263SMatthias Ringwald if (!hfp_connection){ 1547a0ffb263SMatthias Ringwald log_info("hfp_ag_call_sm: did not find outgoing hfp_connection"); 1548aa4dd815SMatthias Ringwald break; 1549aa4dd815SMatthias Ringwald } 1550d210d9c4SMatthias Ringwald 1551d0c20769SMatthias Ringwald int CALLHELD_STATUS_CALL_ON_HOLD_AND_NO_ACTIVE_CALLS = hfp_gsm_callheld_status() == HFP_CALLHELD_STATUS_CALL_ON_HOLD_AND_NO_ACTIVE_CALLS; 1552f8737b81SMatthias Ringwald hfp_gsm_handler(HFP_AG_OUTGOING_CALL_ESTABLISHED, 0, 0, NULL); 1553a0ffb263SMatthias Ringwald hfp_connection->call_state = HFP_CALL_ACTIVE; 1554d0c20769SMatthias Ringwald hfp_ag_set_callsetup_indicator(); 1555d210d9c4SMatthias Ringwald hfp_ag_set_call_indicator(); 1556aa4dd815SMatthias Ringwald hfp_ag_transfer_call_state(); 1557aa4dd815SMatthias Ringwald hfp_ag_transfer_callsetup_state(); 1558d210d9c4SMatthias Ringwald if (CALLHELD_STATUS_CALL_ON_HOLD_AND_NO_ACTIVE_CALLS){ 1559d0c20769SMatthias Ringwald hfp_ag_set_callheld_indicator(); 1560aa4dd815SMatthias Ringwald hfp_ag_transfer_callheld_state(); 15613deb3ec6SMatthias Ringwald } 15623deb3ec6SMatthias Ringwald break; 1563d210d9c4SMatthias Ringwald } 1564d210d9c4SMatthias Ringwald 156512cbbeeeSMatthias Ringwald case HFP_AG_CALL_HOLD_USER_BUSY: 1566f8737b81SMatthias Ringwald hfp_gsm_handler(HFP_AG_CALL_HOLD_USER_BUSY, 0, 0, NULL); 1567d0c20769SMatthias Ringwald hfp_ag_set_callsetup_indicator(); 1568a0ffb263SMatthias Ringwald hfp_connection->ag_indicators_status_update_bitmap = store_bit(hfp_connection->ag_indicators_status_update_bitmap, callsetup_indicator_index, 1); 1569a0ffb263SMatthias Ringwald hfp_connection->call_state = HFP_CALL_ACTIVE; 157060ebb071SMilanka Ringwald log_info("AG: Call Waiting, User Busy"); 1571d210d9c4SMatthias Ringwald break; 1572d210d9c4SMatthias Ringwald 1573d210d9c4SMatthias Ringwald case HFP_AG_CALL_HOLD_RELEASE_ACTIVE_ACCEPT_HELD_OR_WAITING_CALL:{ 1574d0c20769SMatthias Ringwald int call_setup_in_progress = hfp_gsm_callsetup_status() != HFP_CALLSETUP_STATUS_NO_CALL_SETUP_IN_PROGRESS; 1575d0c20769SMatthias Ringwald int call_held = hfp_gsm_callheld_status() != HFP_CALLHELD_STATUS_NO_CALLS_HELD; 1576d210d9c4SMatthias Ringwald 1577d210d9c4SMatthias Ringwald // Releases all active calls (if any exist) and accepts the other (held or waiting) call. 1578d0c20769SMatthias Ringwald if (call_held || call_setup_in_progress){ 1579f8737b81SMatthias Ringwald hfp_gsm_handler(HFP_AG_CALL_HOLD_RELEASE_ACTIVE_ACCEPT_HELD_OR_WAITING_CALL, hfp_connection->call_index, 1580f8737b81SMatthias Ringwald 0, NULL); 1581d0c20769SMatthias Ringwald 1582d0c20769SMatthias Ringwald } 1583d0c20769SMatthias Ringwald 1584d210d9c4SMatthias Ringwald if (call_setup_in_progress){ 158560ebb071SMilanka Ringwald log_info("AG: Call Dropped, Accept new call"); 1586d0c20769SMatthias Ringwald hfp_ag_set_callsetup_indicator(); 1587a0ffb263SMatthias Ringwald hfp_connection->ag_indicators_status_update_bitmap = store_bit(hfp_connection->ag_indicators_status_update_bitmap, callsetup_indicator_index, 1); 1588d210d9c4SMatthias Ringwald } else { 158960ebb071SMilanka Ringwald log_info("AG: Call Dropped, Resume held call"); 1590d210d9c4SMatthias Ringwald } 1591d210d9c4SMatthias Ringwald if (call_held){ 1592d0c20769SMatthias Ringwald hfp_ag_set_callheld_indicator(); 1593a0ffb263SMatthias Ringwald hfp_connection->ag_indicators_status_update_bitmap = store_bit(hfp_connection->ag_indicators_status_update_bitmap, callheld_indicator_index, 1); 1594d210d9c4SMatthias Ringwald } 1595d0c20769SMatthias Ringwald 1596a0ffb263SMatthias Ringwald hfp_connection->call_state = HFP_CALL_ACTIVE; 1597d210d9c4SMatthias Ringwald break; 1598d210d9c4SMatthias Ringwald } 1599d0c20769SMatthias Ringwald 1600d210d9c4SMatthias Ringwald case HFP_AG_CALL_HOLD_PARK_ACTIVE_ACCEPT_HELD_OR_WAITING_CALL:{ 1601d210d9c4SMatthias Ringwald // Places all active calls (if any exist) on hold and accepts the other (held or waiting) call. 1602d210d9c4SMatthias Ringwald // only update if callsetup changed 1603d0c20769SMatthias Ringwald int call_setup_in_progress = hfp_gsm_callsetup_status() != HFP_CALLSETUP_STATUS_NO_CALL_SETUP_IN_PROGRESS; 1604f8737b81SMatthias Ringwald hfp_gsm_handler(HFP_AG_CALL_HOLD_PARK_ACTIVE_ACCEPT_HELD_OR_WAITING_CALL, hfp_connection->call_index, 0, 1605f8737b81SMatthias Ringwald NULL); 1606d0c20769SMatthias Ringwald 1607d210d9c4SMatthias Ringwald if (call_setup_in_progress){ 160860ebb071SMilanka Ringwald log_info("AG: Call on Hold, Accept new call"); 1609d0c20769SMatthias Ringwald hfp_ag_set_callsetup_indicator(); 1610a0ffb263SMatthias Ringwald hfp_connection->ag_indicators_status_update_bitmap = store_bit(hfp_connection->ag_indicators_status_update_bitmap, callsetup_indicator_index, 1); 1611d210d9c4SMatthias Ringwald } else { 161260ebb071SMilanka Ringwald log_info("AG: Swap calls"); 1613d210d9c4SMatthias Ringwald } 1614d0c20769SMatthias Ringwald 1615d0c20769SMatthias Ringwald hfp_ag_set_callheld_indicator(); 1616d0c20769SMatthias Ringwald // hfp_ag_set_callheld_state(HFP_CALLHELD_STATUS_CALL_ON_HOLD_OR_SWAPPED); 1617a0ffb263SMatthias Ringwald hfp_connection->ag_indicators_status_update_bitmap = store_bit(hfp_connection->ag_indicators_status_update_bitmap, callheld_indicator_index, 1); 1618a0ffb263SMatthias Ringwald hfp_connection->call_state = HFP_CALL_ACTIVE; 1619d210d9c4SMatthias Ringwald break; 1620d210d9c4SMatthias Ringwald } 1621d0c20769SMatthias Ringwald 1622d210d9c4SMatthias Ringwald case HFP_AG_CALL_HOLD_ADD_HELD_CALL: 1623d210d9c4SMatthias Ringwald // Adds a held call to the conversation. 1624d0c20769SMatthias Ringwald if (hfp_gsm_callheld_status() != HFP_CALLHELD_STATUS_NO_CALLS_HELD){ 162560ebb071SMilanka Ringwald log_info("AG: Join 3-way-call"); 1626f8737b81SMatthias Ringwald hfp_gsm_handler(HFP_AG_CALL_HOLD_ADD_HELD_CALL, 0, 0, NULL); 1627d0c20769SMatthias Ringwald hfp_ag_set_callheld_indicator(); 1628a0ffb263SMatthias Ringwald hfp_connection->ag_indicators_status_update_bitmap = store_bit(hfp_connection->ag_indicators_status_update_bitmap, callheld_indicator_index, 1); 1629ca59be51SMatthias Ringwald hfp_emit_simple_event(hfp_connection, HFP_SUBEVENT_CONFERENCE_CALL); 1630d210d9c4SMatthias Ringwald } 1631a0ffb263SMatthias Ringwald hfp_connection->call_state = HFP_CALL_ACTIVE; 1632d210d9c4SMatthias Ringwald break; 1633d210d9c4SMatthias Ringwald case HFP_AG_CALL_HOLD_EXIT_AND_JOIN_CALLS: 1634d210d9c4SMatthias Ringwald // Connects the two calls and disconnects the subscriber from both calls (Explicit Call Transfer) 1635f8737b81SMatthias Ringwald hfp_gsm_handler(HFP_AG_CALL_HOLD_EXIT_AND_JOIN_CALLS, 0, 0, NULL); 163660ebb071SMilanka Ringwald log_info("AG: Transfer call -> Connect two calls and disconnect"); 1637d210d9c4SMatthias Ringwald hfp_ag_set_call_indicator(); 1638d0c20769SMatthias Ringwald hfp_ag_set_callheld_indicator(); 1639a0ffb263SMatthias Ringwald hfp_connection->ag_indicators_status_update_bitmap = store_bit(hfp_connection->ag_indicators_status_update_bitmap, call_indicator_index, 1); 1640a0ffb263SMatthias Ringwald hfp_connection->ag_indicators_status_update_bitmap = store_bit(hfp_connection->ag_indicators_status_update_bitmap, callheld_indicator_index, 1); 1641a0ffb263SMatthias Ringwald hfp_connection->call_state = HFP_CALL_IDLE; 1642d210d9c4SMatthias Ringwald break; 1643ce263fc8SMatthias Ringwald 16443deb3ec6SMatthias Ringwald default: 16453deb3ec6SMatthias Ringwald break; 16463deb3ec6SMatthias Ringwald } 1647d210d9c4SMatthias Ringwald 1648d0c20769SMatthias Ringwald 16493deb3ec6SMatthias Ringwald } 16503deb3ec6SMatthias Ringwald 16519cae807eSMatthias Ringwald 1652a0ffb263SMatthias Ringwald static void hfp_ag_send_call_status(hfp_connection_t * hfp_connection, int call_index){ 16539cae807eSMatthias Ringwald hfp_gsm_call_t * active_call = hfp_gsm_call(call_index); 16549cae807eSMatthias Ringwald if (!active_call) return; 16559cae807eSMatthias Ringwald 16569cae807eSMatthias Ringwald int idx = active_call->index; 16579cae807eSMatthias Ringwald hfp_enhanced_call_dir_t dir = active_call->direction; 16589cae807eSMatthias Ringwald hfp_enhanced_call_status_t status = active_call->enhanced_status; 16599cae807eSMatthias Ringwald hfp_enhanced_call_mode_t mode = active_call->mode; 16609cae807eSMatthias Ringwald hfp_enhanced_call_mpty_t mpty = active_call->mpty; 16619cae807eSMatthias Ringwald uint8_t type = active_call->clip_type; 16629cae807eSMatthias Ringwald char * number = active_call->clip_number; 16639cae807eSMatthias Ringwald 16649cae807eSMatthias Ringwald char buffer[100]; 16659cae807eSMatthias Ringwald // TODO: check length of a buffer, to fit the MTU 16669cae807eSMatthias Ringwald int offset = snprintf(buffer, sizeof(buffer), "\r\n%s: %d,%d,%d,%d,%d", HFP_LIST_CURRENT_CALLS, idx, dir, status, mode, mpty); 16679cae807eSMatthias Ringwald if (number){ 16681cc1d9e9SMilanka Ringwald offset += snprintf(buffer+offset, sizeof(buffer)-offset-3, ", \"%s\",%u", number, type); 16699cae807eSMatthias Ringwald } 16709cae807eSMatthias Ringwald snprintf(buffer+offset, sizeof(buffer)-offset, "\r\n"); 167160ebb071SMilanka Ringwald log_info("hfp_ag_send_current_call_status 000 index %d, dir %d, status %d, mode %d, mpty %d, type %d, number %s", idx, dir, status, 16729cae807eSMatthias Ringwald mode, mpty, type, number); 1673a0ffb263SMatthias Ringwald send_str_over_rfcomm(hfp_connection->rfcomm_cid, buffer); 16749cae807eSMatthias Ringwald } 16759cae807eSMatthias Ringwald 1676473ac565SMatthias Ringwald 1677febc14f5SMatthias Ringwald // sends pending command, returns if command was sent 1678febc14f5SMatthias Ringwald static int hfp_ag_send_commands(hfp_connection_t *hfp_connection){ 167922387625SMatthias Ringwald 1680a0ffb263SMatthias Ringwald if (hfp_connection->send_status_of_current_calls){ 1681a0ffb263SMatthias Ringwald hfp_connection->ok_pending = 0; 1682a0ffb263SMatthias Ringwald if (hfp_connection->next_call_index < hfp_gsm_get_number_of_calls()){ 1683a0ffb263SMatthias Ringwald hfp_connection->next_call_index++; 1684a0ffb263SMatthias Ringwald hfp_ag_send_call_status(hfp_connection, hfp_connection->next_call_index); 1685febc14f5SMatthias Ringwald return 1; 16869cae807eSMatthias Ringwald } else { 1687febc14f5SMatthias Ringwald // TODO: this code should be removed. check a) before setting send_status_of_current_calls, or b) right before hfp_ag_send_call_status above 1688a0ffb263SMatthias Ringwald hfp_connection->next_call_index = 0; 1689a0ffb263SMatthias Ringwald hfp_connection->ok_pending = 1; 1690a0ffb263SMatthias Ringwald hfp_connection->send_status_of_current_calls = 0; 16919cae807eSMatthias Ringwald } 1692ce263fc8SMatthias Ringwald } 1693ce263fc8SMatthias Ringwald 1694a0ffb263SMatthias Ringwald if (hfp_connection->ag_notify_incoming_call_waiting){ 1695a0ffb263SMatthias Ringwald hfp_connection->ag_notify_incoming_call_waiting = 0; 1696a0ffb263SMatthias Ringwald hfp_ag_send_call_waiting_notification(hfp_connection->rfcomm_cid); 1697febc14f5SMatthias Ringwald return 1; 1698aa4dd815SMatthias Ringwald } 1699aa4dd815SMatthias Ringwald 1700a0ffb263SMatthias Ringwald if (hfp_connection->command == HFP_CMD_UNKNOWN){ 1701a0ffb263SMatthias Ringwald hfp_connection->ok_pending = 0; 1702a0ffb263SMatthias Ringwald hfp_connection->send_error = 0; 1703a0ffb263SMatthias Ringwald hfp_connection->command = HFP_CMD_NONE; 1704485ac19eSMilanka Ringwald hfp_ag_send_error(hfp_connection->rfcomm_cid); 1705febc14f5SMatthias Ringwald return 1; 1706a0ffb263SMatthias Ringwald } 1707a0ffb263SMatthias Ringwald 1708a0ffb263SMatthias Ringwald if (hfp_connection->send_error){ 1709a0ffb263SMatthias Ringwald hfp_connection->send_error = 0; 1710a0ffb263SMatthias Ringwald hfp_connection->command = HFP_CMD_NONE; 1711485ac19eSMilanka Ringwald hfp_ag_send_error(hfp_connection->rfcomm_cid); 1712febc14f5SMatthias Ringwald return 1; 1713aa4dd815SMatthias Ringwald } 1714aa4dd815SMatthias Ringwald 1715ce263fc8SMatthias Ringwald // note: before update AG indicators and ok_pending 1716a0ffb263SMatthias Ringwald if (hfp_connection->send_response_and_hold_status){ 1717a0ffb263SMatthias Ringwald int status = hfp_connection->send_response_and_hold_status - 1; 1718a0ffb263SMatthias Ringwald hfp_connection->send_response_and_hold_status = 0; 1719485ac19eSMilanka Ringwald hfp_ag_send_set_response_and_hold(hfp_connection->rfcomm_cid, status); 1720febc14f5SMatthias Ringwald return 1; 1721ce263fc8SMatthias Ringwald } 1722ce263fc8SMatthias Ringwald 1723a0ffb263SMatthias Ringwald if (hfp_connection->ok_pending){ 1724a0ffb263SMatthias Ringwald hfp_connection->ok_pending = 0; 1725a0ffb263SMatthias Ringwald hfp_connection->command = HFP_CMD_NONE; 1726485ac19eSMilanka Ringwald hfp_ag_send_ok(hfp_connection->rfcomm_cid); 1727febc14f5SMatthias Ringwald return 1; 1728ce263fc8SMatthias Ringwald } 1729ce263fc8SMatthias Ringwald 1730aa4dd815SMatthias Ringwald // update AG indicators 1731a0ffb263SMatthias Ringwald if (hfp_connection->ag_indicators_status_update_bitmap){ 1732aa4dd815SMatthias Ringwald int i; 1733a0ffb263SMatthias Ringwald for (i=0;i<hfp_connection->ag_indicators_nr;i++){ 1734a0ffb263SMatthias Ringwald if (get_bit(hfp_connection->ag_indicators_status_update_bitmap, i)){ 1735a0ffb263SMatthias Ringwald hfp_connection->ag_indicators_status_update_bitmap = store_bit(hfp_connection->ag_indicators_status_update_bitmap, i, 0); 1736a0ffb263SMatthias Ringwald if (!hfp_connection->enable_status_update_for_ag_indicators) { 1737ce263fc8SMatthias Ringwald log_info("+CMER:3,0,0,0 - not sending update for '%s'", hfp_ag_indicators[i].name); 1738ce263fc8SMatthias Ringwald break; 1739ce263fc8SMatthias Ringwald } 1740485ac19eSMilanka Ringwald hfp_ag_send_transfer_ag_indicators_status_cmd(hfp_connection->rfcomm_cid, &hfp_ag_indicators[i]); 1741febc14f5SMatthias Ringwald return 1; 1742aa4dd815SMatthias Ringwald } 1743aa4dd815SMatthias Ringwald } 1744aa4dd815SMatthias Ringwald } 1745aa4dd815SMatthias Ringwald 1746245852b7SMilanka Ringwald if (hfp_connection->ag_send_no_carrier){ 1747245852b7SMilanka Ringwald hfp_connection->ag_send_no_carrier = false; 1748245852b7SMilanka Ringwald hfp_ag_send_no_carrier(hfp_connection->rfcomm_cid); 1749245852b7SMilanka Ringwald return 1; 1750245852b7SMilanka Ringwald } 1751245852b7SMilanka Ringwald 1752a0ffb263SMatthias Ringwald if (hfp_connection->ag_ring){ 1753a0ffb263SMatthias Ringwald hfp_connection->ag_ring = 0; 1754a0ffb263SMatthias Ringwald hfp_connection->command = HFP_CMD_NONE; 1755485ac19eSMilanka Ringwald hfp_ag_send_ring(hfp_connection->rfcomm_cid); 1756febc14f5SMatthias Ringwald return 1; 1757aa4dd815SMatthias Ringwald } 1758aa4dd815SMatthias Ringwald 1759a0ffb263SMatthias Ringwald if (hfp_connection->ag_send_clip){ 1760a0ffb263SMatthias Ringwald hfp_connection->ag_send_clip = 0; 1761a0ffb263SMatthias Ringwald hfp_connection->command = HFP_CMD_NONE; 1762a0ffb263SMatthias Ringwald hfp_ag_send_clip(hfp_connection->rfcomm_cid); 1763febc14f5SMatthias Ringwald return 1; 1764aa4dd815SMatthias Ringwald } 1765aa4dd815SMatthias Ringwald 1766a0ffb263SMatthias Ringwald if (hfp_connection->send_phone_number_for_voice_tag){ 1767a0ffb263SMatthias Ringwald hfp_connection->send_phone_number_for_voice_tag = 0; 1768a0ffb263SMatthias Ringwald hfp_connection->command = HFP_CMD_NONE; 1769a0ffb263SMatthias Ringwald hfp_connection->ok_pending = 1; 1770a0ffb263SMatthias Ringwald hfp_ag_send_phone_number_for_voice_tag_cmd(hfp_connection->rfcomm_cid); 1771febc14f5SMatthias Ringwald return 1; 1772aa4dd815SMatthias Ringwald } 1773aa4dd815SMatthias Ringwald 1774a0ffb263SMatthias Ringwald if (hfp_connection->send_subscriber_number){ 1775a0ffb263SMatthias Ringwald if (hfp_connection->next_subscriber_number_to_send < subscriber_numbers_count){ 1776a0ffb263SMatthias Ringwald hfp_phone_number_t phone = subscriber_numbers[hfp_connection->next_subscriber_number_to_send++]; 1777a0ffb263SMatthias Ringwald hfp_send_subscriber_number_cmd(hfp_connection->rfcomm_cid, phone.type, phone.number); 1778ce263fc8SMatthias Ringwald } else { 1779a0ffb263SMatthias Ringwald hfp_connection->send_subscriber_number = 0; 1780a0ffb263SMatthias Ringwald hfp_connection->next_subscriber_number_to_send = 0; 1781485ac19eSMilanka Ringwald hfp_ag_send_ok(hfp_connection->rfcomm_cid); 1782ce263fc8SMatthias Ringwald } 1783a0ffb263SMatthias Ringwald hfp_connection->command = HFP_CMD_NONE; 1784febc14f5SMatthias Ringwald return 1; 1785ce263fc8SMatthias Ringwald } 1786ce263fc8SMatthias Ringwald 1787a0ffb263SMatthias Ringwald if (hfp_connection->send_microphone_gain){ 1788a0ffb263SMatthias Ringwald hfp_connection->send_microphone_gain = 0; 1789a0ffb263SMatthias Ringwald hfp_connection->command = HFP_CMD_NONE; 1790485ac19eSMilanka Ringwald hfp_ag_send_set_microphone_gain_cmd(hfp_connection->rfcomm_cid, hfp_connection->microphone_gain); 1791febc14f5SMatthias Ringwald return 1; 1792aa4dd815SMatthias Ringwald } 1793aa4dd815SMatthias Ringwald 1794a0ffb263SMatthias Ringwald if (hfp_connection->send_speaker_gain){ 1795a0ffb263SMatthias Ringwald hfp_connection->send_speaker_gain = 0; 1796a0ffb263SMatthias Ringwald hfp_connection->command = HFP_CMD_NONE; 1797485ac19eSMilanka Ringwald hfp_ag_send_set_speaker_gain_cmd(hfp_connection->rfcomm_cid, hfp_connection->speaker_gain); 1798febc14f5SMatthias Ringwald return 1; 17993deb3ec6SMatthias Ringwald } 18003deb3ec6SMatthias Ringwald 1801a0ffb263SMatthias Ringwald if (hfp_connection->send_ag_status_indicators){ 1802a0ffb263SMatthias Ringwald hfp_connection->send_ag_status_indicators = 0; 1803485ac19eSMilanka Ringwald hfp_ag_send_retrieve_indicators_status_cmd(hfp_connection->rfcomm_cid); 1804febc14f5SMatthias Ringwald return 1; 1805febc14f5SMatthias Ringwald } 1806febc14f5SMatthias Ringwald 1807febc14f5SMatthias Ringwald return 0; 1808febc14f5SMatthias Ringwald } 1809febc14f5SMatthias Ringwald 1810febc14f5SMatthias Ringwald static void hfp_ag_run_for_context(hfp_connection_t *hfp_connection){ 1811febc14f5SMatthias Ringwald 181276cc1527SMatthias Ringwald btstack_assert(hfp_connection != NULL); 181376cc1527SMatthias Ringwald btstack_assert(hfp_connection->local_role == HFP_ROLE_AG); 1814febc14f5SMatthias Ringwald 181576cc1527SMatthias Ringwald // during SDP query, RFCOMM CID is not set 181676cc1527SMatthias Ringwald if (hfp_connection->rfcomm_cid == 0) return; 1817ce263fc8SMatthias Ringwald 18183721a235SMatthias Ringwald // assert command could be sent 18193721a235SMatthias Ringwald if (hci_can_send_command_packet_now() == 0) return; 18203721a235SMatthias Ringwald 1821f9f3ba28SMilanka Ringwald if ((hfp_connection->state == HFP_AUDIO_CONNECTION_ESTABLISHED) && hfp_connection->release_audio_connection){ 1822f9f3ba28SMilanka Ringwald hfp_connection->state = HFP_W4_SCO_DISCONNECTED; 1823f9f3ba28SMilanka Ringwald hfp_connection->release_audio_connection = 0; 1824f9f3ba28SMilanka Ringwald gap_disconnect(hfp_connection->sco_handle); 1825f9f3ba28SMilanka Ringwald return; 1826f9f3ba28SMilanka Ringwald } 1827f9f3ba28SMilanka Ringwald 18283721a235SMatthias Ringwald #ifdef ENABLE_CC256X_ASSISTED_HFP 18293721a235SMatthias Ringwald // WBS Disassociate 18303721a235SMatthias Ringwald if (hfp_connection->cc256x_send_wbs_disassociate){ 18313721a235SMatthias Ringwald hfp_connection->cc256x_send_wbs_disassociate = false; 18323721a235SMatthias Ringwald hci_send_cmd(&hci_ti_wbs_disassociate); 18333721a235SMatthias Ringwald return; 18343721a235SMatthias Ringwald } 18353721a235SMatthias Ringwald // Write Codec Config 18363721a235SMatthias Ringwald if (hfp_connection->cc256x_send_write_codec_config){ 18373721a235SMatthias Ringwald hfp_connection->cc256x_send_write_codec_config = false; 18383721a235SMatthias Ringwald hfp_cc256x_write_codec_config(hfp_connection); 18393721a235SMatthias Ringwald return; 18403721a235SMatthias Ringwald } 18413721a235SMatthias Ringwald // WBS Associate 18423721a235SMatthias Ringwald if (hfp_connection->cc256x_send_wbs_associate){ 18433721a235SMatthias Ringwald hfp_connection->cc256x_send_wbs_associate = false; 18443721a235SMatthias Ringwald hci_send_cmd(&hci_ti_wbs_associate, hfp_connection->acl_handle); 18453721a235SMatthias Ringwald return; 18463721a235SMatthias Ringwald } 18473721a235SMatthias Ringwald #endif 1848689d4323SMatthias Ringwald #ifdef ENABLE_BCM_PCM_WBS 1849689d4323SMatthias Ringwald // Enable WBS 1850689d4323SMatthias Ringwald if (hfp_connection->bcm_send_enable_wbs){ 1851689d4323SMatthias Ringwald hfp_connection->bcm_send_enable_wbs = false; 1852689d4323SMatthias Ringwald hci_send_cmd(&hci_bcm_enable_wbs, 1, 2); 1853689d4323SMatthias Ringwald return; 1854689d4323SMatthias Ringwald } 1855689d4323SMatthias Ringwald // Write I2S/PCM params 1856689d4323SMatthias Ringwald if (hfp_connection->bcm_send_write_i2spcm_interface_param){ 1857689d4323SMatthias Ringwald hfp_connection->bcm_send_write_i2spcm_interface_param = false; 1858689d4323SMatthias Ringwald hfp_bcm_write_i2spcm_interface_param(hfp_connection); 1859689d4323SMatthias Ringwald return; 1860689d4323SMatthias Ringwald } 1861689d4323SMatthias Ringwald // Disable WBS 1862689d4323SMatthias Ringwald if (hfp_connection->bcm_send_disable_wbs){ 1863689d4323SMatthias Ringwald hfp_connection->bcm_send_disable_wbs = false; 1864689d4323SMatthias Ringwald hci_send_cmd(&hci_bcm_enable_wbs, 0, 2); 1865689d4323SMatthias Ringwald return; 1866689d4323SMatthias Ringwald } 1867689d4323SMatthias Ringwald #endif 186848e6eeeeSMatthias Ringwald #if defined (ENABLE_CC256X_ASSISTED_HFP) || defined (ENABLE_BCM_PCM_WBS) 186948e6eeeeSMatthias Ringwald if (hfp_connection->state == HFP_W4_WBS_SHUTDOWN){ 187048e6eeeeSMatthias Ringwald hfp_finalize_connection_context(hfp_connection); 187148e6eeeeSMatthias Ringwald return; 187248e6eeeeSMatthias Ringwald } 187348e6eeeeSMatthias Ringwald #endif 18743721a235SMatthias Ringwald 1875febc14f5SMatthias Ringwald if (!rfcomm_can_send_packet_now(hfp_connection->rfcomm_cid)) { 1876febc14f5SMatthias Ringwald log_info("hfp_ag_run_for_context: request can send for 0x%02x", hfp_connection->rfcomm_cid); 1877febc14f5SMatthias Ringwald rfcomm_request_can_send_now_event(hfp_connection->rfcomm_cid); 1878febc14f5SMatthias Ringwald return; 1879febc14f5SMatthias Ringwald } 1880febc14f5SMatthias Ringwald 1881febc14f5SMatthias Ringwald int cmd_sent = hfp_ag_send_commands(hfp_connection); 1882febc14f5SMatthias Ringwald 1883febc14f5SMatthias Ringwald if (!cmd_sent){ 1884febc14f5SMatthias Ringwald cmd_sent = hfp_ag_run_for_context_service_level_connection(hfp_connection); 1885febc14f5SMatthias Ringwald } 1886febc14f5SMatthias Ringwald 1887c04cf7ffSMilanka Ringwald if (!cmd_sent){ 1888c04cf7ffSMilanka Ringwald cmd_sent = hfp_ag_run_for_context_service_level_connection_queries(hfp_connection); 18893deb3ec6SMatthias Ringwald } 18903deb3ec6SMatthias Ringwald 1891c04cf7ffSMilanka Ringwald if (!cmd_sent){ 1892c04cf7ffSMilanka Ringwald cmd_sent = call_setup_state_machine(hfp_connection); 1893aa4dd815SMatthias Ringwald } 1894aa4dd815SMatthias Ringwald 1895b956fff3SMatthias Ringwald // trigger codec exchange (must be before hfp_ag_run_for_audio_connection) 1896d0a0eceeSMatthias Ringwald if (!cmd_sent && (hfp_connection->command == HFP_CMD_NONE) && hfp_connection->trigger_codec_exchange){ 1897d0a0eceeSMatthias Ringwald switch (hfp_connection->codecs_state){ 1898d0a0eceeSMatthias Ringwald case HFP_CODECS_IDLE: 1899d0a0eceeSMatthias Ringwald case HFP_CODECS_RECEIVED_LIST: 1900d0a0eceeSMatthias Ringwald case HFP_CODECS_AG_RESEND_COMMON_CODEC: 1901d0a0eceeSMatthias Ringwald case HFP_CODECS_ERROR: 1902d0a0eceeSMatthias Ringwald hfp_connection->trigger_codec_exchange = 0; 1903d0a0eceeSMatthias Ringwald hfp_connection->command = HFP_CMD_AG_SEND_COMMON_CODEC; 19043deb3ec6SMatthias Ringwald break; 19053deb3ec6SMatthias Ringwald default: 19063deb3ec6SMatthias Ringwald break; 19073deb3ec6SMatthias Ringwald } 19083deb3ec6SMatthias Ringwald } 1909c04cf7ffSMilanka Ringwald 1910b956fff3SMatthias Ringwald if (!cmd_sent){ 1911b956fff3SMatthias Ringwald cmd_sent = hfp_ag_run_for_audio_connection(hfp_connection); 1912b956fff3SMatthias Ringwald } 1913b956fff3SMatthias Ringwald 1914b956fff3SMatthias Ringwald 1915d0a0eceeSMatthias Ringwald // disconnect 1916d0a0eceeSMatthias Ringwald if (!cmd_sent && (hfp_connection->command == HFP_CMD_NONE) && (hfp_connection->state == HFP_W2_DISCONNECT_RFCOMM)){ 1917d0a0eceeSMatthias Ringwald hfp_connection->state = HFP_W4_RFCOMM_DISCONNECTED; 1918d0a0eceeSMatthias Ringwald rfcomm_disconnect(hfp_connection->rfcomm_cid); 1919d0a0eceeSMatthias Ringwald } 1920d0a0eceeSMatthias Ringwald 1921c04cf7ffSMilanka Ringwald if (cmd_sent){ 1922a0ffb263SMatthias Ringwald hfp_connection->command = HFP_CMD_NONE; 1923473ac565SMatthias Ringwald rfcomm_request_can_send_now_event(hfp_connection->rfcomm_cid); 1924473ac565SMatthias Ringwald } 19253deb3ec6SMatthias Ringwald } 1926d68dcce1SMatthias Ringwald 1927e0d09929SMatthias Ringwald static int hfp_parser_is_end_of_line(uint8_t byte){ 1928c1ab6cc1SMatthias Ringwald return (byte == '\n') || (byte == '\r'); 1929e0d09929SMatthias Ringwald } 1930e0d09929SMatthias Ringwald 1931e9c22d4eSMatthias Ringwald static void hfp_ag_handle_rfcomm_data(uint8_t packet_type, uint16_t channel, uint8_t *packet, uint16_t size){ 19328a46ec40SMatthias Ringwald UNUSED(packet_type); // ok: only called with RFCOMM_DATA_PACKET 19338a46ec40SMatthias Ringwald 19348a46ec40SMatthias Ringwald // assertion: size >= 1 as rfcomm.c does not deliver empty packets 19358a46ec40SMatthias Ringwald if (size < 1) return; 19369ec2630cSMatthias Ringwald 1937a0ffb263SMatthias Ringwald hfp_connection_t * hfp_connection = get_hfp_connection_context_for_rfcomm_cid(channel); 1938a0ffb263SMatthias Ringwald if (!hfp_connection) return; 19391e35c04dSMatthias Ringwald 1940186dd3d2SMatthias Ringwald hfp_log_rfcomm_message("HFP_AG_RX", packet, size); 1941e43d1938SMatthias Ringwald #ifdef ENABLE_HFP_AT_MESSAGES 1942e43d1938SMatthias Ringwald hfp_emit_string_event(hfp_connection, HFP_SUBEVENT_AT_MESSAGE_RECEIVED, (char *) packet); 1943e43d1938SMatthias Ringwald #endif 19441e35c04dSMatthias Ringwald 19458a46ec40SMatthias Ringwald // process messages byte-wise 19463deb3ec6SMatthias Ringwald int pos; 19473deb3ec6SMatthias Ringwald for (pos = 0; pos < size ; pos++){ 1948a0ffb263SMatthias Ringwald hfp_parse(hfp_connection, packet[pos], 0); 1949186dd3d2SMatthias Ringwald 1950e0d09929SMatthias Ringwald // parse until end of line 1951e0d09929SMatthias Ringwald if (!hfp_parser_is_end_of_line(packet[pos])) continue; 1952e0d09929SMatthias Ringwald 1953186dd3d2SMatthias Ringwald hfp_generic_status_indicator_t * indicator; 1954a0ffb263SMatthias Ringwald switch(hfp_connection->command){ 1955ce263fc8SMatthias Ringwald case HFP_CMD_RESPONSE_AND_HOLD_QUERY: 1956ce263fc8SMatthias Ringwald if (hfp_ag_response_and_hold_active){ 1957a0ffb263SMatthias Ringwald hfp_connection->send_response_and_hold_status = HFP_RESPONSE_AND_HOLD_INCOMING_ON_HOLD + 1; 1958ce263fc8SMatthias Ringwald } 1959a0ffb263SMatthias Ringwald hfp_connection->ok_pending = 1; 1960ce263fc8SMatthias Ringwald break; 1961ce263fc8SMatthias Ringwald case HFP_CMD_RESPONSE_AND_HOLD_COMMAND: 19620222a807SMatthias Ringwald switch(hfp_connection->ag_response_and_hold_action){ 1963ce263fc8SMatthias Ringwald case HFP_RESPONSE_AND_HOLD_INCOMING_ON_HOLD: 1964a0ffb263SMatthias Ringwald hfp_ag_call_sm(HFP_AG_RESPONSE_AND_HOLD_ACCEPT_INCOMING_CALL_BY_HF, hfp_connection); 1965ce263fc8SMatthias Ringwald break; 1966ce263fc8SMatthias Ringwald case HFP_RESPONSE_AND_HOLD_HELD_INCOMING_ACCEPTED: 1967a0ffb263SMatthias Ringwald hfp_ag_call_sm(HFP_AG_RESPONSE_AND_HOLD_ACCEPT_HELD_CALL_BY_HF, hfp_connection); 1968ce263fc8SMatthias Ringwald break; 1969ce263fc8SMatthias Ringwald case HFP_RESPONSE_AND_HOLD_HELD_INCOMING_REJECTED: 1970a0ffb263SMatthias Ringwald hfp_ag_call_sm(HFP_AG_RESPONSE_AND_HOLD_REJECT_HELD_CALL_BY_HF, hfp_connection); 1971ce263fc8SMatthias Ringwald break; 1972ce263fc8SMatthias Ringwald default: 1973ce263fc8SMatthias Ringwald break; 1974ce263fc8SMatthias Ringwald } 1975a0ffb263SMatthias Ringwald hfp_connection->ok_pending = 1; 1976ce263fc8SMatthias Ringwald break; 1977ce263fc8SMatthias Ringwald case HFP_CMD_HF_INDICATOR_STATUS: 1978a0ffb263SMatthias Ringwald hfp_connection->command = HFP_CMD_NONE; 19790b6ea433SMilanka Ringwald if (hfp_connection->parser_indicator_index < hfp_generic_status_indicators_nr){ 19800b6ea433SMilanka Ringwald indicator = &hfp_generic_status_indicators[hfp_connection->parser_indicator_index]; 19810b6ea433SMilanka Ringwald } else { 1982a0ffb263SMatthias Ringwald hfp_connection->send_error = 1; 1983ce263fc8SMatthias Ringwald break; 1984ce263fc8SMatthias Ringwald } 1985ce263fc8SMatthias Ringwald switch (indicator->uuid){ 1986ce263fc8SMatthias Ringwald case 1: // enhanced security 19870222a807SMatthias Ringwald if (hfp_connection->parser_indicator_value > 1) { 1988a0ffb263SMatthias Ringwald hfp_connection->send_error = 1; 1989ce263fc8SMatthias Ringwald return; 1990ce263fc8SMatthias Ringwald } 1991e883851fSMatthias Ringwald log_info("HF Indicator 'enhanced security' set to %u", (unsigned int) hfp_connection->parser_indicator_value); 1992ce263fc8SMatthias Ringwald break; 1993ce263fc8SMatthias Ringwald case 2: // battery level 19940222a807SMatthias Ringwald if (hfp_connection->parser_indicator_value > 100){ 1995a0ffb263SMatthias Ringwald hfp_connection->send_error = 1; 1996ce263fc8SMatthias Ringwald return; 1997ce263fc8SMatthias Ringwald } 1998e883851fSMatthias Ringwald log_info("HF Indicator 'battery' set to %u", (unsigned int) hfp_connection->parser_indicator_value); 1999ce263fc8SMatthias Ringwald break; 2000ce263fc8SMatthias Ringwald default: 2001e883851fSMatthias Ringwald log_info("HF Indicator unknown set to %u", (unsigned int) hfp_connection->parser_indicator_value); 2002ce263fc8SMatthias Ringwald break; 2003ce263fc8SMatthias Ringwald } 2004a0ffb263SMatthias Ringwald hfp_connection->ok_pending = 1; 2005ce263fc8SMatthias Ringwald break; 2006ce263fc8SMatthias Ringwald case HFP_CMD_RETRIEVE_AG_INDICATORS_STATUS: 2007ce263fc8SMatthias Ringwald // expected by SLC state machine 2008a0ffb263SMatthias Ringwald if (hfp_connection->state < HFP_SERVICE_LEVEL_CONNECTION_ESTABLISHED) break; 2009a0ffb263SMatthias Ringwald hfp_connection->send_ag_indicators_segment = 0; 2010a0ffb263SMatthias Ringwald hfp_connection->send_ag_status_indicators = 1; 2011ce263fc8SMatthias Ringwald break; 2012ce263fc8SMatthias Ringwald case HFP_CMD_LIST_CURRENT_CALLS: 2013a0ffb263SMatthias Ringwald hfp_connection->command = HFP_CMD_NONE; 2014a0ffb263SMatthias Ringwald hfp_connection->next_call_index = 0; 2015a0ffb263SMatthias Ringwald hfp_connection->send_status_of_current_calls = 1; 2016ce263fc8SMatthias Ringwald break; 2017ce263fc8SMatthias Ringwald case HFP_CMD_GET_SUBSCRIBER_NUMBER_INFORMATION: 2018ce263fc8SMatthias Ringwald if (subscriber_numbers_count == 0){ 2019485ac19eSMilanka Ringwald hfp_ag_send_ok(hfp_connection->rfcomm_cid); 2020ce263fc8SMatthias Ringwald break; 2021ce263fc8SMatthias Ringwald } 2022a0ffb263SMatthias Ringwald hfp_connection->next_subscriber_number_to_send = 0; 2023a0ffb263SMatthias Ringwald hfp_connection->send_subscriber_number = 1; 2024ce263fc8SMatthias Ringwald break; 2025c1797c7dSMatthias Ringwald case HFP_CMD_TRANSMIT_DTMF_CODES: 20260222a807SMatthias Ringwald { 2027a0ffb263SMatthias Ringwald hfp_connection->command = HFP_CMD_NONE; 20280222a807SMatthias Ringwald char buffer[2]; 20290222a807SMatthias Ringwald buffer[0] = (char) hfp_connection->ag_dtmf_code; 20300222a807SMatthias Ringwald buffer[1] = 0; 20310222a807SMatthias Ringwald hfp_emit_string_event(hfp_connection, HFP_SUBEVENT_TRANSMIT_DTMF_CODES, buffer); 2032c1797c7dSMatthias Ringwald break; 20330222a807SMatthias Ringwald } 2034aa4dd815SMatthias Ringwald case HFP_CMD_HF_REQUEST_PHONE_NUMBER: 2035a0ffb263SMatthias Ringwald hfp_connection->command = HFP_CMD_NONE; 2036ca59be51SMatthias Ringwald hfp_emit_simple_event(hfp_connection, HFP_SUBEVENT_ATTACH_NUMBER_TO_VOICE_TAG); 2037aa4dd815SMatthias Ringwald break; 2038aa4dd815SMatthias Ringwald case HFP_CMD_TURN_OFF_EC_AND_NR: 2039a0ffb263SMatthias Ringwald hfp_connection->command = HFP_CMD_NONE; 2040aa4dd815SMatthias Ringwald if (get_bit(hfp_supported_features, HFP_AGSF_EC_NR_FUNCTION)){ 2041a0ffb263SMatthias Ringwald hfp_connection->ok_pending = 1; 2042a0ffb263SMatthias Ringwald hfp_supported_features = store_bit(hfp_supported_features, HFP_AGSF_EC_NR_FUNCTION, hfp_connection->ag_echo_and_noise_reduction); 204360ebb071SMilanka Ringwald log_info("AG: EC/NR = %u", hfp_connection->ag_echo_and_noise_reduction); 2044aa4dd815SMatthias Ringwald } else { 2045a0ffb263SMatthias Ringwald hfp_connection->send_error = 1; 2046aa4dd815SMatthias Ringwald } 2047aa4dd815SMatthias Ringwald break; 2048aa4dd815SMatthias Ringwald case HFP_CMD_CALL_ANSWERED: 2049a0ffb263SMatthias Ringwald hfp_connection->command = HFP_CMD_NONE; 205060ebb071SMilanka Ringwald log_info("HFP: ATA"); 2051a0ffb263SMatthias Ringwald hfp_ag_call_sm(HFP_AG_INCOMING_CALL_ACCEPTED_BY_HF, hfp_connection); 2052aa4dd815SMatthias Ringwald break; 2053aa4dd815SMatthias Ringwald case HFP_CMD_HANG_UP_CALL: 2054a0ffb263SMatthias Ringwald hfp_connection->command = HFP_CMD_NONE; 2055a0ffb263SMatthias Ringwald hfp_connection->ok_pending = 1; 2056a0ffb263SMatthias Ringwald hfp_ag_call_sm(HFP_AG_TERMINATE_CALL_BY_HF, hfp_connection); 2057aa4dd815SMatthias Ringwald break; 2058aa4dd815SMatthias Ringwald case HFP_CMD_CALL_HOLD: { 2059a0ffb263SMatthias Ringwald hfp_connection->command = HFP_CMD_NONE; 2060a0ffb263SMatthias Ringwald hfp_connection->ok_pending = 1; 2061d0c20769SMatthias Ringwald 20620222a807SMatthias Ringwald switch (hfp_connection->ag_call_hold_action){ 20630222a807SMatthias Ringwald case 0: 2064d0c20769SMatthias Ringwald // Releases all held calls or sets User Determined User Busy (UDUB) for a waiting call. 2065a0ffb263SMatthias Ringwald hfp_ag_call_sm(HFP_AG_CALL_HOLD_USER_BUSY, hfp_connection); 2066aa4dd815SMatthias Ringwald break; 20670222a807SMatthias Ringwald case 1: 2068d0c20769SMatthias Ringwald // Releases all active calls (if any exist) and accepts the other (held or waiting) call. 2069d0c20769SMatthias Ringwald // Where both a held and a waiting call exist, the above procedures shall apply to the 2070d0c20769SMatthias Ringwald // waiting call (i.e., not to the held call) in conflicting situation. 2071a0ffb263SMatthias Ringwald hfp_ag_call_sm(HFP_AG_CALL_HOLD_RELEASE_ACTIVE_ACCEPT_HELD_OR_WAITING_CALL, hfp_connection); 2072aa4dd815SMatthias Ringwald break; 20730222a807SMatthias Ringwald case 2: 2074d0c20769SMatthias Ringwald // Places all active calls (if any exist) on hold and accepts the other (held or waiting) call. 2075d0c20769SMatthias Ringwald // Where both a held and a waiting call exist, the above procedures shall apply to the 2076d0c20769SMatthias Ringwald // waiting call (i.e., not to the held call) in conflicting situation. 2077a0ffb263SMatthias Ringwald hfp_ag_call_sm(HFP_AG_CALL_HOLD_PARK_ACTIVE_ACCEPT_HELD_OR_WAITING_CALL, hfp_connection); 2078aa4dd815SMatthias Ringwald break; 20790222a807SMatthias Ringwald case 3: 2080d0c20769SMatthias Ringwald // Adds a held call to the conversation. 2081a0ffb263SMatthias Ringwald hfp_ag_call_sm(HFP_AG_CALL_HOLD_ADD_HELD_CALL, hfp_connection); 2082aa4dd815SMatthias Ringwald break; 20830222a807SMatthias Ringwald case 4: 2084d0c20769SMatthias Ringwald // Connects the two calls and disconnects the subscriber from both calls (Explicit Call Transfer). 2085a0ffb263SMatthias Ringwald hfp_ag_call_sm(HFP_AG_CALL_HOLD_EXIT_AND_JOIN_CALLS, hfp_connection); 2086aa4dd815SMatthias Ringwald break; 2087aa4dd815SMatthias Ringwald default: 2088aa4dd815SMatthias Ringwald break; 2089aa4dd815SMatthias Ringwald } 20900222a807SMatthias Ringwald hfp_connection->call_index = 0; 209135e92150SMatthias Ringwald break; 2092aa4dd815SMatthias Ringwald } 2093aa4dd815SMatthias Ringwald case HFP_CMD_CALL_PHONE_NUMBER: 2094a0ffb263SMatthias Ringwald hfp_connection->command = HFP_CMD_NONE; 20959ff73f41SMatthias Ringwald hfp_ag_call_sm(HFP_AG_OUTGOING_CALL_INITIATED_BY_HF, hfp_connection); 2096aa4dd815SMatthias Ringwald break; 2097aa4dd815SMatthias Ringwald case HFP_CMD_REDIAL_LAST_NUMBER: 2098a0ffb263SMatthias Ringwald hfp_connection->command = HFP_CMD_NONE; 2099a0ffb263SMatthias Ringwald hfp_ag_call_sm(HFP_AG_OUTGOING_REDIAL_INITIATED, hfp_connection); 2100aa4dd815SMatthias Ringwald break; 2101aa4dd815SMatthias Ringwald case HFP_CMD_ENABLE_CLIP: 2102a0ffb263SMatthias Ringwald hfp_connection->command = HFP_CMD_NONE; 2103a0ffb263SMatthias Ringwald log_info("hfp: clip set, now: %u", hfp_connection->clip_enabled); 2104a0ffb263SMatthias Ringwald hfp_connection->ok_pending = 1; 2105aa4dd815SMatthias Ringwald break; 2106aa4dd815SMatthias Ringwald case HFP_CMD_ENABLE_CALL_WAITING_NOTIFICATION: 2107a0ffb263SMatthias Ringwald hfp_connection->command = HFP_CMD_NONE; 2108a0ffb263SMatthias Ringwald log_info("hfp: call waiting notification set, now: %u", hfp_connection->call_waiting_notification_enabled); 2109a0ffb263SMatthias Ringwald hfp_connection->ok_pending = 1; 2110aa4dd815SMatthias Ringwald break; 2111aa4dd815SMatthias Ringwald case HFP_CMD_SET_SPEAKER_GAIN: 2112a0ffb263SMatthias Ringwald hfp_connection->command = HFP_CMD_NONE; 2113a0ffb263SMatthias Ringwald hfp_connection->ok_pending = 1; 211460ebb071SMilanka Ringwald log_info("HF speaker gain = %u", hfp_connection->speaker_gain); 21153db60f78SBjoern Hartmann hfp_emit_event(hfp_connection, HFP_SUBEVENT_SPEAKER_VOLUME, hfp_connection->speaker_gain); 2116aa4dd815SMatthias Ringwald break; 2117aa4dd815SMatthias Ringwald case HFP_CMD_SET_MICROPHONE_GAIN: 2118a0ffb263SMatthias Ringwald hfp_connection->command = HFP_CMD_NONE; 2119a0ffb263SMatthias Ringwald hfp_connection->ok_pending = 1; 212060ebb071SMilanka Ringwald log_info("HF microphone gain = %u", hfp_connection->microphone_gain); 21212abbd98dSMatthias Ringwald hfp_emit_event(hfp_connection, HFP_SUBEVENT_MICROPHONE_VOLUME, hfp_connection->microphone_gain); 2122aa4dd815SMatthias Ringwald break; 2123aa4dd815SMatthias Ringwald default: 2124aa4dd815SMatthias Ringwald break; 21253deb3ec6SMatthias Ringwald } 21263deb3ec6SMatthias Ringwald } 21270cef86faSMatthias Ringwald } 21283deb3ec6SMatthias Ringwald 21291c6a0fc0SMatthias Ringwald static void hfp_ag_run(void){ 2130d63c37a1SMatthias Ringwald btstack_linked_list_iterator_t it; 2131d63c37a1SMatthias Ringwald btstack_linked_list_iterator_init(&it, hfp_get_connections()); 2132d63c37a1SMatthias Ringwald while (btstack_linked_list_iterator_has_next(&it)){ 2133d63c37a1SMatthias Ringwald hfp_connection_t * hfp_connection = (hfp_connection_t *)btstack_linked_list_iterator_next(&it); 213422387625SMatthias Ringwald if (hfp_connection->local_role != HFP_ROLE_AG) continue; 2135f0aeb307SMatthias Ringwald hfp_ag_run_for_context(hfp_connection); 21363deb3ec6SMatthias Ringwald } 21373deb3ec6SMatthias Ringwald } 21383deb3ec6SMatthias Ringwald 21391c6a0fc0SMatthias Ringwald static void hfp_ag_rfcomm_packet_handler(uint8_t packet_type, uint16_t channel, uint8_t *packet, uint16_t size){ 21403deb3ec6SMatthias Ringwald switch (packet_type){ 21413deb3ec6SMatthias Ringwald case RFCOMM_DATA_PACKET: 2142e9c22d4eSMatthias Ringwald hfp_ag_handle_rfcomm_data(packet_type, channel, packet, size); 21433deb3ec6SMatthias Ringwald break; 21443deb3ec6SMatthias Ringwald case HCI_EVENT_PACKET: 2145e30a6a47SMatthias Ringwald if (packet[0] == RFCOMM_EVENT_CAN_SEND_NOW){ 2146e30a6a47SMatthias Ringwald uint16_t rfcomm_cid = rfcomm_event_can_send_now_get_rfcomm_cid(packet); 2147f0aeb307SMatthias Ringwald hfp_ag_run_for_context(get_hfp_connection_context_for_rfcomm_cid(rfcomm_cid)); 2148e30a6a47SMatthias Ringwald return; 2149e30a6a47SMatthias Ringwald } 215027950165SMatthias Ringwald hfp_handle_rfcomm_event(packet_type, channel, packet, size, HFP_ROLE_AG); 2151aa4dd815SMatthias Ringwald break; 21523deb3ec6SMatthias Ringwald default: 21533deb3ec6SMatthias Ringwald break; 21543deb3ec6SMatthias Ringwald } 21553deb3ec6SMatthias Ringwald 21561c6a0fc0SMatthias Ringwald hfp_ag_run(); 21573deb3ec6SMatthias Ringwald } 21583deb3ec6SMatthias Ringwald 21591c6a0fc0SMatthias Ringwald static void hfp_ag_hci_event_packet_handler(uint8_t packet_type, uint16_t channel, uint8_t *packet, uint16_t size){ 2160405014fbSMatthias Ringwald hfp_handle_hci_event(packet_type, channel, packet, size, HFP_ROLE_AG); 21611c6a0fc0SMatthias Ringwald hfp_ag_run(); 2162405014fbSMatthias Ringwald } 2163405014fbSMatthias Ringwald 21647ca89cabSMatthias Ringwald void hfp_ag_init_codecs(int codecs_nr, const uint8_t * codecs){ 21653deb3ec6SMatthias Ringwald if (codecs_nr > HFP_MAX_NUM_CODECS){ 21663deb3ec6SMatthias Ringwald log_error("hfp_init: codecs_nr (%d) > HFP_MAX_NUM_CODECS (%d)", codecs_nr, HFP_MAX_NUM_CODECS); 21673deb3ec6SMatthias Ringwald return; 21683deb3ec6SMatthias Ringwald } 21693deb3ec6SMatthias Ringwald int i; 2170a0ffb263SMatthias Ringwald hfp_codecs_nr = codecs_nr; 21713deb3ec6SMatthias Ringwald for (i=0; i < codecs_nr; i++){ 21723deb3ec6SMatthias Ringwald hfp_codecs[i] = codecs[i]; 21733deb3ec6SMatthias Ringwald } 2174a0ffb263SMatthias Ringwald } 21753deb3ec6SMatthias Ringwald 2176a0ffb263SMatthias Ringwald void hfp_ag_init_supported_features(uint32_t supported_features){ 2177a0ffb263SMatthias Ringwald hfp_supported_features = supported_features; 2178a0ffb263SMatthias Ringwald } 21793deb3ec6SMatthias Ringwald 21807ca89cabSMatthias Ringwald void hfp_ag_init_ag_indicators(int ag_indicators_nr, const hfp_ag_indicator_t * ag_indicators){ 2181a0ffb263SMatthias Ringwald hfp_ag_indicators_nr = ag_indicators_nr; 21826535961aSMatthias Ringwald (void)memcpy(hfp_ag_indicators, ag_indicators, 21836535961aSMatthias Ringwald ag_indicators_nr * sizeof(hfp_ag_indicator_t)); 2184a0ffb263SMatthias Ringwald } 21853deb3ec6SMatthias Ringwald 21867ca89cabSMatthias Ringwald void hfp_ag_init_hf_indicators(int hf_indicators_nr, const hfp_generic_status_indicator_t * hf_indicators){ 218725789943SMilanka Ringwald if (hf_indicators_nr > HFP_MAX_NUM_INDICATORS) return; 2188a0ffb263SMatthias Ringwald hfp_generic_status_indicators_nr = hf_indicators_nr; 21896535961aSMatthias Ringwald (void)memcpy(hfp_generic_status_indicators, hf_indicators, 21906535961aSMatthias Ringwald hf_indicators_nr * sizeof(hfp_generic_status_indicator_t)); 2191a0ffb263SMatthias Ringwald } 2192a0ffb263SMatthias Ringwald 2193a0ffb263SMatthias Ringwald void hfp_ag_init_call_hold_services(int call_hold_services_nr, const char * call_hold_services[]){ 21943deb3ec6SMatthias Ringwald hfp_ag_call_hold_services_nr = call_hold_services_nr; 21956535961aSMatthias Ringwald (void)memcpy(hfp_ag_call_hold_services, call_hold_services, 21966535961aSMatthias Ringwald call_hold_services_nr * sizeof(char *)); 2197a0ffb263SMatthias Ringwald } 2198a0ffb263SMatthias Ringwald 2199a0ffb263SMatthias Ringwald 2200a0ffb263SMatthias Ringwald void hfp_ag_init(uint16_t rfcomm_channel_nr){ 220127950165SMatthias Ringwald 2202520c92d5SMatthias Ringwald hfp_init(); 220320b2edb6SMatthias Ringwald hfp_ag_call_hold_services_nr = 0; 220420b2edb6SMatthias Ringwald hfp_ag_response_and_hold_active = 0; 220520b2edb6SMatthias Ringwald hfp_ag_indicators_nr = 0; 220620b2edb6SMatthias Ringwald hfp_codecs_nr = 0; 220720b2edb6SMatthias Ringwald hfp_supported_features = HFP_DEFAULT_AG_SUPPORTED_FEATURES; 220820b2edb6SMatthias Ringwald subscriber_numbers = NULL; 220920b2edb6SMatthias Ringwald subscriber_numbers_count = 0; 2210d63c37a1SMatthias Ringwald 22111c6a0fc0SMatthias Ringwald hfp_ag_hci_event_callback_registration.callback = &hfp_ag_hci_event_packet_handler; 22121c6a0fc0SMatthias Ringwald hci_add_event_handler(&hfp_ag_hci_event_callback_registration); 221327950165SMatthias Ringwald 22141c6a0fc0SMatthias Ringwald rfcomm_register_service(&hfp_ag_rfcomm_packet_handler, rfcomm_channel_nr, 0xffff); 221527950165SMatthias Ringwald 221627950165SMatthias Ringwald // used to set packet handler for outgoing rfcomm connections - could be handled by emitting an event to us 22171c6a0fc0SMatthias Ringwald hfp_set_ag_rfcomm_packet_handler(&hfp_ag_rfcomm_packet_handler); 2218aa4dd815SMatthias Ringwald 2219d210d9c4SMatthias Ringwald hfp_gsm_init(); 22203deb3ec6SMatthias Ringwald } 22213deb3ec6SMatthias Ringwald 222220b2edb6SMatthias Ringwald void hfp_ag_deinit(void){ 222320b2edb6SMatthias Ringwald hfp_deinit(); 222420b2edb6SMatthias Ringwald hfp_gsm_deinit(); 222520b2edb6SMatthias Ringwald (void) memset(&hfp_ag_hci_event_callback_registration, 0, sizeof(btstack_packet_callback_registration_t)); 222620b2edb6SMatthias Ringwald (void) memset(&hfp_ag_callback, 0, sizeof(btstack_packet_handler_t)); 222720b2edb6SMatthias Ringwald (void) memset(&hfp_ag_call_hold_services, 0, sizeof(hfp_ag_call_hold_services)); 222820b2edb6SMatthias Ringwald (void) memset(&hfp_ag_response_and_hold_state, 0, sizeof(hfp_response_and_hold_state_t)); 222920b2edb6SMatthias Ringwald } 223020b2edb6SMatthias Ringwald 22313deb3ec6SMatthias Ringwald void hfp_ag_establish_service_level_connection(bd_addr_t bd_addr){ 2232323d3000SMatthias Ringwald hfp_establish_service_level_connection(bd_addr, BLUETOOTH_SERVICE_CLASS_HANDSFREE, HFP_ROLE_AG); 22333deb3ec6SMatthias Ringwald } 22343deb3ec6SMatthias Ringwald 2235d97d752dSMilanka Ringwald void hfp_ag_release_service_level_connection(hci_con_handle_t acl_handle){ 22369c9c64c1SMatthias Ringwald hfp_connection_t * hfp_connection = get_hfp_ag_connection_context_for_acl_handle(acl_handle); 2237a33eb0c4SMilanka Ringwald if (!hfp_connection){ 2238a33eb0c4SMilanka Ringwald log_error("HFP AG: ACL connection 0x%2x is not found.", acl_handle); 2239a33eb0c4SMilanka Ringwald return; 2240a33eb0c4SMilanka Ringwald } 2241a0ffb263SMatthias Ringwald hfp_release_service_level_connection(hfp_connection); 2242f0aeb307SMatthias Ringwald hfp_ag_run_for_context(hfp_connection); 22433deb3ec6SMatthias Ringwald } 22443deb3ec6SMatthias Ringwald 2245d97d752dSMilanka Ringwald void hfp_ag_report_extended_audio_gateway_error_result_code(hci_con_handle_t acl_handle, hfp_cme_error_t error){ 22469c9c64c1SMatthias Ringwald hfp_connection_t * hfp_connection = get_hfp_ag_connection_context_for_acl_handle(acl_handle); 2247a0ffb263SMatthias Ringwald if (!hfp_connection){ 2248a33eb0c4SMilanka Ringwald log_error("HFP AG: ACL connection 0x%2x is not found.", acl_handle); 22493deb3ec6SMatthias Ringwald return; 22503deb3ec6SMatthias Ringwald } 2251a0ffb263SMatthias Ringwald hfp_connection->extended_audio_gateway_error = 0; 2252a0ffb263SMatthias Ringwald if (!hfp_connection->enable_extended_audio_gateway_error_report){ 22533deb3ec6SMatthias Ringwald return; 22543deb3ec6SMatthias Ringwald } 2255a0ffb263SMatthias Ringwald hfp_connection->extended_audio_gateway_error = error; 2256f0aeb307SMatthias Ringwald hfp_ag_run_for_context(hfp_connection); 22573deb3ec6SMatthias Ringwald } 22583deb3ec6SMatthias Ringwald 2259a0ffb263SMatthias Ringwald static void hfp_ag_setup_audio_connection(hfp_connection_t * hfp_connection){ 22602ee45eb2SMilanka Ringwald log_info("hfp_ag_setup_audio_connection state %u", hfp_connection->state); 2261a0ffb263SMatthias Ringwald if (hfp_connection->state == HFP_AUDIO_CONNECTION_ESTABLISHED) return; 2262a0ffb263SMatthias Ringwald if (hfp_connection->state >= HFP_W2_DISCONNECT_SCO) return; 22633deb3ec6SMatthias Ringwald 2264a0ffb263SMatthias Ringwald hfp_connection->establish_audio_connection = 1; 2265a0ffb263SMatthias Ringwald if (!has_codec_negotiation_feature(hfp_connection)){ 2266d6ff09e1SMatthias Ringwald log_info("hfp_ag_establish_audio_connection - no codec negotiation feature, using CVSD"); 2267d6ff09e1SMatthias Ringwald hfp_connection->negotiated_codec = HFP_CODEC_CVSD; 2268a0ffb263SMatthias Ringwald hfp_connection->codecs_state = HFP_CODECS_EXCHANGED; 22697522e673SMatthias Ringwald // now, pick link settings 2270afac2a04SMilanka Ringwald hfp_init_link_settings(hfp_connection, hfp_ag_esco_s4_supported(hfp_connection)); 22713721a235SMatthias Ringwald #ifdef ENABLE_CC256X_ASSISTED_HFP 22723721a235SMatthias Ringwald hfp_cc256x_prepare_for_sco(hfp_connection); 22733721a235SMatthias Ringwald #endif 22742ee45eb2SMilanka Ringwald return; 22753deb3ec6SMatthias Ringwald } 2276aa4dd815SMatthias Ringwald 2277411a9776SMilanka Ringwald uint8_t i; 2278411a9776SMilanka Ringwald bool codec_was_in_use = false; 2279411a9776SMilanka Ringwald bool better_codec_can_be_used = false; 2280411a9776SMilanka Ringwald 2281411a9776SMilanka Ringwald for (i = 0; i<hfp_connection->remote_codecs_nr; i++){ 2282411a9776SMilanka Ringwald if (hfp_connection->negotiated_codec == hfp_connection->remote_codecs[i]){ 2283411a9776SMilanka Ringwald codec_was_in_use = true; 2284411a9776SMilanka Ringwald } else if (hfp_connection->negotiated_codec < hfp_connection->remote_codecs[i]){ 2285411a9776SMilanka Ringwald better_codec_can_be_used = true; 2286411a9776SMilanka Ringwald } 2287411a9776SMilanka Ringwald } 2288411a9776SMilanka Ringwald 2289411a9776SMilanka Ringwald if (!codec_was_in_use || better_codec_can_be_used){ 22902ee45eb2SMilanka Ringwald hfp_connection->trigger_codec_exchange = 1; 2291411a9776SMilanka Ringwald hfp_connection->codecs_state = HFP_CODECS_IDLE; 2292411a9776SMilanka Ringwald } 2293aa4dd815SMatthias Ringwald } 2294aa4dd815SMatthias Ringwald 2295d97d752dSMilanka Ringwald void hfp_ag_establish_audio_connection(hci_con_handle_t acl_handle){ 22969c9c64c1SMatthias Ringwald hfp_connection_t * hfp_connection = get_hfp_ag_connection_context_for_acl_handle(acl_handle); 2297a33eb0c4SMilanka Ringwald if (!hfp_connection){ 2298a33eb0c4SMilanka Ringwald log_error("HFP AG: ACL connection 0x%2x is not found.", acl_handle); 2299a33eb0c4SMilanka Ringwald return; 2300a33eb0c4SMilanka Ringwald } 2301411a9776SMilanka Ringwald 2302a0ffb263SMatthias Ringwald hfp_connection->establish_audio_connection = 0; 2303a0ffb263SMatthias Ringwald hfp_ag_setup_audio_connection(hfp_connection); 2304f0aeb307SMatthias Ringwald hfp_ag_run_for_context(hfp_connection); 23053deb3ec6SMatthias Ringwald } 23063deb3ec6SMatthias Ringwald 2307d97d752dSMilanka Ringwald void hfp_ag_release_audio_connection(hci_con_handle_t acl_handle){ 23089c9c64c1SMatthias Ringwald hfp_connection_t * hfp_connection = get_hfp_ag_connection_context_for_acl_handle(acl_handle); 2309a33eb0c4SMilanka Ringwald if (!hfp_connection){ 2310a33eb0c4SMilanka Ringwald log_error("HFP AG: ACL connection 0x%2x is not found.", acl_handle); 2311a33eb0c4SMilanka Ringwald return; 2312a33eb0c4SMilanka Ringwald } 2313a0ffb263SMatthias Ringwald hfp_release_audio_connection(hfp_connection); 2314f0aeb307SMatthias Ringwald hfp_ag_run_for_context(hfp_connection); 23153deb3ec6SMatthias Ringwald } 2316aa4dd815SMatthias Ringwald 2317aa4dd815SMatthias Ringwald /** 2318aa4dd815SMatthias Ringwald * @brief Enable in-band ring tone 2319aa4dd815SMatthias Ringwald */ 2320aa4dd815SMatthias Ringwald void hfp_ag_set_use_in_band_ring_tone(int use_in_band_ring_tone){ 2321aa4dd815SMatthias Ringwald if (get_bit(hfp_supported_features, HFP_AGSF_IN_BAND_RING_TONE) == use_in_band_ring_tone){ 2322aa4dd815SMatthias Ringwald return; 2323aa4dd815SMatthias Ringwald } 2324aa4dd815SMatthias Ringwald hfp_supported_features = store_bit(hfp_supported_features, HFP_AGSF_IN_BAND_RING_TONE, use_in_band_ring_tone); 2325aa4dd815SMatthias Ringwald 2326665d90f2SMatthias Ringwald btstack_linked_list_iterator_t it; 2327665d90f2SMatthias Ringwald btstack_linked_list_iterator_init(&it, hfp_get_connections()); 2328665d90f2SMatthias Ringwald while (btstack_linked_list_iterator_has_next(&it)){ 2329a0ffb263SMatthias Ringwald hfp_connection_t * hfp_connection = (hfp_connection_t *)btstack_linked_list_iterator_next(&it); 233066c5995fSMatthias Ringwald if (hfp_connection->local_role != HFP_ROLE_AG) continue; 2331a0ffb263SMatthias Ringwald hfp_connection->command = HFP_CMD_CHANGE_IN_BAND_RING_TONE_SETTING; 2332f0aeb307SMatthias Ringwald hfp_ag_run_for_context(hfp_connection); 2333aa4dd815SMatthias Ringwald } 2334aa4dd815SMatthias Ringwald } 2335aa4dd815SMatthias Ringwald 2336aa4dd815SMatthias Ringwald /** 2337aa4dd815SMatthias Ringwald * @brief Called from GSM 2338aa4dd815SMatthias Ringwald */ 2339aa4dd815SMatthias Ringwald void hfp_ag_incoming_call(void){ 2340aa4dd815SMatthias Ringwald hfp_ag_call_sm(HFP_AG_INCOMING_CALL, NULL); 2341aa4dd815SMatthias Ringwald } 2342aa4dd815SMatthias Ringwald 2343*fe899794SMatthias Ringwald void hfp_ag_outgoing_call_initiated(const char * number) { 2344*fe899794SMatthias Ringwald hfp_ag_call_sm(HFP_AG_OUTGOING_CALL_INITIATED_BY_AG, NULL); 2345*fe899794SMatthias Ringwald } 2346*fe899794SMatthias Ringwald 2347aa4dd815SMatthias Ringwald /** 2348aa4dd815SMatthias Ringwald * @brief number is stored. 2349aa4dd815SMatthias Ringwald */ 2350aa4dd815SMatthias Ringwald void hfp_ag_set_clip(uint8_t type, const char * number){ 2351f8737b81SMatthias Ringwald hfp_gsm_handler(HFP_AG_SET_CLIP, 0, type, number); 2352aa4dd815SMatthias Ringwald } 2353aa4dd815SMatthias Ringwald 2354aa4dd815SMatthias Ringwald void hfp_ag_call_dropped(void){ 2355aa4dd815SMatthias Ringwald hfp_ag_call_sm(HFP_AG_CALL_DROPPED, NULL); 2356aa4dd815SMatthias Ringwald } 2357aa4dd815SMatthias Ringwald 2358aa4dd815SMatthias Ringwald // call from AG UI 2359aa4dd815SMatthias Ringwald void hfp_ag_answer_incoming_call(void){ 2360aa4dd815SMatthias Ringwald hfp_ag_call_sm(HFP_AG_INCOMING_CALL_ACCEPTED_BY_AG, NULL); 2361aa4dd815SMatthias Ringwald } 2362aa4dd815SMatthias Ringwald 2363ce263fc8SMatthias Ringwald void hfp_ag_join_held_call(void){ 2364ce263fc8SMatthias Ringwald hfp_ag_call_sm(HFP_AG_HELD_CALL_JOINED_BY_AG, NULL); 2365ce263fc8SMatthias Ringwald } 2366ce263fc8SMatthias Ringwald 2367aa4dd815SMatthias Ringwald void hfp_ag_terminate_call(void){ 2368aa4dd815SMatthias Ringwald hfp_ag_call_sm(HFP_AG_TERMINATE_CALL_BY_AG, NULL); 2369aa4dd815SMatthias Ringwald } 2370aa4dd815SMatthias Ringwald 2371aa4dd815SMatthias Ringwald void hfp_ag_outgoing_call_ringing(void){ 2372aa4dd815SMatthias Ringwald hfp_ag_call_sm(HFP_AG_OUTGOING_CALL_RINGING, NULL); 2373aa4dd815SMatthias Ringwald } 2374aa4dd815SMatthias Ringwald 2375aa4dd815SMatthias Ringwald void hfp_ag_outgoing_call_established(void){ 2376aa4dd815SMatthias Ringwald hfp_ag_call_sm(HFP_AG_OUTGOING_CALL_ESTABLISHED, NULL); 2377aa4dd815SMatthias Ringwald } 2378aa4dd815SMatthias Ringwald 2379aa4dd815SMatthias Ringwald void hfp_ag_outgoing_call_rejected(void){ 2380aa4dd815SMatthias Ringwald hfp_ag_call_sm(HFP_AG_OUTGOING_CALL_REJECTED, NULL); 2381aa4dd815SMatthias Ringwald } 2382aa4dd815SMatthias Ringwald 2383aa4dd815SMatthias Ringwald void hfp_ag_outgoing_call_accepted(void){ 2384aa4dd815SMatthias Ringwald hfp_ag_call_sm(HFP_AG_OUTGOING_CALL_ACCEPTED, NULL); 2385aa4dd815SMatthias Ringwald } 2386ce263fc8SMatthias Ringwald 2387ce263fc8SMatthias Ringwald void hfp_ag_hold_incoming_call(void){ 2388ce263fc8SMatthias Ringwald hfp_ag_call_sm(HFP_AG_RESPONSE_AND_HOLD_ACCEPT_INCOMING_CALL_BY_AG, NULL); 2389ce263fc8SMatthias Ringwald } 2390ce263fc8SMatthias Ringwald 2391ce263fc8SMatthias Ringwald void hfp_ag_accept_held_incoming_call(void) { 2392ce263fc8SMatthias Ringwald hfp_ag_call_sm(HFP_AG_RESPONSE_AND_HOLD_ACCEPT_HELD_CALL_BY_AG, NULL); 2393ce263fc8SMatthias Ringwald } 2394ce263fc8SMatthias Ringwald 2395ce263fc8SMatthias Ringwald void hfp_ag_reject_held_incoming_call(void){ 2396ce263fc8SMatthias Ringwald hfp_ag_call_sm(HFP_AG_RESPONSE_AND_HOLD_REJECT_HELD_CALL_BY_AG, NULL); 2397ce263fc8SMatthias Ringwald } 2398ce263fc8SMatthias Ringwald 2399aa4dd815SMatthias Ringwald static void hfp_ag_set_ag_indicator(const char * name, int value){ 2400aa4dd815SMatthias Ringwald int indicator_index = get_ag_indicator_index_for_name(name); 2401aa4dd815SMatthias Ringwald if (indicator_index < 0) return; 2402aa4dd815SMatthias Ringwald hfp_ag_indicators[indicator_index].status = value; 2403aa4dd815SMatthias Ringwald 2404665d90f2SMatthias Ringwald btstack_linked_list_iterator_t it; 2405665d90f2SMatthias Ringwald btstack_linked_list_iterator_init(&it, hfp_get_connections()); 2406665d90f2SMatthias Ringwald while (btstack_linked_list_iterator_has_next(&it)){ 2407a0ffb263SMatthias Ringwald hfp_connection_t * hfp_connection = (hfp_connection_t *)btstack_linked_list_iterator_next(&it); 240866c5995fSMatthias Ringwald if (hfp_connection->local_role != HFP_ROLE_AG) continue; 2409a0ffb263SMatthias Ringwald if (!hfp_connection->ag_indicators[indicator_index].enabled) { 2410245852b7SMilanka Ringwald log_info("Requested AG indicator '%s' update to %u, but it is not enabled", hfp_ag_indicators[indicator_index].name, value); 2411ce263fc8SMatthias Ringwald continue; 2412ce263fc8SMatthias Ringwald } 2413245852b7SMilanka Ringwald log_info("AG indicator '%s' changed to %u, request transfer status", hfp_ag_indicators[indicator_index].name, value); 2414a0ffb263SMatthias Ringwald hfp_connection->ag_indicators_status_update_bitmap = store_bit(hfp_connection->ag_indicators_status_update_bitmap, indicator_index, 1); 2415f0aeb307SMatthias Ringwald hfp_ag_run_for_context(hfp_connection); 2416aa4dd815SMatthias Ringwald } 2417aa4dd815SMatthias Ringwald } 2418aa4dd815SMatthias Ringwald 2419aa4dd815SMatthias Ringwald void hfp_ag_set_registration_status(int status){ 2420245852b7SMilanka Ringwald if ( (status == 0) && (hfp_gsm_call_status() == HFP_CALL_STATUS_ACTIVE_OR_HELD_CALL_IS_PRESENT)){ 2421245852b7SMilanka Ringwald 2422245852b7SMilanka Ringwald // if network goes away wihle a call is active: 2423245852b7SMilanka Ringwald // - the call gets dropped 2424245852b7SMilanka Ringwald // - we send NO CARRIER 2425245852b7SMilanka Ringwald // NOTE: the CALL=0 has to be sent before NO CARRIER 2426245852b7SMilanka Ringwald 2427245852b7SMilanka Ringwald hfp_ag_call_sm(HFP_AG_CALL_DROPPED, NULL); 2428245852b7SMilanka Ringwald 2429245852b7SMilanka Ringwald btstack_linked_list_iterator_t it; 2430245852b7SMilanka Ringwald btstack_linked_list_iterator_init(&it, hfp_get_connections()); 2431245852b7SMilanka Ringwald while (btstack_linked_list_iterator_has_next(&it)){ 2432245852b7SMilanka Ringwald hfp_connection_t * hfp_connection = (hfp_connection_t *)btstack_linked_list_iterator_next(&it); 2433245852b7SMilanka Ringwald hfp_connection->ag_send_no_carrier = true; 2434245852b7SMilanka Ringwald } 2435245852b7SMilanka Ringwald } 2436aa4dd815SMatthias Ringwald hfp_ag_set_ag_indicator("service", status); 2437aa4dd815SMatthias Ringwald } 2438aa4dd815SMatthias Ringwald 2439aa4dd815SMatthias Ringwald void hfp_ag_set_signal_strength(int strength){ 2440aa4dd815SMatthias Ringwald hfp_ag_set_ag_indicator("signal", strength); 2441aa4dd815SMatthias Ringwald } 2442aa4dd815SMatthias Ringwald 2443aa4dd815SMatthias Ringwald void hfp_ag_set_roaming_status(int status){ 2444aa4dd815SMatthias Ringwald hfp_ag_set_ag_indicator("roam", status); 2445aa4dd815SMatthias Ringwald } 2446aa4dd815SMatthias Ringwald 2447aa4dd815SMatthias Ringwald void hfp_ag_set_battery_level(int level){ 2448aa4dd815SMatthias Ringwald hfp_ag_set_ag_indicator("battchg", level); 2449aa4dd815SMatthias Ringwald } 2450aa4dd815SMatthias Ringwald 2451d97d752dSMilanka Ringwald void hfp_ag_activate_voice_recognition(hci_con_handle_t acl_handle, int activate){ 2452aa4dd815SMatthias Ringwald if (!get_bit(hfp_supported_features, HFP_AGSF_VOICE_RECOGNITION_FUNCTION)) return; 24539c9c64c1SMatthias Ringwald hfp_connection_t * hfp_connection = get_hfp_ag_connection_context_for_acl_handle(acl_handle); 2454a33eb0c4SMilanka Ringwald if (!hfp_connection){ 2455a33eb0c4SMilanka Ringwald log_error("HFP AG: ACL connection 0x%2x is not found.", acl_handle); 2456a33eb0c4SMilanka Ringwald return; 2457a33eb0c4SMilanka Ringwald } 2458aa4dd815SMatthias Ringwald 2459a0ffb263SMatthias Ringwald if (!get_bit(hfp_connection->remote_supported_features, HFP_HFSF_VOICE_RECOGNITION_FUNCTION)) { 246060ebb071SMilanka Ringwald log_info("AG cannot acivate voice recognition - not supported by HF"); 2461aa4dd815SMatthias Ringwald return; 2462aa4dd815SMatthias Ringwald } 2463aa4dd815SMatthias Ringwald 2464a0ffb263SMatthias Ringwald hfp_connection->ag_activate_voice_recognition = activate; 2465a0ffb263SMatthias Ringwald hfp_connection->command = HFP_CMD_AG_ACTIVATE_VOICE_RECOGNITION; 2466f0aeb307SMatthias Ringwald hfp_ag_run_for_context(hfp_connection); 2467aa4dd815SMatthias Ringwald } 2468aa4dd815SMatthias Ringwald 2469d97d752dSMilanka Ringwald void hfp_ag_set_microphone_gain(hci_con_handle_t acl_handle, int gain){ 24709c9c64c1SMatthias Ringwald hfp_connection_t * hfp_connection = get_hfp_ag_connection_context_for_acl_handle(acl_handle); 2471a33eb0c4SMilanka Ringwald if (!hfp_connection){ 2472a33eb0c4SMilanka Ringwald log_error("HFP AG: ACL connection 0x%2x is not found.", acl_handle); 2473a33eb0c4SMilanka Ringwald return; 2474a33eb0c4SMilanka Ringwald } 2475a0ffb263SMatthias Ringwald if (hfp_connection->microphone_gain != gain){ 2476a0ffb263SMatthias Ringwald hfp_connection->command = HFP_CMD_SET_MICROPHONE_GAIN; 2477a0ffb263SMatthias Ringwald hfp_connection->microphone_gain = gain; 2478a0ffb263SMatthias Ringwald hfp_connection->send_microphone_gain = 1; 2479aa4dd815SMatthias Ringwald } 2480f0aeb307SMatthias Ringwald hfp_ag_run_for_context(hfp_connection); 2481aa4dd815SMatthias Ringwald } 2482aa4dd815SMatthias Ringwald 2483d97d752dSMilanka Ringwald void hfp_ag_set_speaker_gain(hci_con_handle_t acl_handle, int gain){ 24849c9c64c1SMatthias Ringwald hfp_connection_t * hfp_connection = get_hfp_ag_connection_context_for_acl_handle(acl_handle); 2485a33eb0c4SMilanka Ringwald if (!hfp_connection){ 2486a33eb0c4SMilanka Ringwald log_error("HFP AG: ACL connection 0x%2x is not found.", acl_handle); 2487a33eb0c4SMilanka Ringwald return; 2488a33eb0c4SMilanka Ringwald } 2489a0ffb263SMatthias Ringwald if (hfp_connection->speaker_gain != gain){ 2490a0ffb263SMatthias Ringwald hfp_connection->speaker_gain = gain; 2491a0ffb263SMatthias Ringwald hfp_connection->send_speaker_gain = 1; 2492aa4dd815SMatthias Ringwald } 2493f0aeb307SMatthias Ringwald hfp_ag_run_for_context(hfp_connection); 2494aa4dd815SMatthias Ringwald } 2495aa4dd815SMatthias Ringwald 2496d97d752dSMilanka Ringwald void hfp_ag_send_phone_number_for_voice_tag(hci_con_handle_t acl_handle, const char * number){ 24979c9c64c1SMatthias Ringwald hfp_connection_t * hfp_connection = get_hfp_ag_connection_context_for_acl_handle(acl_handle); 2498a33eb0c4SMilanka Ringwald if (!hfp_connection){ 2499a33eb0c4SMilanka Ringwald log_error("HFP AG: ACL connection 0x%2x is not found.", acl_handle); 2500a33eb0c4SMilanka Ringwald return; 2501a33eb0c4SMilanka Ringwald } 2502aa4dd815SMatthias Ringwald hfp_ag_set_clip(0, number); 2503a0ffb263SMatthias Ringwald hfp_connection->send_phone_number_for_voice_tag = 1; 2504aa4dd815SMatthias Ringwald } 2505aa4dd815SMatthias Ringwald 2506d97d752dSMilanka Ringwald void hfp_ag_reject_phone_number_for_voice_tag(hci_con_handle_t acl_handle){ 25079c9c64c1SMatthias Ringwald hfp_connection_t * hfp_connection = get_hfp_ag_connection_context_for_acl_handle(acl_handle); 2508a33eb0c4SMilanka Ringwald if (!hfp_connection){ 2509a33eb0c4SMilanka Ringwald log_error("HFP AG: ACL connection 0x%2x is not found.", acl_handle); 2510a33eb0c4SMilanka Ringwald return; 2511a33eb0c4SMilanka Ringwald } 2512a0ffb263SMatthias Ringwald hfp_connection->send_error = 1; 2513aa4dd815SMatthias Ringwald } 2514aa4dd815SMatthias Ringwald 2515d97d752dSMilanka Ringwald void hfp_ag_send_dtmf_code_done(hci_con_handle_t acl_handle){ 25169c9c64c1SMatthias Ringwald hfp_connection_t * hfp_connection = get_hfp_ag_connection_context_for_acl_handle(acl_handle); 2517a33eb0c4SMilanka Ringwald if (!hfp_connection){ 2518a33eb0c4SMilanka Ringwald log_error("HFP AG: ACL connection 0x%2x is not found.", acl_handle); 2519a33eb0c4SMilanka Ringwald return; 2520a33eb0c4SMilanka Ringwald } 2521a0ffb263SMatthias Ringwald hfp_connection->ok_pending = 1; 2522c1797c7dSMatthias Ringwald } 2523aa4dd815SMatthias Ringwald 2524ce263fc8SMatthias Ringwald void hfp_ag_set_subcriber_number_information(hfp_phone_number_t * numbers, int numbers_count){ 2525ce263fc8SMatthias Ringwald subscriber_numbers = numbers; 2526ce263fc8SMatthias Ringwald subscriber_numbers_count = numbers_count; 2527ce263fc8SMatthias Ringwald } 2528ce263fc8SMatthias Ringwald 25299cae807eSMatthias Ringwald void hfp_ag_clear_last_dialed_number(void){ 25309cae807eSMatthias Ringwald hfp_gsm_clear_last_dialed_number(); 2531ce263fc8SMatthias Ringwald } 2532ce263fc8SMatthias Ringwald 25339de679b7SMilanka Ringwald void hfp_ag_set_last_dialed_number(const char * number){ 25349de679b7SMilanka Ringwald hfp_gsm_set_last_dialed_number(number); 25359de679b7SMilanka Ringwald } 25369de679b7SMilanka Ringwald 2537d97d752dSMilanka Ringwald void hfp_ag_notify_incoming_call_waiting(hci_con_handle_t acl_handle){ 25389c9c64c1SMatthias Ringwald hfp_connection_t * hfp_connection = get_hfp_ag_connection_context_for_acl_handle(acl_handle); 2539a33eb0c4SMilanka Ringwald if (!hfp_connection){ 2540a33eb0c4SMilanka Ringwald log_error("HFP AG: ACL connection 0x%2x is not found.", acl_handle); 2541a33eb0c4SMilanka Ringwald return; 2542a33eb0c4SMilanka Ringwald } 2543a0ffb263SMatthias Ringwald if (!hfp_connection->call_waiting_notification_enabled) return; 2544a0ffb263SMatthias Ringwald 2545a0ffb263SMatthias Ringwald hfp_connection->ag_notify_incoming_call_waiting = 1; 2546f0aeb307SMatthias Ringwald hfp_ag_run_for_context(hfp_connection); 2547a0ffb263SMatthias Ringwald } 2548ce263fc8SMatthias Ringwald 254976cc1527SMatthias Ringwald void hfp_ag_create_sdp_record(uint8_t * service, uint32_t service_record_handle, int rfcomm_channel_nr, const char * name, uint8_t ability_to_reject_call, uint16_t supported_features, int wide_band_speech){ 255076cc1527SMatthias Ringwald if (!name){ 255176cc1527SMatthias Ringwald name = default_hfp_ag_service_name; 255276cc1527SMatthias Ringwald } 255376cc1527SMatthias Ringwald hfp_create_sdp_record(service, service_record_handle, BLUETOOTH_SERVICE_CLASS_HANDSFREE_AUDIO_GATEWAY, rfcomm_channel_nr, name); 255476cc1527SMatthias Ringwald 255576cc1527SMatthias Ringwald /* 255676cc1527SMatthias Ringwald * 0x01 – Ability to reject a call 255776cc1527SMatthias Ringwald * 0x00 – No ability to reject a call 255876cc1527SMatthias Ringwald */ 255976cc1527SMatthias Ringwald de_add_number(service, DE_UINT, DE_SIZE_16, 0x0301); // Hands-Free Profile - Network 256076cc1527SMatthias Ringwald de_add_number(service, DE_UINT, DE_SIZE_8, ability_to_reject_call); 256176cc1527SMatthias Ringwald 256276cc1527SMatthias Ringwald // Construct SupportedFeatures for SDP bitmap: 256376cc1527SMatthias Ringwald // 256476cc1527SMatthias Ringwald // "The values of the “SupportedFeatures” bitmap given in Table 5.4 shall be the same as the values 256576cc1527SMatthias Ringwald // of the Bits 0 to 4 of the unsolicited result code +BRSF" 256676cc1527SMatthias Ringwald // 256776cc1527SMatthias Ringwald // Wide band speech (bit 5) requires Codec negotiation 256876cc1527SMatthias Ringwald // 256976cc1527SMatthias Ringwald uint16_t sdp_features = supported_features & 0x1f; 257076cc1527SMatthias Ringwald if (wide_band_speech && (supported_features & (1 << HFP_AGSF_CODEC_NEGOTIATION))){ 257176cc1527SMatthias Ringwald sdp_features |= 1 << 5; 257276cc1527SMatthias Ringwald } 257376cc1527SMatthias Ringwald de_add_number(service, DE_UINT, DE_SIZE_16, 0x0311); // Hands-Free Profile - SupportedFeatures 257476cc1527SMatthias Ringwald de_add_number(service, DE_UINT, DE_SIZE_16, sdp_features); 257576cc1527SMatthias Ringwald } 257676cc1527SMatthias Ringwald 257776cc1527SMatthias Ringwald void hfp_ag_register_packet_handler(btstack_packet_handler_t callback){ 257876cc1527SMatthias Ringwald if (callback == NULL){ 257976cc1527SMatthias Ringwald log_error("hfp_ag_register_packet_handler called with NULL callback"); 258076cc1527SMatthias Ringwald return; 258176cc1527SMatthias Ringwald } 258276cc1527SMatthias Ringwald hfp_ag_callback = callback; 258376cc1527SMatthias Ringwald hfp_set_ag_callback(callback); 258476cc1527SMatthias Ringwald } 2585