xref: /btstack/src/classic/hfp_ag.c (revision ab2c6ae4b737d5e801d3defe4117331eb244ebb7)
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  */
37*ab2c6ae4SMatthias Ringwald 
38*ab2c6ae4SMatthias 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 <stdio.h>
503deb3ec6SMatthias Ringwald #include <stdlib.h>
513deb3ec6SMatthias Ringwald #include <string.h>
523deb3ec6SMatthias Ringwald 
5356042629SMatthias Ringwald #include "hci_cmd.h"
5482636622SMatthias Ringwald #include "btstack_run_loop.h"
553deb3ec6SMatthias Ringwald 
563deb3ec6SMatthias Ringwald #include "hci.h"
573deb3ec6SMatthias Ringwald #include "btstack_memory.h"
583deb3ec6SMatthias Ringwald #include "hci_dump.h"
593deb3ec6SMatthias Ringwald #include "l2cap.h"
6016ece135SMatthias Ringwald #include "btstack_debug.h"
61e30a6a47SMatthias Ringwald #include "btstack_event.h"
6259c6af15SMatthias Ringwald #include "classic/core.h"
633edc84c5SMatthias Ringwald #include "classic/hfp.h"
643edc84c5SMatthias Ringwald #include "classic/hfp_ag.h"
65023f2764SMatthias Ringwald #include "classic/hfp_gsm_model.h"
66efda0b48SMatthias Ringwald #include "classic/sdp_client_rfcomm.h"
67023f2764SMatthias Ringwald #include "classic/sdp_server.h"
68023f2764SMatthias Ringwald #include "classic/sdp_util.h"
693deb3ec6SMatthias Ringwald 
70c5b64319SMatthias Ringwald // private prototypes
71c5b64319SMatthias Ringwald static void packet_handler(uint8_t packet_type, uint16_t channel, uint8_t *packet, uint16_t size);
72c5b64319SMatthias Ringwald static void hfp_run_for_context(hfp_connection_t *context);
73c5b64319SMatthias Ringwald static void hfp_ag_setup_audio_connection(hfp_connection_t * connection);
74c5b64319SMatthias Ringwald static void hfp_ag_hf_start_ringing(hfp_connection_t * context);
75c5b64319SMatthias Ringwald 
76c5b64319SMatthias Ringwald // public prototypes
7735833313SMatthias Ringwald hfp_generic_status_indicator_t * get_hfp_generic_status_indicators(void);
7835833313SMatthias Ringwald int get_hfp_generic_status_indicators_nr(void);
79c5b64319SMatthias Ringwald void set_hfp_generic_status_indicators(hfp_generic_status_indicator_t * indicators, int indicator_nr);
80c5b64319SMatthias Ringwald void set_hfp_ag_indicators(hfp_ag_indicator_t * indicators, int indicator_nr);
81c5b64319SMatthias Ringwald int get_hfp_ag_indicators_nr(hfp_connection_t * context);
82c5b64319SMatthias Ringwald hfp_ag_indicator_t * get_hfp_ag_indicators(hfp_connection_t * context);
83c5b64319SMatthias Ringwald 
84c5b64319SMatthias Ringwald // gobals
853deb3ec6SMatthias Ringwald static const char default_hfp_ag_service_name[] = "Voice gateway";
86aa4dd815SMatthias Ringwald 
873deb3ec6SMatthias Ringwald static uint16_t hfp_supported_features = HFP_DEFAULT_AG_SUPPORTED_FEATURES;
88aa4dd815SMatthias Ringwald 
893deb3ec6SMatthias Ringwald static uint8_t hfp_codecs_nr = 0;
903deb3ec6SMatthias Ringwald static uint8_t hfp_codecs[HFP_MAX_NUM_CODECS];
913deb3ec6SMatthias Ringwald 
923deb3ec6SMatthias Ringwald static int  hfp_ag_indicators_nr = 0;
933deb3ec6SMatthias Ringwald static hfp_ag_indicator_t hfp_ag_indicators[HFP_MAX_NUM_AG_INDICATORS];
943deb3ec6SMatthias Ringwald 
95a0ffb263SMatthias Ringwald static int hfp_generic_status_indicators_nr = 0;
96a0ffb263SMatthias Ringwald static hfp_generic_status_indicator_t hfp_generic_status_indicators[HFP_MAX_NUM_HF_INDICATORS];
97a0ffb263SMatthias Ringwald 
983deb3ec6SMatthias Ringwald static int  hfp_ag_call_hold_services_nr = 0;
993deb3ec6SMatthias Ringwald static char *hfp_ag_call_hold_services[6];
10013839019SMatthias Ringwald static btstack_packet_handler_t hfp_callback;
1013deb3ec6SMatthias Ringwald 
102ce263fc8SMatthias Ringwald static hfp_response_and_hold_state_t hfp_ag_response_and_hold_state;
103ce263fc8SMatthias Ringwald static int hfp_ag_response_and_hold_active = 0;
104aa4dd815SMatthias Ringwald 
105ce263fc8SMatthias Ringwald // Subcriber information entries
106ce263fc8SMatthias Ringwald static hfp_phone_number_t * subscriber_numbers = NULL;
107ce263fc8SMatthias Ringwald static int subscriber_numbers_count = 0;
108ce263fc8SMatthias Ringwald 
109c5b64319SMatthias Ringwald static btstack_packet_callback_registration_t hci_event_callback_registration;
11099a10067SMatthias Ringwald static void hfp_run_for_context(hfp_connection_t *hfp_connection);
11199a10067SMatthias Ringwald static void hfp_ag_setup_audio_connection(hfp_connection_t * hfp_connection);
11299a10067SMatthias Ringwald static void hfp_ag_hf_start_ringing(hfp_connection_t * hfp_connection);
11399a10067SMatthias Ringwald hfp_ag_indicator_t * hfp_ag_get_ag_indicators(hfp_connection_t * hfp_connection);
1143deb3ec6SMatthias Ringwald 
1153deb3ec6SMatthias Ringwald 
116a0ffb263SMatthias Ringwald static int hfp_ag_get_ag_indicators_nr(hfp_connection_t * hfp_connection){
117a0ffb263SMatthias Ringwald     if (hfp_connection->ag_indicators_nr != hfp_ag_indicators_nr){
118a0ffb263SMatthias Ringwald         hfp_connection->ag_indicators_nr = hfp_ag_indicators_nr;
119a0ffb263SMatthias Ringwald         memcpy(hfp_connection->ag_indicators, hfp_ag_indicators, hfp_ag_indicators_nr * sizeof(hfp_ag_indicator_t));
1203deb3ec6SMatthias Ringwald     }
121a0ffb263SMatthias Ringwald     return hfp_connection->ag_indicators_nr;
122a0ffb263SMatthias Ringwald }
123a0ffb263SMatthias Ringwald 
124a0ffb263SMatthias Ringwald hfp_ag_indicator_t * hfp_ag_get_ag_indicators(hfp_connection_t * hfp_connection){
125a0ffb263SMatthias Ringwald     // TODO: save only value, and value changed in the hfp_connection?
126a0ffb263SMatthias Ringwald     if (hfp_connection->ag_indicators_nr != hfp_ag_indicators_nr){
127a0ffb263SMatthias Ringwald         hfp_connection->ag_indicators_nr = hfp_ag_indicators_nr;
128a0ffb263SMatthias Ringwald         memcpy(hfp_connection->ag_indicators, hfp_ag_indicators, hfp_ag_indicators_nr * sizeof(hfp_ag_indicator_t));
129a0ffb263SMatthias Ringwald     }
130a0ffb263SMatthias Ringwald     return (hfp_ag_indicator_t *)&(hfp_connection->ag_indicators);
1313deb3ec6SMatthias Ringwald }
1323deb3ec6SMatthias Ringwald 
133aa4dd815SMatthias Ringwald static hfp_ag_indicator_t * get_ag_indicator_for_name(const char * name){
134aa4dd815SMatthias Ringwald     int i;
135aa4dd815SMatthias Ringwald     for (i = 0; i < hfp_ag_indicators_nr; i++){
136aa4dd815SMatthias Ringwald         if (strcmp(hfp_ag_indicators[i].name, name) == 0){
137aa4dd815SMatthias Ringwald             return &hfp_ag_indicators[i];
138aa4dd815SMatthias Ringwald         }
139aa4dd815SMatthias Ringwald     }
140aa4dd815SMatthias Ringwald     return NULL;
141aa4dd815SMatthias Ringwald }
142aa4dd815SMatthias Ringwald 
143aa4dd815SMatthias Ringwald static int get_ag_indicator_index_for_name(const char * name){
144aa4dd815SMatthias Ringwald     int i;
145aa4dd815SMatthias Ringwald     for (i = 0; i < hfp_ag_indicators_nr; i++){
146aa4dd815SMatthias Ringwald         if (strcmp(hfp_ag_indicators[i].name, name) == 0){
147aa4dd815SMatthias Ringwald             return i;
148aa4dd815SMatthias Ringwald         }
149aa4dd815SMatthias Ringwald     }
150aa4dd815SMatthias Ringwald     return -1;
151aa4dd815SMatthias Ringwald }
152aa4dd815SMatthias Ringwald 
1533deb3ec6SMatthias Ringwald 
15413839019SMatthias Ringwald void hfp_ag_register_packet_handler(btstack_packet_handler_t callback){
1553deb3ec6SMatthias Ringwald     if (callback == NULL){
1563deb3ec6SMatthias Ringwald         log_error("hfp_ag_register_packet_handler called with NULL callback");
1573deb3ec6SMatthias Ringwald         return;
1583deb3ec6SMatthias Ringwald     }
1593deb3ec6SMatthias Ringwald     hfp_callback = callback;
160f4000eebSMatthias Ringwald     hfp_set_callback(callback);
1613deb3ec6SMatthias 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 
1854f84bf36SMatthias 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){
1863deb3ec6SMatthias Ringwald     if (!name){
1873deb3ec6SMatthias Ringwald         name = default_hfp_ag_service_name;
1883deb3ec6SMatthias Ringwald     }
1892ef54b27SMatthias Ringwald     hfp_create_sdp_record(service, service_record_handle, SDP_HandsfreeAudioGateway, rfcomm_channel_nr, name);
1903deb3ec6SMatthias Ringwald 
1913deb3ec6SMatthias Ringwald     /*
1923deb3ec6SMatthias Ringwald      * 0x01 – Ability to reject a call
1933deb3ec6SMatthias Ringwald      * 0x00 – No ability to reject a call
1943deb3ec6SMatthias Ringwald      */
195aa4dd815SMatthias Ringwald     de_add_number(service, DE_UINT, DE_SIZE_16, 0x0301);    // Hands-Free Profile - Network
196aa4dd815SMatthias Ringwald     de_add_number(service, DE_UINT, DE_SIZE_8, ability_to_reject_call);
197aa4dd815SMatthias Ringwald 
1984f84bf36SMatthias Ringwald     // Construct SupportedFeatures for SDP bitmap:
1994f84bf36SMatthias Ringwald     //
2004f84bf36SMatthias Ringwald     // "The values of the “SupportedFeatures” bitmap given in Table 5.4 shall be the same as the values
2014f84bf36SMatthias Ringwald     //  of the Bits 0 to 4 of the unsolicited result code +BRSF"
2024f84bf36SMatthias Ringwald     //
2034f84bf36SMatthias Ringwald     uint16_t sdp_features = supported_features &0x1f;
2044f84bf36SMatthias Ringwald     if (supported_features & wide_band_speech){
2054f84bf36SMatthias Ringwald         sdp_features |= 1 << 5; // Wide band speech bit
2064f84bf36SMatthias Ringwald     }
207aa4dd815SMatthias Ringwald     de_add_number(service, DE_UINT, DE_SIZE_16, 0x0311);    // Hands-Free Profile - SupportedFeatures
2084f84bf36SMatthias Ringwald     de_add_number(service, DE_UINT, DE_SIZE_16, sdp_features);
209aa4dd815SMatthias Ringwald }
210aa4dd815SMatthias Ringwald 
211aa4dd815SMatthias Ringwald static int hfp_ag_change_in_band_ring_tone_setting_cmd(uint16_t cid){
212aa4dd815SMatthias Ringwald     char buffer[20];
213aa4dd815SMatthias Ringwald     sprintf(buffer, "\r\n%s:%d\r\n", HFP_CHANGE_IN_BAND_RING_TONE_SETTING, use_in_band_tone());
214aa4dd815SMatthias Ringwald     return send_str_over_rfcomm(cid, buffer);
2153deb3ec6SMatthias Ringwald }
2163deb3ec6SMatthias Ringwald 
2173deb3ec6SMatthias Ringwald static int hfp_ag_exchange_supported_features_cmd(uint16_t cid){
2183deb3ec6SMatthias Ringwald     char buffer[40];
2193deb3ec6SMatthias Ringwald     sprintf(buffer, "\r\n%s:%d\r\n\r\nOK\r\n", HFP_SUPPORTED_FEATURES, hfp_supported_features);
2203deb3ec6SMatthias Ringwald     return send_str_over_rfcomm(cid, buffer);
2213deb3ec6SMatthias Ringwald }
2223deb3ec6SMatthias Ringwald 
2233deb3ec6SMatthias Ringwald static int hfp_ag_ok(uint16_t cid){
2243deb3ec6SMatthias Ringwald     char buffer[10];
2253deb3ec6SMatthias Ringwald     sprintf(buffer, "\r\nOK\r\n");
2263deb3ec6SMatthias Ringwald     return send_str_over_rfcomm(cid, buffer);
2273deb3ec6SMatthias Ringwald }
2283deb3ec6SMatthias Ringwald 
229aa4dd815SMatthias Ringwald static int hfp_ag_ring(uint16_t cid){
230aa4dd815SMatthias Ringwald     return send_str_over_rfcomm(cid, (char *) "\r\nRING\r\n");
231aa4dd815SMatthias Ringwald }
232aa4dd815SMatthias Ringwald 
233aa4dd815SMatthias Ringwald static int hfp_ag_send_clip(uint16_t cid){
234aa4dd815SMatthias Ringwald     char buffer[50];
235d0c20769SMatthias Ringwald     sprintf(buffer, "\r\n%s: \"%s\",%u\r\n", HFP_ENABLE_CLIP, hfp_gsm_clip_number(), hfp_gsm_clip_type());
236aa4dd815SMatthias Ringwald     return send_str_over_rfcomm(cid, buffer);
237aa4dd815SMatthias Ringwald }
238aa4dd815SMatthias Ringwald 
239ce263fc8SMatthias Ringwald static int hfp_send_subscriber_number_cmd(uint16_t cid, uint8_t type, const char * number){
240ce263fc8SMatthias Ringwald     char buffer[50];
241ce263fc8SMatthias Ringwald     sprintf(buffer, "\r\n%s: ,\"%s\",%u, , \r\n", HFP_SUBSCRIBER_NUMBER_INFORMATION, number, type);
242ce263fc8SMatthias Ringwald     return send_str_over_rfcomm(cid, buffer);
243ce263fc8SMatthias Ringwald }
244ce263fc8SMatthias Ringwald 
245c1797c7dSMatthias Ringwald static int hfp_ag_send_phone_number_for_voice_tag_cmd(uint16_t cid){
246aa4dd815SMatthias Ringwald     char buffer[50];
247d0c20769SMatthias Ringwald     sprintf(buffer, "\r\n%s: %s\r\n", HFP_PHONE_NUMBER_FOR_VOICE_TAG, hfp_gsm_clip_number());
248aa4dd815SMatthias Ringwald     return send_str_over_rfcomm(cid, buffer);
249aa4dd815SMatthias Ringwald }
250aa4dd815SMatthias Ringwald 
251aa4dd815SMatthias Ringwald static int hfp_ag_send_call_waiting_notification(uint16_t cid){
252aa4dd815SMatthias Ringwald     char buffer[50];
253a0ffb263SMatthias Ringwald     sprintf(buffer, "\r\n%s: \"%s\",%u\r\n", HFP_ENABLE_CALL_WAITING_NOTIFICATION, hfp_gsm_clip_number(), hfp_gsm_clip_type());
254aa4dd815SMatthias Ringwald     return send_str_over_rfcomm(cid, buffer);
255aa4dd815SMatthias Ringwald }
256aa4dd815SMatthias Ringwald 
2573deb3ec6SMatthias Ringwald static int hfp_ag_error(uint16_t cid){
2583deb3ec6SMatthias Ringwald     char buffer[10];
2593deb3ec6SMatthias Ringwald     sprintf(buffer, "\r\nERROR\r\n");
2603deb3ec6SMatthias Ringwald     return send_str_over_rfcomm(cid, buffer);
2613deb3ec6SMatthias Ringwald }
2623deb3ec6SMatthias Ringwald 
2633deb3ec6SMatthias Ringwald static int hfp_ag_report_extended_audio_gateway_error(uint16_t cid, uint8_t error){
2643deb3ec6SMatthias Ringwald     char buffer[20];
2653deb3ec6SMatthias Ringwald     sprintf(buffer, "\r\n%s=%d\r\n", HFP_EXTENDED_AUDIO_GATEWAY_ERROR, error);
2663deb3ec6SMatthias Ringwald     return send_str_over_rfcomm(cid, buffer);
2673deb3ec6SMatthias Ringwald }
2683deb3ec6SMatthias Ringwald 
269ad902e3dSMatthias Ringwald // fast & small implementation for fixed int size
270ad902e3dSMatthias Ringwald static int string_len_for_uint32(uint32_t i){
271ad902e3dSMatthias Ringwald     if (i <         10) return 1;
272ad902e3dSMatthias Ringwald     if (i <        100) return 2;
273ad902e3dSMatthias Ringwald     if (i <       1000) return 3;
274ad902e3dSMatthias Ringwald     if (i <      10000) return 4;
27574386ee0SMatthias Ringwald     if (i <     100000) return 5;
276ad902e3dSMatthias Ringwald     if (i <    1000000) return 6;
277ad902e3dSMatthias Ringwald     if (i <   10000000) return 7;
278ad902e3dSMatthias Ringwald     if (i <  100000000) return 8;
279ad902e3dSMatthias Ringwald     if (i < 1000000000) return 9;
280ad902e3dSMatthias Ringwald     return 10;
281ad902e3dSMatthias Ringwald }
282ad902e3dSMatthias Ringwald 
283ad902e3dSMatthias Ringwald // get size for indicator string
284a0ffb263SMatthias Ringwald static int hfp_ag_indicators_string_size(hfp_connection_t * hfp_connection, int i){
285ad902e3dSMatthias Ringwald     // template: ("$NAME",($MIN,$MAX))
28645718b6fSMatthias Ringwald     return 8 + (int) strlen(hfp_ag_get_ag_indicators(hfp_connection)[i].name)
287a0ffb263SMatthias Ringwald          + string_len_for_uint32(hfp_ag_get_ag_indicators(hfp_connection)[i].min_range)
288a0ffb263SMatthias Ringwald          + string_len_for_uint32(hfp_ag_get_ag_indicators(hfp_connection)[i].min_range);
289ad902e3dSMatthias Ringwald }
290ad902e3dSMatthias Ringwald 
291ad902e3dSMatthias Ringwald // store indicator
292a0ffb263SMatthias Ringwald static void hfp_ag_indicators_string_store(hfp_connection_t * hfp_connection, int i, uint8_t * buffer){
293ad902e3dSMatthias Ringwald     sprintf((char *) buffer, "(\"%s\",(%d,%d)),",
294a0ffb263SMatthias Ringwald             hfp_ag_get_ag_indicators(hfp_connection)[i].name,
295a0ffb263SMatthias Ringwald             hfp_ag_get_ag_indicators(hfp_connection)[i].min_range,
296a0ffb263SMatthias Ringwald             hfp_ag_get_ag_indicators(hfp_connection)[i].max_range);
2973deb3ec6SMatthias Ringwald }
298ad902e3dSMatthias Ringwald 
299ad902e3dSMatthias Ringwald // structure: header [indicator [comma indicator]] footer
300a0ffb263SMatthias Ringwald static int hfp_ag_indicators_cmd_generator_num_segments(hfp_connection_t * hfp_connection){
301a0ffb263SMatthias Ringwald     int num_indicators = hfp_ag_get_ag_indicators_nr(hfp_connection);
302ad902e3dSMatthias Ringwald     if (!num_indicators) return 2;
303ad902e3dSMatthias Ringwald     return 3 + (num_indicators-1) * 2;
3043deb3ec6SMatthias Ringwald }
305ad902e3dSMatthias Ringwald 
306ad902e3dSMatthias Ringwald // get size of individual segment for hfp_ag_retrieve_indicators_cmd
307a0ffb263SMatthias Ringwald static int hfp_ag_indicators_cmd_generator_get_segment_len(hfp_connection_t * hfp_connection, int index){
308ad902e3dSMatthias Ringwald     if (index == 0) {
309ad902e3dSMatthias Ringwald         return strlen(HFP_INDICATOR) + 3;   // "\n\r%s:""
310ad902e3dSMatthias Ringwald     }
311ad902e3dSMatthias Ringwald     index--;
312a0ffb263SMatthias Ringwald     int num_indicators = hfp_ag_get_ag_indicators_nr(hfp_connection);
313ad902e3dSMatthias Ringwald     int indicator_index = index >> 1;
314ad902e3dSMatthias Ringwald     if ((index & 1) == 0){
315a0ffb263SMatthias Ringwald         return hfp_ag_indicators_string_size(hfp_connection, indicator_index);
316ad902e3dSMatthias Ringwald     }
317ad902e3dSMatthias Ringwald     if (indicator_index == num_indicators - 1){
318ad902e3dSMatthias Ringwald         return 8; // "\r\n\r\nOK\r\n"
319ad902e3dSMatthias Ringwald     }
320ad902e3dSMatthias Ringwald     return 1; // comma
321ad902e3dSMatthias Ringwald }
322ad902e3dSMatthias Ringwald 
323a0ffb263SMatthias Ringwald static void hgp_ag_indicators_cmd_generator_store_segment(hfp_connection_t * hfp_connection, int index, uint8_t * buffer){
324ad902e3dSMatthias Ringwald     if (index == 0){
325ad902e3dSMatthias Ringwald         *buffer++ = '\r';
32674386ee0SMatthias Ringwald         *buffer++ = '\n';
327ad902e3dSMatthias Ringwald         int len = strlen(HFP_INDICATOR);
328ad902e3dSMatthias Ringwald         memcpy(buffer, HFP_INDICATOR, len);
329ad902e3dSMatthias Ringwald         buffer += len;
330ad902e3dSMatthias Ringwald         *buffer++ = ':';
331ad902e3dSMatthias Ringwald         return;
332ad902e3dSMatthias Ringwald     }
333ad902e3dSMatthias Ringwald     index--;
334a0ffb263SMatthias Ringwald     int num_indicators = hfp_ag_get_ag_indicators_nr(hfp_connection);
335ad902e3dSMatthias Ringwald     int indicator_index = index >> 1;
336ad902e3dSMatthias Ringwald     if ((index & 1) == 0){
337a0ffb263SMatthias Ringwald         hfp_ag_indicators_string_store(hfp_connection, indicator_index, buffer);
338ad902e3dSMatthias Ringwald         return;
339ad902e3dSMatthias Ringwald     }
340ad902e3dSMatthias Ringwald     if (indicator_index == num_indicators-1){
341ad902e3dSMatthias Ringwald         memcpy(buffer, "\r\n\r\nOK\r\n", 8);
342ad902e3dSMatthias Ringwald         return;
343ad902e3dSMatthias Ringwald     }
344ad902e3dSMatthias Ringwald     *buffer = ',';
3453deb3ec6SMatthias Ringwald }
3463deb3ec6SMatthias Ringwald 
3473deb3ec6SMatthias Ringwald static int hfp_hf_indicators_join(char * buffer, int buffer_size){
3483deb3ec6SMatthias Ringwald     if (buffer_size < hfp_ag_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-1; i++) {
352a0ffb263SMatthias Ringwald         offset += snprintf(buffer+offset, buffer_size-offset, "%d,", hfp_generic_status_indicators[i].uuid);
3533deb3ec6SMatthias Ringwald     }
354a0ffb263SMatthias Ringwald     if (i < hfp_generic_status_indicators_nr){
355a0ffb263SMatthias Ringwald         offset += snprintf(buffer+offset, buffer_size-offset, "%d,", hfp_generic_status_indicators[i].uuid);
3563deb3ec6SMatthias Ringwald     }
3573deb3ec6SMatthias Ringwald     return offset;
3583deb3ec6SMatthias Ringwald }
3593deb3ec6SMatthias Ringwald 
3603deb3ec6SMatthias Ringwald static int hfp_hf_indicators_initial_status_join(char * buffer, int buffer_size){
361a0ffb263SMatthias Ringwald     if (buffer_size < hfp_generic_status_indicators_nr * 3) return 0;
3623deb3ec6SMatthias Ringwald     int i;
3633deb3ec6SMatthias Ringwald     int offset = 0;
364a0ffb263SMatthias Ringwald     for (i = 0; i < hfp_generic_status_indicators_nr; i++) {
365a0ffb263SMatthias 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);
3663deb3ec6SMatthias Ringwald     }
3673deb3ec6SMatthias Ringwald     return offset;
3683deb3ec6SMatthias Ringwald }
3693deb3ec6SMatthias Ringwald 
3703deb3ec6SMatthias Ringwald static int hfp_ag_indicators_status_join(char * buffer, int buffer_size){
3713deb3ec6SMatthias Ringwald     if (buffer_size < hfp_ag_indicators_nr * 3) return 0;
3723deb3ec6SMatthias Ringwald     int i;
3733deb3ec6SMatthias Ringwald     int offset = 0;
3743deb3ec6SMatthias Ringwald     for (i = 0; i < hfp_ag_indicators_nr-1; i++) {
3753deb3ec6SMatthias Ringwald         offset += snprintf(buffer+offset, buffer_size-offset, "%d,", hfp_ag_indicators[i].status);
3763deb3ec6SMatthias Ringwald     }
3773deb3ec6SMatthias Ringwald     if (i<hfp_ag_indicators_nr){
3783deb3ec6SMatthias Ringwald         offset += snprintf(buffer+offset, buffer_size-offset, "%d", hfp_ag_indicators[i].status);
3793deb3ec6SMatthias Ringwald     }
3803deb3ec6SMatthias Ringwald     return offset;
3813deb3ec6SMatthias Ringwald }
3823deb3ec6SMatthias Ringwald 
3833deb3ec6SMatthias Ringwald static int hfp_ag_call_services_join(char * buffer, int buffer_size){
3843deb3ec6SMatthias Ringwald     if (buffer_size < hfp_ag_call_hold_services_nr * 3) return 0;
3853deb3ec6SMatthias Ringwald     int i;
3863deb3ec6SMatthias Ringwald     int offset = snprintf(buffer, buffer_size, "(");
3873deb3ec6SMatthias Ringwald     for (i = 0; i < hfp_ag_call_hold_services_nr-1; i++) {
3883deb3ec6SMatthias Ringwald         offset += snprintf(buffer+offset, buffer_size-offset, "%s,", hfp_ag_call_hold_services[i]);
3893deb3ec6SMatthias Ringwald     }
3903deb3ec6SMatthias Ringwald     if (i<hfp_ag_call_hold_services_nr){
3913deb3ec6SMatthias Ringwald         offset += snprintf(buffer+offset, buffer_size-offset, "%s)", hfp_ag_call_hold_services[i]);
3923deb3ec6SMatthias Ringwald     }
3933deb3ec6SMatthias Ringwald     return offset;
3943deb3ec6SMatthias Ringwald }
3953deb3ec6SMatthias Ringwald 
396a0ffb263SMatthias Ringwald static int hfp_ag_cmd_via_generator(uint16_t cid, hfp_connection_t * hfp_connection,
397ad902e3dSMatthias Ringwald     int start_segment, int num_segments,
398a0ffb263SMatthias Ringwald     int (*get_segment_len)(hfp_connection_t * hfp_connection, int segment),
399a0ffb263SMatthias Ringwald     void (*store_segment) (hfp_connection_t * hfp_connection, int segment, uint8_t * buffer)){
4003deb3ec6SMatthias Ringwald 
401ad902e3dSMatthias Ringwald     // assumes: can send now == true
402ad902e3dSMatthias Ringwald     // assumes: num segments > 0
403aba39421SMatthias Ringwald     // assumes: individual segments are smaller than MTU
404ad902e3dSMatthias Ringwald     rfcomm_reserve_packet_buffer();
405ad902e3dSMatthias Ringwald     int mtu = rfcomm_get_max_frame_size(cid);
406ad902e3dSMatthias Ringwald     uint8_t * data = rfcomm_get_outgoing_buffer();
407ad902e3dSMatthias Ringwald     int offset = 0;
408ad902e3dSMatthias Ringwald     int segment = start_segment;
409ad902e3dSMatthias Ringwald     while (segment < num_segments){
410a0ffb263SMatthias Ringwald         int segment_len = get_segment_len(hfp_connection, segment);
411aba39421SMatthias Ringwald         if (offset + segment_len > mtu) break;
412aba39421SMatthias Ringwald         // append segement
413a0ffb263SMatthias Ringwald         store_segment(hfp_connection, segment, data+offset);
414ad902e3dSMatthias Ringwald         offset += segment_len;
415ad902e3dSMatthias Ringwald         segment++;
416ad902e3dSMatthias Ringwald     }
417ad902e3dSMatthias Ringwald     rfcomm_send_prepared(cid, offset);
418ad902e3dSMatthias Ringwald     return segment;
419ad902e3dSMatthias Ringwald }
4203deb3ec6SMatthias Ringwald 
421ad902e3dSMatthias Ringwald // returns next segment to store
422a0ffb263SMatthias Ringwald static int hfp_ag_retrieve_indicators_cmd_via_generator(uint16_t cid, hfp_connection_t * hfp_connection, int start_segment){
423a0ffb263SMatthias Ringwald     int num_segments = hfp_ag_indicators_cmd_generator_num_segments(hfp_connection);
424a0ffb263SMatthias Ringwald     return hfp_ag_cmd_via_generator(cid, hfp_connection, start_segment, num_segments,
425ad902e3dSMatthias Ringwald         hfp_ag_indicators_cmd_generator_get_segment_len, hgp_ag_indicators_cmd_generator_store_segment);
4263deb3ec6SMatthias Ringwald }
4273deb3ec6SMatthias Ringwald 
4283deb3ec6SMatthias Ringwald static int hfp_ag_retrieve_indicators_status_cmd(uint16_t cid){
4293deb3ec6SMatthias Ringwald     char buffer[40];
4303deb3ec6SMatthias Ringwald     int offset = snprintf(buffer, sizeof(buffer), "\r\n%s:", HFP_INDICATOR);
4313deb3ec6SMatthias Ringwald     offset += hfp_ag_indicators_status_join(buffer+offset, sizeof(buffer)-offset);
4323deb3ec6SMatthias Ringwald 
4333deb3ec6SMatthias Ringwald     buffer[offset] = 0;
4343deb3ec6SMatthias Ringwald 
4353deb3ec6SMatthias Ringwald     offset += snprintf(buffer+offset, sizeof(buffer)-offset, "\r\n\r\nOK\r\n");
4363deb3ec6SMatthias Ringwald     buffer[offset] = 0;
4373deb3ec6SMatthias Ringwald     return send_str_over_rfcomm(cid, buffer);
4383deb3ec6SMatthias Ringwald }
4393deb3ec6SMatthias Ringwald 
4403deb3ec6SMatthias Ringwald static int hfp_ag_set_indicator_status_update_cmd(uint16_t cid, uint8_t activate){
4419ec2630cSMatthias Ringwald     UNUSED(activate);
4429ec2630cSMatthias Ringwald 
4433deb3ec6SMatthias Ringwald     // AT\r\n%s:3,0,0,%d\r\n
4443deb3ec6SMatthias Ringwald     return hfp_ag_ok(cid);
4453deb3ec6SMatthias Ringwald }
4463deb3ec6SMatthias Ringwald 
4473deb3ec6SMatthias Ringwald 
4483deb3ec6SMatthias Ringwald static int hfp_ag_retrieve_can_hold_call_cmd(uint16_t cid){
449ad902e3dSMatthias Ringwald     char buffer[40];
4503deb3ec6SMatthias Ringwald     int offset = snprintf(buffer, sizeof(buffer), "\r\n%s:", HFP_SUPPORT_CALL_HOLD_AND_MULTIPARTY_SERVICES);
4513deb3ec6SMatthias Ringwald     offset += hfp_ag_call_services_join(buffer+offset, sizeof(buffer)-offset);
4523deb3ec6SMatthias Ringwald 
4533deb3ec6SMatthias Ringwald     buffer[offset] = 0;
4543deb3ec6SMatthias Ringwald 
4553deb3ec6SMatthias Ringwald     offset += snprintf(buffer+offset, sizeof(buffer)-offset, "\r\n\r\nOK\r\n");
4563deb3ec6SMatthias Ringwald     buffer[offset] = 0;
4573deb3ec6SMatthias Ringwald     return send_str_over_rfcomm(cid, buffer);
4583deb3ec6SMatthias Ringwald }
4593deb3ec6SMatthias Ringwald 
4603deb3ec6SMatthias Ringwald 
4613deb3ec6SMatthias Ringwald static int hfp_ag_list_supported_generic_status_indicators_cmd(uint16_t cid){
4623deb3ec6SMatthias Ringwald     return hfp_ag_ok(cid);
4633deb3ec6SMatthias Ringwald }
4643deb3ec6SMatthias Ringwald 
4653deb3ec6SMatthias Ringwald static int hfp_ag_retrieve_supported_generic_status_indicators_cmd(uint16_t cid){
4663deb3ec6SMatthias Ringwald     char buffer[40];
467aa4dd815SMatthias Ringwald     int offset = snprintf(buffer, sizeof(buffer), "\r\n%s:(", HFP_GENERIC_STATUS_INDICATOR);
4683deb3ec6SMatthias Ringwald     offset += hfp_hf_indicators_join(buffer+offset, sizeof(buffer)-offset);
4693deb3ec6SMatthias Ringwald 
4703deb3ec6SMatthias Ringwald     buffer[offset] = 0;
4713deb3ec6SMatthias Ringwald 
472aa4dd815SMatthias Ringwald     offset += snprintf(buffer+offset, sizeof(buffer)-offset, ")\r\n\r\nOK\r\n");
4733deb3ec6SMatthias Ringwald     buffer[offset] = 0;
4743deb3ec6SMatthias Ringwald     return send_str_over_rfcomm(cid, buffer);
4753deb3ec6SMatthias Ringwald }
4763deb3ec6SMatthias Ringwald 
4773deb3ec6SMatthias Ringwald static int hfp_ag_retrieve_initital_supported_generic_status_indicators_cmd(uint16_t cid){
4783deb3ec6SMatthias Ringwald     char buffer[40];
4793deb3ec6SMatthias Ringwald     int offset = hfp_hf_indicators_initial_status_join(buffer, sizeof(buffer));
4803deb3ec6SMatthias Ringwald 
4813deb3ec6SMatthias Ringwald     buffer[offset] = 0;
4823deb3ec6SMatthias Ringwald     offset += snprintf(buffer+offset, sizeof(buffer)-offset, "\r\nOK\r\n");
4833deb3ec6SMatthias Ringwald     buffer[offset] = 0;
4843deb3ec6SMatthias Ringwald     return send_str_over_rfcomm(cid, buffer);
4853deb3ec6SMatthias Ringwald }
4863deb3ec6SMatthias Ringwald 
487aa4dd815SMatthias Ringwald static int hfp_ag_transfer_ag_indicators_status_cmd(uint16_t cid, hfp_ag_indicator_t * indicator){
4883deb3ec6SMatthias Ringwald     char buffer[20];
489aa4dd815SMatthias Ringwald     sprintf(buffer, "\r\n%s:%d,%d\r\n", HFP_TRANSFER_AG_INDICATOR_STATUS, indicator->index, indicator->status);
4903deb3ec6SMatthias Ringwald     return send_str_over_rfcomm(cid, buffer);
4913deb3ec6SMatthias Ringwald }
4923deb3ec6SMatthias Ringwald 
4933deb3ec6SMatthias Ringwald static int hfp_ag_report_network_operator_name_cmd(uint16_t cid, hfp_network_opearator_t op){
4943deb3ec6SMatthias Ringwald     char buffer[40];
4953deb3ec6SMatthias Ringwald     if (strlen(op.name) == 0){
4963deb3ec6SMatthias Ringwald         sprintf(buffer, "\r\n%s:%d,,\r\n\r\nOK\r\n", HFP_QUERY_OPERATOR_SELECTION, op.mode);
4973deb3ec6SMatthias Ringwald     } else {
4983deb3ec6SMatthias Ringwald         sprintf(buffer, "\r\n%s:%d,%d,%s\r\n\r\nOK\r\n", HFP_QUERY_OPERATOR_SELECTION, op.mode, op.format, op.name);
4993deb3ec6SMatthias Ringwald     }
5003deb3ec6SMatthias Ringwald     return send_str_over_rfcomm(cid, buffer);
5013deb3ec6SMatthias Ringwald }
5023deb3ec6SMatthias Ringwald 
5033deb3ec6SMatthias Ringwald 
5043deb3ec6SMatthias Ringwald static int hfp_ag_cmd_suggest_codec(uint16_t cid, uint8_t codec){
5053deb3ec6SMatthias Ringwald     char buffer[30];
5063deb3ec6SMatthias Ringwald     sprintf(buffer, "\r\n%s:%d\r\n", HFP_CONFIRM_COMMON_CODEC, codec);
5073deb3ec6SMatthias Ringwald     return send_str_over_rfcomm(cid, buffer);
5083deb3ec6SMatthias Ringwald }
5093deb3ec6SMatthias Ringwald 
510aa4dd815SMatthias Ringwald static int hfp_ag_activate_voice_recognition_cmd(uint16_t cid, uint8_t activate_voice_recognition){
511aa4dd815SMatthias Ringwald     char buffer[30];
512aa4dd815SMatthias Ringwald     sprintf(buffer, "\r\n%s: %d\r\n", HFP_ACTIVATE_VOICE_RECOGNITION, activate_voice_recognition);
513aa4dd815SMatthias Ringwald     return send_str_over_rfcomm(cid, buffer);
514aa4dd815SMatthias Ringwald }
515aa4dd815SMatthias Ringwald 
516aa4dd815SMatthias Ringwald static int hfp_ag_set_speaker_gain_cmd(uint16_t cid, uint8_t gain){
517aa4dd815SMatthias Ringwald     char buffer[30];
518aa4dd815SMatthias Ringwald     sprintf(buffer, "\r\n%s:%d\r\n", HFP_SET_SPEAKER_GAIN, gain);
519aa4dd815SMatthias Ringwald     return send_str_over_rfcomm(cid, buffer);
520aa4dd815SMatthias Ringwald }
521aa4dd815SMatthias Ringwald 
522aa4dd815SMatthias Ringwald static int hfp_ag_set_microphone_gain_cmd(uint16_t cid, uint8_t gain){
523aa4dd815SMatthias Ringwald     char buffer[30];
524aa4dd815SMatthias Ringwald     sprintf(buffer, "\r\n%s:%d\r\n", HFP_SET_MICROPHONE_GAIN, gain);
525aa4dd815SMatthias Ringwald     return send_str_over_rfcomm(cid, buffer);
526aa4dd815SMatthias Ringwald }
527aa4dd815SMatthias Ringwald 
528ce263fc8SMatthias Ringwald static int hfp_ag_set_response_and_hold(uint16_t cid, int state){
529ce263fc8SMatthias Ringwald     char buffer[30];
530ce263fc8SMatthias Ringwald     sprintf(buffer, "\r\n%s: %d\r\n", HFP_RESPONSE_AND_HOLD, state);
531ce263fc8SMatthias Ringwald     return send_str_over_rfcomm(cid, buffer);
532ce263fc8SMatthias Ringwald }
533ce263fc8SMatthias Ringwald 
534a0ffb263SMatthias Ringwald static uint8_t hfp_ag_suggest_codec(hfp_connection_t *hfp_connection){
535bc1b1537SMilanka Ringwald     if (hfp_connection->sco_for_msbc_failed) return HFP_CODEC_CVSD;
536bc1b1537SMilanka Ringwald 
5376a7f44bdSMilanka Ringwald     if (hfp_supports_codec(HFP_CODEC_MSBC, hfp_codecs_nr, hfp_codecs)){
5386a7f44bdSMilanka Ringwald         if (hfp_supports_codec(HFP_CODEC_MSBC, hfp_connection->remote_codecs_nr, hfp_connection->remote_codecs)){
539df327ff3SMilanka Ringwald             return HFP_CODEC_MSBC;
5403deb3ec6SMatthias Ringwald         }
5413deb3ec6SMatthias Ringwald     }
542df327ff3SMilanka Ringwald     return HFP_CODEC_CVSD;
5433deb3ec6SMatthias Ringwald }
5443deb3ec6SMatthias Ringwald 
5457522e673SMatthias Ringwald static void hfp_init_link_settings(hfp_connection_t * hfp_connection){
5467522e673SMatthias Ringwald     // determine highest possible link setting
5477522e673SMatthias Ringwald     hfp_connection->link_setting = HFP_LINK_SETTINGS_D1;
548d9f77559SMatthias Ringwald     // anything else requires eSCO support on both sides
549d9f77559SMatthias Ringwald     if (hci_extended_sco_link_supported() && hci_remote_esco_supported(hfp_connection->acl_handle)){
5507522e673SMatthias Ringwald         switch (hfp_connection->negotiated_codec){
5517522e673SMatthias Ringwald             case HFP_CODEC_CVSD:
5527522e673SMatthias Ringwald                 hfp_connection->link_setting = HFP_LINK_SETTINGS_S3;
5537522e673SMatthias Ringwald                 if ((hfp_connection->remote_supported_features & (1<<HFP_HFSF_ESCO_S4))
5547522e673SMatthias Ringwald                 &&  (hfp_supported_features                    & (1<<HFP_AGSF_ESCO_S4))){
5557522e673SMatthias Ringwald                     hfp_connection->link_setting = HFP_LINK_SETTINGS_S4;
5567522e673SMatthias Ringwald                 }
5577522e673SMatthias Ringwald                 break;
5587522e673SMatthias Ringwald             case HFP_CODEC_MSBC:
5597522e673SMatthias Ringwald                 hfp_connection->link_setting = HFP_LINK_SETTINGS_T2;
5607522e673SMatthias Ringwald                 break;
561d9f77559SMatthias Ringwald             default:
562d9f77559SMatthias Ringwald                 break;
563d9f77559SMatthias Ringwald         }
5647522e673SMatthias Ringwald     }
5657522e673SMatthias Ringwald     log_info("hfp_init_link_settings: %u", hfp_connection->link_setting);
5667522e673SMatthias Ringwald }
5677522e673SMatthias Ringwald 
568a0ffb263SMatthias Ringwald static int codecs_exchange_state_machine(hfp_connection_t * hfp_connection){
569aa4dd815SMatthias Ringwald     /* events ( == commands):
570aa4dd815SMatthias Ringwald         HFP_CMD_AVAILABLE_CODECS == received AT+BAC with list of codecs
571aa4dd815SMatthias Ringwald         HFP_CMD_TRIGGER_CODEC_CONNECTION_SETUP:
572aa4dd815SMatthias Ringwald             hf_trigger_codec_connection_setup == received BCC
573aa4dd815SMatthias Ringwald             ag_trigger_codec_connection_setup == received from AG to send BCS
574aa4dd815SMatthias Ringwald         HFP_CMD_HF_CONFIRMED_CODEC == received AT+BCS
575aa4dd815SMatthias Ringwald     */
576aa4dd815SMatthias Ringwald 
577a0ffb263SMatthias Ringwald      switch (hfp_connection->codecs_state){
578aa4dd815SMatthias Ringwald         case HFP_CODECS_RECEIVED_TRIGGER_CODEC_EXCHANGE:
579a0ffb263SMatthias Ringwald             hfp_connection->command = HFP_CMD_AG_SEND_COMMON_CODEC;
580aa4dd815SMatthias Ringwald             break;
581aa4dd815SMatthias Ringwald         case HFP_CODECS_AG_RESEND_COMMON_CODEC:
582a0ffb263SMatthias Ringwald             hfp_connection->command = HFP_CMD_AG_SEND_COMMON_CODEC;
583aa4dd815SMatthias Ringwald             break;
584aa4dd815SMatthias Ringwald         default:
585aa4dd815SMatthias Ringwald             break;
586aa4dd815SMatthias Ringwald     }
587aa4dd815SMatthias Ringwald 
588aa4dd815SMatthias Ringwald     // printf(" -> State machine: CC\n");
589aa4dd815SMatthias Ringwald 
590a0ffb263SMatthias Ringwald     switch (hfp_connection->command){
591aa4dd815SMatthias Ringwald         case HFP_CMD_AVAILABLE_CODECS:
592a0ffb263SMatthias Ringwald             if (hfp_connection->state < HFP_SERVICE_LEVEL_CONNECTION_ESTABLISHED){
593a0ffb263SMatthias Ringwald                 hfp_connection->codecs_state = HFP_CODECS_RECEIVED_LIST;
594a0ffb263SMatthias Ringwald                 hfp_ag_ok(hfp_connection->rfcomm_cid);
595aa4dd815SMatthias Ringwald                 return 1;
596aa4dd815SMatthias Ringwald             }
597aa4dd815SMatthias Ringwald 
598a0ffb263SMatthias Ringwald             switch (hfp_connection->codecs_state){
599aa4dd815SMatthias Ringwald                 case HFP_CODECS_AG_SENT_COMMON_CODEC:
600aa4dd815SMatthias Ringwald                 case HFP_CODECS_EXCHANGED:
601a0ffb263SMatthias Ringwald                     hfp_connection->codecs_state = HFP_CODECS_AG_RESEND_COMMON_CODEC;
602aa4dd815SMatthias Ringwald                     break;
603aa4dd815SMatthias Ringwald                 default:
604aa4dd815SMatthias Ringwald                     break;
605aa4dd815SMatthias Ringwald             }
606a0ffb263SMatthias Ringwald             hfp_ag_ok(hfp_connection->rfcomm_cid);
607aa4dd815SMatthias Ringwald             return 1;
608aa4dd815SMatthias Ringwald 
609aa4dd815SMatthias Ringwald         case HFP_CMD_TRIGGER_CODEC_CONNECTION_SETUP:
610a0ffb263SMatthias Ringwald             hfp_connection->codecs_state = HFP_CODECS_RECEIVED_TRIGGER_CODEC_EXCHANGE;
611a0ffb263SMatthias Ringwald             hfp_ag_ok(hfp_connection->rfcomm_cid);
612aa4dd815SMatthias Ringwald             return 1;
613aa4dd815SMatthias Ringwald 
614aa4dd815SMatthias Ringwald         case HFP_CMD_AG_SEND_COMMON_CODEC:
615a0ffb263SMatthias Ringwald             hfp_connection->codecs_state = HFP_CODECS_AG_SENT_COMMON_CODEC;
616a0ffb263SMatthias Ringwald             hfp_connection->suggested_codec = hfp_ag_suggest_codec(hfp_connection);
617a0ffb263SMatthias Ringwald             hfp_ag_cmd_suggest_codec(hfp_connection->rfcomm_cid, hfp_connection->suggested_codec);
618aa4dd815SMatthias Ringwald             return 1;
619aa4dd815SMatthias Ringwald 
620aa4dd815SMatthias Ringwald         case HFP_CMD_HF_CONFIRMED_CODEC:
621a0ffb263SMatthias Ringwald             if (hfp_connection->codec_confirmed != hfp_connection->suggested_codec){
622a0ffb263SMatthias Ringwald                 hfp_connection->codecs_state = HFP_CODECS_ERROR;
623a0ffb263SMatthias Ringwald                 hfp_ag_error(hfp_connection->rfcomm_cid);
624aa4dd815SMatthias Ringwald                 return 1;
625aa4dd815SMatthias Ringwald             }
626a0ffb263SMatthias Ringwald             hfp_connection->negotiated_codec = hfp_connection->codec_confirmed;
627a0ffb263SMatthias Ringwald             hfp_connection->codecs_state = HFP_CODECS_EXCHANGED;
62803645b44SMatthias Ringwald             log_info("hfp: codec confirmed: %s", hfp_connection->negotiated_codec == HFP_CODEC_MSBC ? "mSBC" : "CVSD");
629a0ffb263SMatthias Ringwald             hfp_ag_ok(hfp_connection->rfcomm_cid);
6307522e673SMatthias Ringwald             // now, pick link settings
6317522e673SMatthias Ringwald             hfp_init_link_settings(hfp_connection);
632aa4dd815SMatthias Ringwald             return 1;
633aa4dd815SMatthias Ringwald         default:
634aa4dd815SMatthias Ringwald             break;
635aa4dd815SMatthias Ringwald     }
636aa4dd815SMatthias Ringwald     return 0;
637aa4dd815SMatthias Ringwald }
638aa4dd815SMatthias Ringwald 
639a0ffb263SMatthias Ringwald static void hfp_ag_slc_established(hfp_connection_t * hfp_connection){
640a0ffb263SMatthias Ringwald     hfp_connection->state = HFP_SERVICE_LEVEL_CONNECTION_ESTABLISHED;
641d0c4aea6SMilanka Ringwald     hfp_emit_slc_connection_event(hfp_callback, 0, hfp_connection->acl_handle, hfp_connection->remote_addr);
642aa4dd815SMatthias Ringwald 
643a0ffb263SMatthias Ringwald     // if active call exist, set per-hfp_connection state active, too (when audio is on)
644d0c20769SMatthias Ringwald     if (hfp_gsm_call_status() == HFP_CALL_STATUS_ACTIVE_OR_HELD_CALL_IS_PRESENT){
645a0ffb263SMatthias Ringwald         hfp_connection->call_state = HFP_CALL_W4_AUDIO_CONNECTION_FOR_ACTIVE;
646aa4dd815SMatthias Ringwald     }
647ce263fc8SMatthias Ringwald     // if AG is ringing, also start ringing on the HF
648d0c20769SMatthias Ringwald     if (hfp_gsm_call_status() == HFP_CALL_STATUS_NO_HELD_OR_ACTIVE_CALLS &&
649d0c20769SMatthias Ringwald         hfp_gsm_callsetup_status() == HFP_CALLSETUP_STATUS_INCOMING_CALL_SETUP_IN_PROGRESS){
650a0ffb263SMatthias Ringwald         hfp_ag_hf_start_ringing(hfp_connection);
651ce263fc8SMatthias Ringwald     }
652aa4dd815SMatthias Ringwald }
6533deb3ec6SMatthias Ringwald 
654a0ffb263SMatthias Ringwald static int hfp_ag_run_for_context_service_level_connection(hfp_connection_t * hfp_connection){
655c79b4cabSMatthias Ringwald     // log_info("hfp_ag_run_for_context_service_level_connection state %u, command %u", hfp_connection->state, hfp_connection->command);
656a0ffb263SMatthias Ringwald     if (hfp_connection->state >= HFP_SERVICE_LEVEL_CONNECTION_ESTABLISHED) return 0;
6573deb3ec6SMatthias Ringwald     int done = 0;
658a0ffb263SMatthias Ringwald     switch(hfp_connection->command){
6593deb3ec6SMatthias Ringwald         case HFP_CMD_SUPPORTED_FEATURES:
660a0ffb263SMatthias Ringwald             switch(hfp_connection->state){
6613deb3ec6SMatthias Ringwald                 case HFP_W4_EXCHANGE_SUPPORTED_FEATURES:
662aa4dd815SMatthias Ringwald                 case HFP_EXCHANGE_SUPPORTED_FEATURES:
663d715cf51SMatthias Ringwald                     hfp_hf_drop_mSBC_if_eSCO_not_supported(hfp_codecs, &hfp_codecs_nr);
664a0ffb263SMatthias Ringwald                     if (has_codec_negotiation_feature(hfp_connection)){
665a0ffb263SMatthias Ringwald                         hfp_connection->state = HFP_W4_NOTIFY_ON_CODECS;
666aa4dd815SMatthias Ringwald                     } else {
667a0ffb263SMatthias Ringwald                         hfp_connection->state = HFP_W4_RETRIEVE_INDICATORS;
668aa4dd815SMatthias Ringwald                     }
669a0ffb263SMatthias Ringwald                     hfp_ag_exchange_supported_features_cmd(hfp_connection->rfcomm_cid);
670aa4dd815SMatthias Ringwald                     return 1;
6713deb3ec6SMatthias Ringwald                 default:
6723deb3ec6SMatthias Ringwald                     break;
6733deb3ec6SMatthias Ringwald             }
6743deb3ec6SMatthias Ringwald             break;
6753deb3ec6SMatthias Ringwald         case HFP_CMD_AVAILABLE_CODECS:
676a0ffb263SMatthias Ringwald             done = codecs_exchange_state_machine(hfp_connection);
6773deb3ec6SMatthias Ringwald 
678a0ffb263SMatthias Ringwald             if (hfp_connection->codecs_state == HFP_CODECS_RECEIVED_LIST){
679a0ffb263SMatthias Ringwald                 hfp_connection->state = HFP_W4_RETRIEVE_INDICATORS;
6803deb3ec6SMatthias Ringwald             }
681aa4dd815SMatthias Ringwald             return done;
682aa4dd815SMatthias Ringwald 
683aa4dd815SMatthias Ringwald         case HFP_CMD_RETRIEVE_AG_INDICATORS:
684a0ffb263SMatthias Ringwald             if (hfp_connection->state == HFP_W4_RETRIEVE_INDICATORS) {
685473ac565SMatthias Ringwald                 // HF requested AG Indicators and we did expect it
686473ac565SMatthias Ringwald                 hfp_connection->state = HFP_RETRIEVE_INDICATORS;
687473ac565SMatthias Ringwald                 // continue below in state switch
688ad902e3dSMatthias Ringwald             }
689ad902e3dSMatthias Ringwald             break;
690aa4dd815SMatthias Ringwald 
691aa4dd815SMatthias Ringwald         case HFP_CMD_RETRIEVE_AG_INDICATORS_STATUS:
692a0ffb263SMatthias Ringwald             if (hfp_connection->state != HFP_W4_RETRIEVE_INDICATORS_STATUS) break;
693a0ffb263SMatthias Ringwald             hfp_connection->state = HFP_W4_ENABLE_INDICATORS_STATUS_UPDATE;
694a0ffb263SMatthias Ringwald             hfp_ag_retrieve_indicators_status_cmd(hfp_connection->rfcomm_cid);
695aa4dd815SMatthias Ringwald             return 1;
696aa4dd815SMatthias Ringwald 
6973deb3ec6SMatthias Ringwald         case HFP_CMD_ENABLE_INDICATOR_STATUS_UPDATE:
698a0ffb263SMatthias Ringwald             if (hfp_connection->state != HFP_W4_ENABLE_INDICATORS_STATUS_UPDATE) break;
699a0ffb263SMatthias Ringwald             if (has_call_waiting_and_3way_calling_feature(hfp_connection)){
700a0ffb263SMatthias Ringwald                 hfp_connection->state = HFP_W4_RETRIEVE_CAN_HOLD_CALL;
701a0ffb263SMatthias Ringwald             } else if (has_hf_indicators_feature(hfp_connection)){
702a0ffb263SMatthias Ringwald                 hfp_connection->state = HFP_W4_LIST_GENERIC_STATUS_INDICATORS;
703aa4dd815SMatthias Ringwald             } else {
704a0ffb263SMatthias Ringwald                 hfp_ag_slc_established(hfp_connection);
7053deb3ec6SMatthias Ringwald             }
706a0ffb263SMatthias Ringwald             hfp_ag_set_indicator_status_update_cmd(hfp_connection->rfcomm_cid, 1);
707aa4dd815SMatthias Ringwald             return 1;
7083deb3ec6SMatthias Ringwald 
709aa4dd815SMatthias Ringwald         case HFP_CMD_SUPPORT_CALL_HOLD_AND_MULTIPARTY_SERVICES:
710a0ffb263SMatthias Ringwald             if (hfp_connection->state != HFP_W4_RETRIEVE_CAN_HOLD_CALL) break;
711a0ffb263SMatthias Ringwald             if (has_hf_indicators_feature(hfp_connection)){
712a0ffb263SMatthias Ringwald                 hfp_connection->state = HFP_W4_LIST_GENERIC_STATUS_INDICATORS;
713aa4dd815SMatthias Ringwald             }
714a0ffb263SMatthias Ringwald             hfp_ag_retrieve_can_hold_call_cmd(hfp_connection->rfcomm_cid);
715a0ffb263SMatthias Ringwald             if (!has_hf_indicators_feature(hfp_connection)){
716a0ffb263SMatthias Ringwald                 hfp_ag_slc_established(hfp_connection);
717ce263fc8SMatthias Ringwald             }
718aa4dd815SMatthias Ringwald             return 1;
719aa4dd815SMatthias Ringwald 
720aa4dd815SMatthias Ringwald         case HFP_CMD_LIST_GENERIC_STATUS_INDICATORS:
721a0ffb263SMatthias Ringwald             if (hfp_connection->state != HFP_W4_LIST_GENERIC_STATUS_INDICATORS) break;
722a0ffb263SMatthias Ringwald             hfp_connection->state = HFP_W4_RETRIEVE_GENERIC_STATUS_INDICATORS;
723a0ffb263SMatthias Ringwald             hfp_ag_list_supported_generic_status_indicators_cmd(hfp_connection->rfcomm_cid);
724aa4dd815SMatthias Ringwald             return 1;
725aa4dd815SMatthias Ringwald 
726aa4dd815SMatthias Ringwald         case HFP_CMD_RETRIEVE_GENERIC_STATUS_INDICATORS:
727a0ffb263SMatthias Ringwald             if (hfp_connection->state != HFP_W4_RETRIEVE_GENERIC_STATUS_INDICATORS) break;
728a0ffb263SMatthias Ringwald             hfp_connection->state = HFP_W4_RETRIEVE_INITITAL_STATE_GENERIC_STATUS_INDICATORS;
729a0ffb263SMatthias Ringwald             hfp_ag_retrieve_supported_generic_status_indicators_cmd(hfp_connection->rfcomm_cid);
730aa4dd815SMatthias Ringwald             return 1;
731aa4dd815SMatthias Ringwald 
732aa4dd815SMatthias Ringwald         case HFP_CMD_RETRIEVE_GENERIC_STATUS_INDICATORS_STATE:
733a0ffb263SMatthias Ringwald             if (hfp_connection->state != HFP_W4_RETRIEVE_INITITAL_STATE_GENERIC_STATUS_INDICATORS) break;
734a0ffb263SMatthias Ringwald             hfp_ag_slc_established(hfp_connection);
735a0ffb263SMatthias Ringwald             hfp_ag_retrieve_initital_supported_generic_status_indicators_cmd(hfp_connection->rfcomm_cid);
736aa4dd815SMatthias Ringwald             return 1;
7373deb3ec6SMatthias Ringwald         default:
7383deb3ec6SMatthias Ringwald             break;
7393deb3ec6SMatthias Ringwald     }
740473ac565SMatthias Ringwald 
741473ac565SMatthias Ringwald     switch (hfp_connection->state){
742473ac565SMatthias Ringwald         case HFP_RETRIEVE_INDICATORS: {
743473ac565SMatthias Ringwald             int next_segment = hfp_ag_retrieve_indicators_cmd_via_generator(hfp_connection->rfcomm_cid, hfp_connection, hfp_connection->send_ag_indicators_segment);
744473ac565SMatthias Ringwald             int num_segments = hfp_ag_indicators_cmd_generator_num_segments(hfp_connection);
745473ac565SMatthias Ringwald             log_info("HFP_CMD_RETRIEVE_AG_INDICATORS next segment %u, num_segments %u", next_segment, num_segments);
746473ac565SMatthias Ringwald             if (next_segment < num_segments){
747473ac565SMatthias Ringwald                 // prepare sending of next segment
748473ac565SMatthias Ringwald                 hfp_connection->send_ag_indicators_segment = next_segment;
749473ac565SMatthias Ringwald                 log_info("HFP_CMD_RETRIEVE_AG_INDICATORS more. command %u, next seg %u", hfp_connection->command, next_segment);
750473ac565SMatthias Ringwald             } else {
751473ac565SMatthias Ringwald                 // done, go to next state
752473ac565SMatthias Ringwald                 hfp_connection->send_ag_indicators_segment = 0;
753473ac565SMatthias Ringwald                 hfp_connection->state = HFP_W4_RETRIEVE_INDICATORS_STATUS;
754473ac565SMatthias Ringwald             }
755473ac565SMatthias Ringwald             return 1;
756473ac565SMatthias Ringwald         }
757473ac565SMatthias Ringwald         default:
758473ac565SMatthias Ringwald             break;
759473ac565SMatthias Ringwald     }
760473ac565SMatthias Ringwald 
7613deb3ec6SMatthias Ringwald     return done;
7623deb3ec6SMatthias Ringwald }
7633deb3ec6SMatthias Ringwald 
764a0ffb263SMatthias Ringwald static int hfp_ag_run_for_context_service_level_connection_queries(hfp_connection_t * hfp_connection){
7653deb3ec6SMatthias Ringwald 
766a0ffb263SMatthias Ringwald     int done = codecs_exchange_state_machine(hfp_connection);
767aa4dd815SMatthias Ringwald     if (done) return done;
768aa4dd815SMatthias Ringwald 
769a0ffb263SMatthias Ringwald     switch(hfp_connection->command){
770aa4dd815SMatthias Ringwald         case HFP_CMD_AG_ACTIVATE_VOICE_RECOGNITION:
771a0ffb263SMatthias Ringwald             hfp_supported_features = store_bit(hfp_supported_features, HFP_AGSF_VOICE_RECOGNITION_FUNCTION, hfp_connection->ag_activate_voice_recognition);
772a0ffb263SMatthias Ringwald             hfp_ag_activate_voice_recognition_cmd(hfp_connection->rfcomm_cid, hfp_connection->ag_activate_voice_recognition);
773aa4dd815SMatthias Ringwald             return 1;
774aa4dd815SMatthias Ringwald         case HFP_CMD_HF_ACTIVATE_VOICE_RECOGNITION:
775aa4dd815SMatthias Ringwald             if (get_bit(hfp_supported_features, HFP_AGSF_VOICE_RECOGNITION_FUNCTION)){
776a0ffb263SMatthias Ringwald                 hfp_supported_features = store_bit(hfp_supported_features, HFP_AGSF_VOICE_RECOGNITION_FUNCTION, hfp_connection->ag_activate_voice_recognition);
777a0ffb263SMatthias Ringwald                 hfp_ag_ok(hfp_connection->rfcomm_cid);
778a0ffb263SMatthias Ringwald                 hfp_ag_setup_audio_connection(hfp_connection);
779aa4dd815SMatthias Ringwald             } else {
780a0ffb263SMatthias Ringwald                 hfp_ag_error(hfp_connection->rfcomm_cid);
781aa4dd815SMatthias Ringwald             }
782aa4dd815SMatthias Ringwald             return 1;
783aa4dd815SMatthias Ringwald         case HFP_CMD_CHANGE_IN_BAND_RING_TONE_SETTING:
784a0ffb263SMatthias Ringwald             hfp_ag_change_in_band_ring_tone_setting_cmd(hfp_connection->rfcomm_cid);
785aa4dd815SMatthias Ringwald             return 1;
786aa4dd815SMatthias Ringwald         case HFP_CMD_QUERY_OPERATOR_SELECTION_NAME:
787a0ffb263SMatthias Ringwald             hfp_ag_report_network_operator_name_cmd(hfp_connection->rfcomm_cid, hfp_connection->network_operator);
788aa4dd815SMatthias Ringwald             return 1;
789aa4dd815SMatthias Ringwald         case HFP_CMD_QUERY_OPERATOR_SELECTION_NAME_FORMAT:
790a0ffb263SMatthias Ringwald             if (hfp_connection->network_operator.format != 0){
791a0ffb263SMatthias Ringwald                 hfp_ag_error(hfp_connection->rfcomm_cid);
792aa4dd815SMatthias Ringwald             } else {
793a0ffb263SMatthias Ringwald                 hfp_ag_ok(hfp_connection->rfcomm_cid);
7943deb3ec6SMatthias Ringwald             }
795aa4dd815SMatthias Ringwald             return 1;
796aa4dd815SMatthias Ringwald         case HFP_CMD_ENABLE_INDIVIDUAL_AG_INDICATOR_STATUS_UPDATE:
797a0ffb263SMatthias Ringwald             hfp_ag_ok(hfp_connection->rfcomm_cid);
798aa4dd815SMatthias Ringwald             return 1;
7993deb3ec6SMatthias Ringwald         case HFP_CMD_ENABLE_EXTENDED_AUDIO_GATEWAY_ERROR:
800a0ffb263SMatthias Ringwald             if (hfp_connection->extended_audio_gateway_error){
801a0ffb263SMatthias Ringwald                 hfp_connection->extended_audio_gateway_error = 0;
802a0ffb263SMatthias Ringwald                 hfp_ag_report_extended_audio_gateway_error(hfp_connection->rfcomm_cid, hfp_connection->extended_audio_gateway_error_value);
803aa4dd815SMatthias Ringwald                 return 1;
8043deb3ec6SMatthias Ringwald             }
805202c8a4cSMatthias Ringwald             break;
8063deb3ec6SMatthias Ringwald         case HFP_CMD_ENABLE_INDICATOR_STATUS_UPDATE:
807a0ffb263SMatthias Ringwald             hfp_ag_ok(hfp_connection->rfcomm_cid);
808ce263fc8SMatthias Ringwald             return 1;
8093deb3ec6SMatthias Ringwald         default:
8103deb3ec6SMatthias Ringwald             break;
8113deb3ec6SMatthias Ringwald     }
812aa4dd815SMatthias Ringwald     return 0;
8133deb3ec6SMatthias Ringwald }
8143deb3ec6SMatthias Ringwald 
815a0ffb263SMatthias Ringwald static int hfp_ag_run_for_audio_connection(hfp_connection_t * hfp_connection){
816a0ffb263SMatthias Ringwald     if (hfp_connection->state < HFP_SERVICE_LEVEL_CONNECTION_ESTABLISHED ||
817a0ffb263SMatthias Ringwald         hfp_connection->state > HFP_W2_DISCONNECT_SCO) return 0;
8183deb3ec6SMatthias Ringwald 
819aa4dd815SMatthias Ringwald 
820a0ffb263SMatthias Ringwald     if (hfp_connection->state == HFP_AUDIO_CONNECTION_ESTABLISHED && hfp_connection->release_audio_connection){
821a0ffb263SMatthias Ringwald         hfp_connection->state = HFP_W4_SCO_DISCONNECTED;
822a0ffb263SMatthias Ringwald         hfp_connection->release_audio_connection = 0;
823a0ffb263SMatthias Ringwald         gap_disconnect(hfp_connection->sco_handle);
824aa4dd815SMatthias Ringwald         return 1;
825aa4dd815SMatthias Ringwald     }
826aa4dd815SMatthias Ringwald 
827a0ffb263SMatthias Ringwald     if (hfp_connection->state == HFP_AUDIO_CONNECTION_ESTABLISHED) return 0;
828aa4dd815SMatthias Ringwald 
829aa4dd815SMatthias Ringwald     // run codecs exchange
830a0ffb263SMatthias Ringwald     int done = codecs_exchange_state_machine(hfp_connection);
831aa4dd815SMatthias Ringwald     if (done) return done;
832aa4dd815SMatthias Ringwald 
833a0ffb263SMatthias Ringwald     if (hfp_connection->codecs_state != HFP_CODECS_EXCHANGED) return done;
834a0ffb263SMatthias Ringwald     if (hfp_connection->establish_audio_connection){
835a0ffb263SMatthias Ringwald         hfp_connection->state = HFP_W4_SCO_CONNECTED;
836a0ffb263SMatthias Ringwald         hfp_connection->establish_audio_connection = 0;
837eddcd308SMatthias Ringwald         hfp_setup_synchronous_connection(hfp_connection);
838aa4dd815SMatthias Ringwald         return 1;
839aa4dd815SMatthias Ringwald     }
840aa4dd815SMatthias Ringwald     return 0;
841aa4dd815SMatthias Ringwald }
842aa4dd815SMatthias Ringwald 
843ec820d77SMatthias Ringwald static hfp_connection_t * hfp_ag_context_for_timer(btstack_timer_source_t * ts){
844665d90f2SMatthias Ringwald     btstack_linked_list_iterator_t it;
845665d90f2SMatthias Ringwald     btstack_linked_list_iterator_init(&it, hfp_get_connections());
846aa4dd815SMatthias Ringwald 
847665d90f2SMatthias Ringwald     while (btstack_linked_list_iterator_has_next(&it)){
848a0ffb263SMatthias Ringwald         hfp_connection_t * hfp_connection = (hfp_connection_t *)btstack_linked_list_iterator_next(&it);
849a0ffb263SMatthias Ringwald         if ( & hfp_connection->hfp_timeout == ts) {
850a0ffb263SMatthias Ringwald             return hfp_connection;
851aa4dd815SMatthias Ringwald         }
852aa4dd815SMatthias Ringwald     }
853aa4dd815SMatthias Ringwald     return NULL;
854aa4dd815SMatthias Ringwald }
855aa4dd815SMatthias Ringwald 
856ec820d77SMatthias Ringwald static void hfp_timeout_handler(btstack_timer_source_t * timer){
857d63c37a1SMatthias Ringwald     hfp_connection_t * hfp_connection = hfp_ag_context_for_timer(timer);
858d63c37a1SMatthias Ringwald     if (!hfp_connection) return;
859aa4dd815SMatthias Ringwald 
860d63c37a1SMatthias Ringwald     log_info("HFP start ring timeout, con handle 0x%02x", hfp_connection->acl_handle);
861a0ffb263SMatthias Ringwald     hfp_connection->ag_ring = 1;
862a0ffb263SMatthias Ringwald     hfp_connection->ag_send_clip = hfp_gsm_clip_type() && hfp_connection->clip_enabled;
863aa4dd815SMatthias Ringwald 
864a0ffb263SMatthias Ringwald     btstack_run_loop_set_timer(& hfp_connection->hfp_timeout, 2000); // 2 seconds timeout
865a0ffb263SMatthias Ringwald     btstack_run_loop_add_timer(& hfp_connection->hfp_timeout);
866aa4dd815SMatthias Ringwald 
867a0ffb263SMatthias Ringwald     hfp_run_for_context(hfp_connection);
868aa4dd815SMatthias Ringwald }
869aa4dd815SMatthias Ringwald 
870a0ffb263SMatthias Ringwald static void hfp_timeout_start(hfp_connection_t * hfp_connection){
871a0ffb263SMatthias Ringwald     btstack_run_loop_remove_timer(& hfp_connection->hfp_timeout);
872a0ffb263SMatthias Ringwald     btstack_run_loop_set_timer_handler(& hfp_connection->hfp_timeout, hfp_timeout_handler);
873a0ffb263SMatthias Ringwald     btstack_run_loop_set_timer(& hfp_connection->hfp_timeout, 2000); // 2 seconds timeout
874a0ffb263SMatthias Ringwald     btstack_run_loop_add_timer(& hfp_connection->hfp_timeout);
875aa4dd815SMatthias Ringwald }
876aa4dd815SMatthias Ringwald 
877a0ffb263SMatthias Ringwald static void hfp_timeout_stop(hfp_connection_t * hfp_connection){
878a0ffb263SMatthias Ringwald     log_info("HFP stop ring timeout, con handle 0x%02x", hfp_connection->acl_handle);
879a0ffb263SMatthias Ringwald     btstack_run_loop_remove_timer(& hfp_connection->hfp_timeout);
880aa4dd815SMatthias Ringwald }
881aa4dd815SMatthias Ringwald 
882aa4dd815SMatthias Ringwald //
883aa4dd815SMatthias Ringwald // transitition implementations for hfp_ag_call_state_machine
884aa4dd815SMatthias Ringwald //
885aa4dd815SMatthias Ringwald 
886a0ffb263SMatthias Ringwald static void hfp_ag_hf_start_ringing(hfp_connection_t * hfp_connection){
887aa4dd815SMatthias Ringwald     if (use_in_band_tone()){
888a0ffb263SMatthias Ringwald         hfp_connection->call_state = HFP_CALL_W4_AUDIO_CONNECTION_FOR_IN_BAND_RING;
889d97d752dSMilanka Ringwald         hfp_ag_establish_audio_connection(hfp_connection->acl_handle);
890aa4dd815SMatthias Ringwald     } else {
891a0ffb263SMatthias Ringwald         hfp_timeout_start(hfp_connection);
892a0ffb263SMatthias Ringwald         hfp_connection->ag_ring = 1;
893a0ffb263SMatthias Ringwald         hfp_connection->ag_send_clip = hfp_gsm_clip_type() && hfp_connection->clip_enabled;
894a0ffb263SMatthias Ringwald         hfp_connection->call_state = HFP_CALL_RINGING;
895a0ffb263SMatthias Ringwald         hfp_emit_simple_event(hfp_callback, HFP_SUBEVENT_START_RINGINIG);
896aa4dd815SMatthias Ringwald     }
897aa4dd815SMatthias Ringwald }
898aa4dd815SMatthias Ringwald 
899a0ffb263SMatthias Ringwald static void hfp_ag_hf_stop_ringing(hfp_connection_t * hfp_connection){
900a0ffb263SMatthias Ringwald     hfp_connection->ag_ring = 0;
901a0ffb263SMatthias Ringwald     hfp_connection->ag_send_clip = 0;
902a0ffb263SMatthias Ringwald     hfp_timeout_stop(hfp_connection);
903a0ffb263SMatthias Ringwald     hfp_emit_simple_event(hfp_callback, HFP_SUBEVENT_STOP_RINGINIG);
904aa4dd815SMatthias Ringwald }
905aa4dd815SMatthias Ringwald 
906aa4dd815SMatthias Ringwald static void hfp_ag_trigger_incoming_call(void){
907aa4dd815SMatthias Ringwald     int indicator_index = get_ag_indicator_index_for_name("callsetup");
908aa4dd815SMatthias Ringwald     if (indicator_index < 0) return;
909aa4dd815SMatthias Ringwald 
910665d90f2SMatthias Ringwald     btstack_linked_list_iterator_t it;
911665d90f2SMatthias Ringwald     btstack_linked_list_iterator_init(&it, hfp_get_connections());
912665d90f2SMatthias Ringwald     while (btstack_linked_list_iterator_has_next(&it)){
913a0ffb263SMatthias Ringwald         hfp_connection_t * hfp_connection = (hfp_connection_t *)btstack_linked_list_iterator_next(&it);
914a0ffb263SMatthias Ringwald         hfp_ag_establish_service_level_connection(hfp_connection->remote_addr);
915a0ffb263SMatthias Ringwald         if (hfp_connection->call_state == HFP_CALL_IDLE){
916a0ffb263SMatthias Ringwald             hfp_connection->ag_indicators_status_update_bitmap = store_bit(hfp_connection->ag_indicators_status_update_bitmap, indicator_index, 1);
917d63c37a1SMatthias Ringwald             hfp_ag_hf_start_ringing(hfp_connection);
918aa4dd815SMatthias Ringwald         }
919a0ffb263SMatthias Ringwald         if (hfp_connection->call_state == HFP_CALL_ACTIVE){
920a0ffb263SMatthias Ringwald             hfp_connection->call_state = HFP_CALL_W2_SEND_CALL_WAITING;
921aa4dd815SMatthias Ringwald         }
922a0ffb263SMatthias Ringwald         hfp_run_for_context(hfp_connection);
923aa4dd815SMatthias Ringwald     }
924aa4dd815SMatthias Ringwald }
925aa4dd815SMatthias Ringwald 
926aa4dd815SMatthias Ringwald static void hfp_ag_transfer_callsetup_state(void){
927aa4dd815SMatthias Ringwald     int indicator_index = get_ag_indicator_index_for_name("callsetup");
928aa4dd815SMatthias Ringwald     if (indicator_index < 0) return;
929aa4dd815SMatthias Ringwald 
930665d90f2SMatthias Ringwald     btstack_linked_list_iterator_t it;
931665d90f2SMatthias Ringwald     btstack_linked_list_iterator_init(&it, hfp_get_connections());
932665d90f2SMatthias Ringwald     while (btstack_linked_list_iterator_has_next(&it)){
933a0ffb263SMatthias Ringwald         hfp_connection_t * hfp_connection = (hfp_connection_t *)btstack_linked_list_iterator_next(&it);
934a0ffb263SMatthias Ringwald         hfp_ag_establish_service_level_connection(hfp_connection->remote_addr);
935a0ffb263SMatthias Ringwald         hfp_connection->ag_indicators_status_update_bitmap = store_bit(hfp_connection->ag_indicators_status_update_bitmap, indicator_index, 1);
936a0ffb263SMatthias Ringwald         hfp_run_for_context(hfp_connection);
937aa4dd815SMatthias Ringwald     }
938aa4dd815SMatthias Ringwald }
939aa4dd815SMatthias Ringwald 
940aa4dd815SMatthias Ringwald static void hfp_ag_transfer_call_state(void){
941aa4dd815SMatthias Ringwald     int indicator_index = get_ag_indicator_index_for_name("call");
942aa4dd815SMatthias Ringwald     if (indicator_index < 0) return;
943aa4dd815SMatthias Ringwald 
944665d90f2SMatthias Ringwald     btstack_linked_list_iterator_t it;
945665d90f2SMatthias Ringwald     btstack_linked_list_iterator_init(&it, hfp_get_connections());
946665d90f2SMatthias Ringwald     while (btstack_linked_list_iterator_has_next(&it)){
947a0ffb263SMatthias Ringwald         hfp_connection_t * hfp_connection = (hfp_connection_t *)btstack_linked_list_iterator_next(&it);
948a0ffb263SMatthias Ringwald         hfp_ag_establish_service_level_connection(hfp_connection->remote_addr);
949a0ffb263SMatthias Ringwald         hfp_connection->ag_indicators_status_update_bitmap = store_bit(hfp_connection->ag_indicators_status_update_bitmap, indicator_index, 1);
950a0ffb263SMatthias Ringwald         hfp_run_for_context(hfp_connection);
951aa4dd815SMatthias Ringwald     }
952aa4dd815SMatthias Ringwald }
953aa4dd815SMatthias Ringwald 
954aa4dd815SMatthias Ringwald static void hfp_ag_transfer_callheld_state(void){
955aa4dd815SMatthias Ringwald     int indicator_index = get_ag_indicator_index_for_name("callheld");
956aa4dd815SMatthias Ringwald     if (indicator_index < 0) return;
957aa4dd815SMatthias Ringwald 
958665d90f2SMatthias Ringwald     btstack_linked_list_iterator_t it;
959665d90f2SMatthias Ringwald     btstack_linked_list_iterator_init(&it, hfp_get_connections());
960665d90f2SMatthias Ringwald     while (btstack_linked_list_iterator_has_next(&it)){
961a0ffb263SMatthias Ringwald         hfp_connection_t * hfp_connection = (hfp_connection_t *)btstack_linked_list_iterator_next(&it);
962a0ffb263SMatthias Ringwald         hfp_ag_establish_service_level_connection(hfp_connection->remote_addr);
963a0ffb263SMatthias Ringwald         hfp_connection->ag_indicators_status_update_bitmap = store_bit(hfp_connection->ag_indicators_status_update_bitmap, indicator_index, 1);
964a0ffb263SMatthias Ringwald         hfp_run_for_context(hfp_connection);
965aa4dd815SMatthias Ringwald     }
966aa4dd815SMatthias Ringwald }
967aa4dd815SMatthias Ringwald 
968aa4dd815SMatthias Ringwald static void hfp_ag_hf_accept_call(hfp_connection_t * source){
969aa4dd815SMatthias Ringwald 
970aa4dd815SMatthias Ringwald     int call_indicator_index = get_ag_indicator_index_for_name("call");
971aa4dd815SMatthias Ringwald     int callsetup_indicator_index = get_ag_indicator_index_for_name("callsetup");
972aa4dd815SMatthias Ringwald 
973665d90f2SMatthias Ringwald     btstack_linked_list_iterator_t it;
974665d90f2SMatthias Ringwald     btstack_linked_list_iterator_init(&it, hfp_get_connections());
975665d90f2SMatthias Ringwald     while (btstack_linked_list_iterator_has_next(&it)){
976a0ffb263SMatthias Ringwald         hfp_connection_t * hfp_connection = (hfp_connection_t *)btstack_linked_list_iterator_next(&it);
977a0ffb263SMatthias Ringwald         if (hfp_connection->call_state != HFP_CALL_RINGING &&
978a0ffb263SMatthias Ringwald             hfp_connection->call_state != HFP_CALL_W4_AUDIO_CONNECTION_FOR_IN_BAND_RING) continue;
979aa4dd815SMatthias Ringwald 
980a0ffb263SMatthias Ringwald         hfp_ag_hf_stop_ringing(hfp_connection);
981a0ffb263SMatthias Ringwald         if (hfp_connection == source){
982a0ffb263SMatthias Ringwald             hfp_connection->ok_pending = 1;
983aa4dd815SMatthias Ringwald 
984aa4dd815SMatthias Ringwald             if (use_in_band_tone()){
985a0ffb263SMatthias Ringwald                 hfp_connection->call_state = HFP_CALL_ACTIVE;
986aa4dd815SMatthias Ringwald             } else {
987a0ffb263SMatthias Ringwald                 hfp_connection->call_state = HFP_CALL_W4_AUDIO_CONNECTION_FOR_ACTIVE;
988d97d752dSMilanka Ringwald                 hfp_ag_establish_audio_connection(hfp_connection->acl_handle);
989aa4dd815SMatthias Ringwald             }
990aa4dd815SMatthias Ringwald 
991a0ffb263SMatthias Ringwald             hfp_connection->ag_indicators_status_update_bitmap = store_bit(hfp_connection->ag_indicators_status_update_bitmap, call_indicator_index, 1);
992a0ffb263SMatthias Ringwald             hfp_connection->ag_indicators_status_update_bitmap = store_bit(hfp_connection->ag_indicators_status_update_bitmap, callsetup_indicator_index, 1);
993aa4dd815SMatthias Ringwald 
994aa4dd815SMatthias Ringwald         } else {
995a0ffb263SMatthias Ringwald             hfp_connection->call_state = HFP_CALL_IDLE;
996aa4dd815SMatthias Ringwald         }
997a0ffb263SMatthias Ringwald         hfp_run_for_context(hfp_connection);
998aa4dd815SMatthias Ringwald     }
999aa4dd815SMatthias Ringwald }
1000aa4dd815SMatthias Ringwald 
1001aa4dd815SMatthias Ringwald static void hfp_ag_ag_accept_call(void){
1002aa4dd815SMatthias Ringwald 
1003aa4dd815SMatthias Ringwald     int call_indicator_index = get_ag_indicator_index_for_name("call");
1004aa4dd815SMatthias Ringwald     int callsetup_indicator_index = get_ag_indicator_index_for_name("callsetup");
1005aa4dd815SMatthias Ringwald 
1006665d90f2SMatthias Ringwald     btstack_linked_list_iterator_t it;
1007665d90f2SMatthias Ringwald     btstack_linked_list_iterator_init(&it, hfp_get_connections());
1008665d90f2SMatthias Ringwald     while (btstack_linked_list_iterator_has_next(&it)){
1009a0ffb263SMatthias Ringwald         hfp_connection_t * hfp_connection = (hfp_connection_t *)btstack_linked_list_iterator_next(&it);
1010a0ffb263SMatthias Ringwald         if (hfp_connection->call_state != HFP_CALL_RINGING) continue;
1011aa4dd815SMatthias Ringwald 
1012a0ffb263SMatthias Ringwald         hfp_ag_hf_stop_ringing(hfp_connection);
1013a0ffb263SMatthias Ringwald         hfp_connection->call_state = HFP_CALL_TRIGGER_AUDIO_CONNECTION;
1014aa4dd815SMatthias Ringwald 
1015a0ffb263SMatthias Ringwald         hfp_connection->ag_indicators_status_update_bitmap = store_bit(hfp_connection->ag_indicators_status_update_bitmap, call_indicator_index, 1);
1016a0ffb263SMatthias Ringwald         hfp_connection->ag_indicators_status_update_bitmap = store_bit(hfp_connection->ag_indicators_status_update_bitmap, callsetup_indicator_index, 1);
1017aa4dd815SMatthias Ringwald 
1018a0ffb263SMatthias Ringwald         hfp_run_for_context(hfp_connection);
1019aa4dd815SMatthias Ringwald         break;  // only single
1020aa4dd815SMatthias Ringwald     }
1021aa4dd815SMatthias Ringwald }
1022aa4dd815SMatthias Ringwald 
1023aa4dd815SMatthias Ringwald static void hfp_ag_trigger_reject_call(void){
1024aa4dd815SMatthias Ringwald     int callsetup_indicator_index = get_ag_indicator_index_for_name("callsetup");
1025665d90f2SMatthias Ringwald     btstack_linked_list_iterator_t it;
1026665d90f2SMatthias Ringwald     btstack_linked_list_iterator_init(&it, hfp_get_connections());
1027665d90f2SMatthias Ringwald     while (btstack_linked_list_iterator_has_next(&it)){
1028665d90f2SMatthias Ringwald         hfp_connection_t * connection = (hfp_connection_t *)btstack_linked_list_iterator_next(&it);
1029aa4dd815SMatthias Ringwald         if (connection->call_state != HFP_CALL_RINGING &&
1030aa4dd815SMatthias Ringwald             connection->call_state != HFP_CALL_W4_AUDIO_CONNECTION_FOR_IN_BAND_RING) continue;
1031aa4dd815SMatthias Ringwald         hfp_ag_hf_stop_ringing(connection);
1032aa4dd815SMatthias Ringwald         connection->ag_indicators_status_update_bitmap = store_bit(connection->ag_indicators_status_update_bitmap, callsetup_indicator_index, 1);
1033aa4dd815SMatthias Ringwald         connection->call_state = HFP_CALL_IDLE;
1034aa4dd815SMatthias Ringwald         hfp_run_for_context(connection);
1035aa4dd815SMatthias Ringwald     }
1036aa4dd815SMatthias Ringwald }
1037aa4dd815SMatthias Ringwald 
1038aa4dd815SMatthias Ringwald static void hfp_ag_trigger_terminate_call(void){
1039aa4dd815SMatthias Ringwald     int call_indicator_index = get_ag_indicator_index_for_name("call");
1040aa4dd815SMatthias Ringwald 
1041665d90f2SMatthias Ringwald     btstack_linked_list_iterator_t it;
1042665d90f2SMatthias Ringwald     btstack_linked_list_iterator_init(&it, hfp_get_connections());
1043665d90f2SMatthias Ringwald     while (btstack_linked_list_iterator_has_next(&it)){
1044a0ffb263SMatthias Ringwald         hfp_connection_t * hfp_connection = (hfp_connection_t *)btstack_linked_list_iterator_next(&it);
1045d63c37a1SMatthias Ringwald         hfp_ag_establish_service_level_connection(hfp_connection->remote_addr);
1046a0ffb263SMatthias Ringwald         if (hfp_connection->call_state == HFP_CALL_IDLE) continue;
1047a0ffb263SMatthias Ringwald         hfp_connection->call_state = HFP_CALL_IDLE;
1048a0ffb263SMatthias Ringwald         hfp_connection->ag_indicators_status_update_bitmap = store_bit(hfp_connection->ag_indicators_status_update_bitmap, call_indicator_index, 1);
1049a0ffb263SMatthias Ringwald         hfp_connection->release_audio_connection = 1;
1050a0ffb263SMatthias Ringwald         hfp_run_for_context(hfp_connection);
1051aa4dd815SMatthias Ringwald     }
1052a0ffb263SMatthias Ringwald     hfp_emit_simple_event(hfp_callback, HFP_SUBEVENT_CALL_TERMINATED);
1053aa4dd815SMatthias Ringwald }
1054aa4dd815SMatthias Ringwald 
10550cb5b971SMatthias Ringwald static void hfp_ag_set_callsetup_indicator(void){
1056aa4dd815SMatthias Ringwald     hfp_ag_indicator_t * indicator = get_ag_indicator_for_name("callsetup");
1057aa4dd815SMatthias Ringwald     if (!indicator){
1058d0c20769SMatthias Ringwald         log_error("hfp_ag_set_callsetup_indicator: callsetup indicator is missing");
105945718b6fSMatthias Ringwald         return;
1060aa4dd815SMatthias Ringwald     };
1061d0c20769SMatthias Ringwald     indicator->status = hfp_gsm_callsetup_status();
1062aa4dd815SMatthias Ringwald }
1063aa4dd815SMatthias Ringwald 
10640cb5b971SMatthias Ringwald static void hfp_ag_set_callheld_indicator(void){
1065d210d9c4SMatthias Ringwald     hfp_ag_indicator_t * indicator = get_ag_indicator_for_name("callheld");
1066d210d9c4SMatthias Ringwald     if (!indicator){
1067d210d9c4SMatthias Ringwald         log_error("hfp_ag_set_callheld_state: callheld indicator is missing");
106845718b6fSMatthias Ringwald         return;
1069d210d9c4SMatthias Ringwald     };
1070d210d9c4SMatthias Ringwald     indicator->status = hfp_gsm_callheld_status();
1071d210d9c4SMatthias Ringwald }
1072d210d9c4SMatthias Ringwald 
10730cb5b971SMatthias Ringwald static void hfp_ag_set_call_indicator(void){
1074aa4dd815SMatthias Ringwald     hfp_ag_indicator_t * indicator = get_ag_indicator_for_name("call");
1075aa4dd815SMatthias Ringwald     if (!indicator){
1076aa4dd815SMatthias Ringwald         log_error("hfp_ag_set_call_state: call indicator is missing");
107745718b6fSMatthias Ringwald         return;
1078aa4dd815SMatthias Ringwald     };
1079d210d9c4SMatthias Ringwald     indicator->status = hfp_gsm_call_status();
1080aa4dd815SMatthias Ringwald }
1081aa4dd815SMatthias Ringwald 
1082aa4dd815SMatthias Ringwald static void hfp_ag_stop_ringing(void){
1083665d90f2SMatthias Ringwald     btstack_linked_list_iterator_t it;
1084665d90f2SMatthias Ringwald     btstack_linked_list_iterator_init(&it, hfp_get_connections());
1085665d90f2SMatthias Ringwald     while (btstack_linked_list_iterator_has_next(&it)){
1086a0ffb263SMatthias Ringwald         hfp_connection_t * hfp_connection = (hfp_connection_t *)btstack_linked_list_iterator_next(&it);
1087a0ffb263SMatthias Ringwald         if (hfp_connection->call_state != HFP_CALL_RINGING &&
1088a0ffb263SMatthias Ringwald             hfp_connection->call_state != HFP_CALL_W4_AUDIO_CONNECTION_FOR_IN_BAND_RING) continue;
1089a0ffb263SMatthias Ringwald         hfp_ag_hf_stop_ringing(hfp_connection);
1090aa4dd815SMatthias Ringwald     }
1091aa4dd815SMatthias Ringwald }
1092aa4dd815SMatthias Ringwald 
1093aa4dd815SMatthias Ringwald static hfp_connection_t * hfp_ag_connection_for_call_state(hfp_call_state_t call_state){
1094665d90f2SMatthias Ringwald     btstack_linked_list_iterator_t it;
1095665d90f2SMatthias Ringwald     btstack_linked_list_iterator_init(&it, hfp_get_connections());
1096665d90f2SMatthias Ringwald     while (btstack_linked_list_iterator_has_next(&it)){
1097a0ffb263SMatthias Ringwald         hfp_connection_t * hfp_connection = (hfp_connection_t *)btstack_linked_list_iterator_next(&it);
1098a0ffb263SMatthias Ringwald         if (hfp_connection->call_state == call_state) return hfp_connection;
1099aa4dd815SMatthias Ringwald     }
1100aa4dd815SMatthias Ringwald     return NULL;
1101aa4dd815SMatthias Ringwald }
1102aa4dd815SMatthias Ringwald 
1103a5bdcda8SMatthias Ringwald static void hfp_ag_send_response_and_hold_state(hfp_response_and_hold_state_t state){
1104665d90f2SMatthias Ringwald     btstack_linked_list_iterator_t it;
1105665d90f2SMatthias Ringwald     btstack_linked_list_iterator_init(&it, hfp_get_connections());
1106665d90f2SMatthias Ringwald     while (btstack_linked_list_iterator_has_next(&it)){
1107a0ffb263SMatthias Ringwald         hfp_connection_t * hfp_connection = (hfp_connection_t *)btstack_linked_list_iterator_next(&it);
1108a0ffb263SMatthias Ringwald         hfp_connection->send_response_and_hold_status = state + 1;
1109ce263fc8SMatthias Ringwald     }
1110ce263fc8SMatthias Ringwald }
1111ce263fc8SMatthias Ringwald 
1112a0ffb263SMatthias Ringwald static int call_setup_state_machine(hfp_connection_t * hfp_connection){
1113aa4dd815SMatthias Ringwald     int indicator_index;
1114a0ffb263SMatthias Ringwald     switch (hfp_connection->call_state){
1115aa4dd815SMatthias Ringwald         case HFP_CALL_W4_AUDIO_CONNECTION_FOR_IN_BAND_RING:
1116a0ffb263SMatthias Ringwald             if (hfp_connection->state != HFP_AUDIO_CONNECTION_ESTABLISHED) return 0;
1117a0ffb263SMatthias Ringwald             // we got event: audio hfp_connection established
1118a0ffb263SMatthias Ringwald             hfp_timeout_start(hfp_connection);
1119a0ffb263SMatthias Ringwald             hfp_connection->ag_ring = 1;
1120a0ffb263SMatthias Ringwald             hfp_connection->ag_send_clip = hfp_gsm_clip_type() && hfp_connection->clip_enabled;
1121a0ffb263SMatthias Ringwald             hfp_connection->call_state = HFP_CALL_RINGING;
1122a0ffb263SMatthias Ringwald             hfp_connection->call_state = HFP_CALL_RINGING;
1123a0ffb263SMatthias Ringwald             hfp_emit_simple_event(hfp_callback, HFP_SUBEVENT_START_RINGINIG);
1124aa4dd815SMatthias Ringwald             break;
1125aa4dd815SMatthias Ringwald         case HFP_CALL_W4_AUDIO_CONNECTION_FOR_ACTIVE:
1126a0ffb263SMatthias Ringwald             if (hfp_connection->state != HFP_AUDIO_CONNECTION_ESTABLISHED) return 0;
1127a0ffb263SMatthias Ringwald             // we got event: audio hfp_connection established
1128a0ffb263SMatthias Ringwald             hfp_connection->call_state = HFP_CALL_ACTIVE;
1129aa4dd815SMatthias Ringwald             break;
1130aa4dd815SMatthias Ringwald         case HFP_CALL_W2_SEND_CALL_WAITING:
1131a0ffb263SMatthias Ringwald             hfp_connection->call_state = HFP_CALL_W4_CHLD;
1132a0ffb263SMatthias Ringwald             hfp_ag_send_call_waiting_notification(hfp_connection->rfcomm_cid);
1133aa4dd815SMatthias Ringwald             indicator_index = get_ag_indicator_index_for_name("callsetup");
1134a0ffb263SMatthias Ringwald             hfp_connection->ag_indicators_status_update_bitmap = store_bit(hfp_connection->ag_indicators_status_update_bitmap, indicator_index, 1);
1135aa4dd815SMatthias Ringwald             break;
1136aa4dd815SMatthias Ringwald         default:
1137aa4dd815SMatthias Ringwald             break;
1138aa4dd815SMatthias Ringwald     }
1139aa4dd815SMatthias Ringwald     return 0;
1140aa4dd815SMatthias Ringwald }
1141a0ffb263SMatthias Ringwald // hfp_connection is used to identify originating HF
1142a0ffb263SMatthias Ringwald static void hfp_ag_call_sm(hfp_ag_call_event_t event, hfp_connection_t * hfp_connection){
1143aa4dd815SMatthias Ringwald     int indicator_index;
1144d210d9c4SMatthias Ringwald     int callsetup_indicator_index = get_ag_indicator_index_for_name("callsetup");
1145d210d9c4SMatthias Ringwald     int callheld_indicator_index = get_ag_indicator_index_for_name("callheld");
1146d210d9c4SMatthias Ringwald     int call_indicator_index = get_ag_indicator_index_for_name("call");
114774386ee0SMatthias Ringwald 
1148d210d9c4SMatthias Ringwald     //printf("hfp_ag_call_sm event %d \n", event);
1149aa4dd815SMatthias Ringwald     switch (event){
1150aa4dd815SMatthias Ringwald         case HFP_AG_INCOMING_CALL:
1151d0c20769SMatthias Ringwald             switch (hfp_gsm_call_status()){
1152aa4dd815SMatthias Ringwald                 case HFP_CALL_STATUS_NO_HELD_OR_ACTIVE_CALLS:
1153d0c20769SMatthias Ringwald                     switch (hfp_gsm_callsetup_status()){
1154aa4dd815SMatthias Ringwald                         case HFP_CALLSETUP_STATUS_NO_CALL_SETUP_IN_PROGRESS:
1155d210d9c4SMatthias Ringwald                             hfp_gsm_handle_event(HFP_AG_INCOMING_CALL);
1156d0c20769SMatthias Ringwald                             hfp_ag_set_callsetup_indicator();
1157aa4dd815SMatthias Ringwald                             hfp_ag_trigger_incoming_call();
115860ebb071SMilanka Ringwald                             log_info("AG rings");
1159aa4dd815SMatthias Ringwald                             break;
1160aa4dd815SMatthias Ringwald                         default:
11613deb3ec6SMatthias Ringwald                             break;
11623deb3ec6SMatthias Ringwald                     }
11633deb3ec6SMatthias Ringwald                     break;
1164aa4dd815SMatthias Ringwald                 case HFP_CALL_STATUS_ACTIVE_OR_HELD_CALL_IS_PRESENT:
1165d0c20769SMatthias Ringwald                     switch (hfp_gsm_callsetup_status()){
1166aa4dd815SMatthias Ringwald                         case HFP_CALLSETUP_STATUS_NO_CALL_SETUP_IN_PROGRESS:
1167d210d9c4SMatthias Ringwald                             hfp_gsm_handle_event(HFP_AG_INCOMING_CALL);
1168d0c20769SMatthias Ringwald                             hfp_ag_set_callsetup_indicator();
1169aa4dd815SMatthias Ringwald                             hfp_ag_trigger_incoming_call();
117060ebb071SMilanka Ringwald                             log_info("AG call waiting");
1171aa4dd815SMatthias Ringwald                             break;
1172aa4dd815SMatthias Ringwald                         default:
11733deb3ec6SMatthias Ringwald                             break;
11743deb3ec6SMatthias Ringwald                     }
11753deb3ec6SMatthias Ringwald                     break;
1176aa4dd815SMatthias Ringwald             }
1177aa4dd815SMatthias Ringwald             break;
1178aa4dd815SMatthias Ringwald         case HFP_AG_INCOMING_CALL_ACCEPTED_BY_AG:
1179d0c20769SMatthias Ringwald             switch (hfp_gsm_call_status()){
1180aa4dd815SMatthias Ringwald                 case HFP_CALL_STATUS_NO_HELD_OR_ACTIVE_CALLS:
1181d0c20769SMatthias Ringwald                     switch (hfp_gsm_callsetup_status()){
1182aa4dd815SMatthias Ringwald                         case HFP_CALLSETUP_STATUS_INCOMING_CALL_SETUP_IN_PROGRESS:
1183d210d9c4SMatthias Ringwald                             hfp_gsm_handle_event(HFP_AG_INCOMING_CALL_ACCEPTED_BY_AG);
1184d210d9c4SMatthias Ringwald                             hfp_ag_set_call_indicator();
1185d0c20769SMatthias Ringwald                             hfp_ag_set_callsetup_indicator();
1186aa4dd815SMatthias Ringwald                             hfp_ag_ag_accept_call();
118760ebb071SMilanka Ringwald                             log_info("AG answers call, accept call by GSM");
1188aa4dd815SMatthias Ringwald                             break;
1189aa4dd815SMatthias Ringwald                         default:
11903deb3ec6SMatthias Ringwald                             break;
11913deb3ec6SMatthias Ringwald                     }
1192aa4dd815SMatthias Ringwald                     break;
1193aa4dd815SMatthias Ringwald                 case HFP_CALL_STATUS_ACTIVE_OR_HELD_CALL_IS_PRESENT:
1194d0c20769SMatthias Ringwald                     switch (hfp_gsm_callsetup_status()){
1195aa4dd815SMatthias Ringwald                         case HFP_CALLSETUP_STATUS_INCOMING_CALL_SETUP_IN_PROGRESS:
119660ebb071SMilanka Ringwald                             log_info("AG: current call is placed on hold, incoming call gets active");
1197d210d9c4SMatthias Ringwald                             hfp_gsm_handle_event(HFP_AG_INCOMING_CALL_ACCEPTED_BY_AG);
1198d0c20769SMatthias Ringwald                             hfp_ag_set_callsetup_indicator();
1199d0c20769SMatthias Ringwald                             hfp_ag_set_callheld_indicator();
1200ce263fc8SMatthias Ringwald                             hfp_ag_transfer_callsetup_state();
1201ce263fc8SMatthias Ringwald                             hfp_ag_transfer_callheld_state();
1202aa4dd815SMatthias Ringwald                             break;
1203aa4dd815SMatthias Ringwald                         default:
1204aa4dd815SMatthias Ringwald                             break;
1205aa4dd815SMatthias Ringwald                     }
1206aa4dd815SMatthias Ringwald                     break;
1207aa4dd815SMatthias Ringwald             }
1208aa4dd815SMatthias Ringwald             break;
1209ce263fc8SMatthias Ringwald 
1210ce263fc8SMatthias Ringwald         case HFP_AG_HELD_CALL_JOINED_BY_AG:
1211d0c20769SMatthias Ringwald             switch (hfp_gsm_call_status()){
1212ce263fc8SMatthias Ringwald                 case HFP_CALL_STATUS_ACTIVE_OR_HELD_CALL_IS_PRESENT:
1213d0c20769SMatthias Ringwald                     switch (hfp_gsm_callheld_status()){
1214ce263fc8SMatthias Ringwald                         case HFP_CALLHELD_STATUS_CALL_ON_HOLD_OR_SWAPPED:
121560ebb071SMilanka Ringwald                             log_info("AG: joining held call with active call");
1216d210d9c4SMatthias Ringwald                             hfp_gsm_handle_event(HFP_AG_HELD_CALL_JOINED_BY_AG);
1217d0c20769SMatthias Ringwald                             hfp_ag_set_callheld_indicator();
1218ce263fc8SMatthias Ringwald                             hfp_ag_transfer_callheld_state();
1219a0ffb263SMatthias Ringwald                             hfp_emit_simple_event(hfp_callback, HFP_SUBEVENT_CONFERENCE_CALL);
1220ce263fc8SMatthias Ringwald                             break;
1221ce263fc8SMatthias Ringwald                         default:
1222ce263fc8SMatthias Ringwald                             break;
1223ce263fc8SMatthias Ringwald                     }
1224ce263fc8SMatthias Ringwald                     break;
1225ce263fc8SMatthias Ringwald                 default:
1226ce263fc8SMatthias Ringwald                     break;
1227ce263fc8SMatthias Ringwald             }
1228ce263fc8SMatthias Ringwald             break;
1229ce263fc8SMatthias Ringwald 
1230aa4dd815SMatthias Ringwald         case HFP_AG_INCOMING_CALL_ACCEPTED_BY_HF:
1231d0c20769SMatthias Ringwald             switch (hfp_gsm_call_status()){
1232aa4dd815SMatthias Ringwald                 case HFP_CALL_STATUS_NO_HELD_OR_ACTIVE_CALLS:
1233d0c20769SMatthias Ringwald                     switch (hfp_gsm_callsetup_status()){
1234aa4dd815SMatthias Ringwald                         case HFP_CALLSETUP_STATUS_INCOMING_CALL_SETUP_IN_PROGRESS:
1235d210d9c4SMatthias Ringwald                             hfp_gsm_handle_event(HFP_AG_INCOMING_CALL_ACCEPTED_BY_HF);
1236d0c20769SMatthias Ringwald                             hfp_ag_set_callsetup_indicator();
1237d210d9c4SMatthias Ringwald                             hfp_ag_set_call_indicator();
1238a0ffb263SMatthias Ringwald                             hfp_ag_hf_accept_call(hfp_connection);
123960ebb071SMilanka Ringwald                             log_info("HF answers call, accept call by GSM");
1240a0ffb263SMatthias Ringwald                             hfp_emit_simple_event(hfp_callback, HFP_SUBEVENT_CALL_ANSWERED);
1241aa4dd815SMatthias Ringwald                             break;
1242aa4dd815SMatthias Ringwald                         default:
1243aa4dd815SMatthias Ringwald                             break;
1244aa4dd815SMatthias Ringwald                     }
12453deb3ec6SMatthias Ringwald                     break;
12463deb3ec6SMatthias Ringwald                 default:
12473deb3ec6SMatthias Ringwald                     break;
12483deb3ec6SMatthias Ringwald             }
12493deb3ec6SMatthias Ringwald             break;
12503deb3ec6SMatthias Ringwald 
1251ce263fc8SMatthias Ringwald         case HFP_AG_RESPONSE_AND_HOLD_ACCEPT_INCOMING_CALL_BY_AG:
1252d0c20769SMatthias Ringwald             switch (hfp_gsm_call_status()){
1253ce263fc8SMatthias Ringwald                 case HFP_CALL_STATUS_NO_HELD_OR_ACTIVE_CALLS:
1254d0c20769SMatthias Ringwald                     switch (hfp_gsm_callsetup_status()){
1255ce263fc8SMatthias Ringwald                         case HFP_CALLSETUP_STATUS_INCOMING_CALL_SETUP_IN_PROGRESS:
1256d210d9c4SMatthias Ringwald                             hfp_gsm_handle_event(HFP_AG_RESPONSE_AND_HOLD_ACCEPT_INCOMING_CALL_BY_AG);
1257ce263fc8SMatthias Ringwald                             hfp_ag_response_and_hold_active = 1;
1258ce263fc8SMatthias Ringwald                             hfp_ag_response_and_hold_state = HFP_RESPONSE_AND_HOLD_INCOMING_ON_HOLD;
1259a5bdcda8SMatthias Ringwald                             hfp_ag_send_response_and_hold_state(hfp_ag_response_and_hold_state);
1260ce263fc8SMatthias Ringwald                             // as with regualr call
1261d210d9c4SMatthias Ringwald                             hfp_ag_set_call_indicator();
1262d0c20769SMatthias Ringwald                             hfp_ag_set_callsetup_indicator();
1263ce263fc8SMatthias Ringwald                             hfp_ag_ag_accept_call();
126460ebb071SMilanka Ringwald                             log_info("AG response and hold - hold by AG");
1265ce263fc8SMatthias Ringwald                             break;
1266ce263fc8SMatthias Ringwald                         default:
1267ce263fc8SMatthias Ringwald                             break;
1268ce263fc8SMatthias Ringwald                     }
1269ce263fc8SMatthias Ringwald                     break;
1270ce263fc8SMatthias Ringwald                 default:
1271ce263fc8SMatthias Ringwald                     break;
1272ce263fc8SMatthias Ringwald             }
1273ce263fc8SMatthias Ringwald             break;
1274ce263fc8SMatthias Ringwald 
1275ce263fc8SMatthias Ringwald         case HFP_AG_RESPONSE_AND_HOLD_ACCEPT_INCOMING_CALL_BY_HF:
1276d0c20769SMatthias Ringwald             switch (hfp_gsm_call_status()){
1277ce263fc8SMatthias Ringwald                 case HFP_CALL_STATUS_NO_HELD_OR_ACTIVE_CALLS:
1278d0c20769SMatthias Ringwald                     switch (hfp_gsm_callsetup_status()){
1279ce263fc8SMatthias Ringwald                         case HFP_CALLSETUP_STATUS_INCOMING_CALL_SETUP_IN_PROGRESS:
1280d210d9c4SMatthias Ringwald                             hfp_gsm_handle_event(HFP_AG_RESPONSE_AND_HOLD_ACCEPT_INCOMING_CALL_BY_HF);
1281ce263fc8SMatthias Ringwald                             hfp_ag_response_and_hold_active = 1;
1282ce263fc8SMatthias Ringwald                             hfp_ag_response_and_hold_state = HFP_RESPONSE_AND_HOLD_INCOMING_ON_HOLD;
1283a5bdcda8SMatthias Ringwald                             hfp_ag_send_response_and_hold_state(hfp_ag_response_and_hold_state);
1284ce263fc8SMatthias Ringwald                             // as with regualr call
1285d210d9c4SMatthias Ringwald                             hfp_ag_set_call_indicator();
1286d0c20769SMatthias Ringwald                             hfp_ag_set_callsetup_indicator();
1287a0ffb263SMatthias Ringwald                             hfp_ag_hf_accept_call(hfp_connection);
128860ebb071SMilanka Ringwald                             log_info("AG response and hold - hold by HF");
1289ce263fc8SMatthias Ringwald                             break;
1290ce263fc8SMatthias Ringwald                         default:
1291ce263fc8SMatthias Ringwald                             break;
1292ce263fc8SMatthias Ringwald                     }
1293ce263fc8SMatthias Ringwald                     break;
1294ce263fc8SMatthias Ringwald                 default:
1295ce263fc8SMatthias Ringwald                     break;
1296ce263fc8SMatthias Ringwald             }
1297ce263fc8SMatthias Ringwald             break;
1298ce263fc8SMatthias Ringwald 
1299ce263fc8SMatthias Ringwald         case HFP_AG_RESPONSE_AND_HOLD_ACCEPT_HELD_CALL_BY_AG:
1300ce263fc8SMatthias Ringwald         case HFP_AG_RESPONSE_AND_HOLD_ACCEPT_HELD_CALL_BY_HF:
1301ce263fc8SMatthias Ringwald             if (!hfp_ag_response_and_hold_active) break;
1302ce263fc8SMatthias Ringwald             if (hfp_ag_response_and_hold_state != HFP_RESPONSE_AND_HOLD_INCOMING_ON_HOLD) break;
1303d210d9c4SMatthias Ringwald             hfp_gsm_handle_event(HFP_AG_RESPONSE_AND_HOLD_ACCEPT_HELD_CALL_BY_AG);
1304a5bdcda8SMatthias Ringwald             hfp_ag_response_and_hold_active = 0;
1305ce263fc8SMatthias Ringwald             hfp_ag_response_and_hold_state = HFP_RESPONSE_AND_HOLD_HELD_INCOMING_ACCEPTED;
1306a5bdcda8SMatthias Ringwald             hfp_ag_send_response_and_hold_state(hfp_ag_response_and_hold_state);
130760ebb071SMilanka Ringwald             log_info("Held Call accepted and active");
1308ce263fc8SMatthias Ringwald             break;
1309ce263fc8SMatthias Ringwald 
1310ce263fc8SMatthias Ringwald         case HFP_AG_RESPONSE_AND_HOLD_REJECT_HELD_CALL_BY_AG:
1311ce263fc8SMatthias Ringwald         case HFP_AG_RESPONSE_AND_HOLD_REJECT_HELD_CALL_BY_HF:
1312ce263fc8SMatthias Ringwald             if (!hfp_ag_response_and_hold_active) break;
1313ce263fc8SMatthias Ringwald             if (hfp_ag_response_and_hold_state != HFP_RESPONSE_AND_HOLD_INCOMING_ON_HOLD) break;
1314d210d9c4SMatthias Ringwald             hfp_gsm_handle_event(HFP_AG_RESPONSE_AND_HOLD_REJECT_HELD_CALL_BY_AG);
1315a5bdcda8SMatthias Ringwald             hfp_ag_response_and_hold_active = 0;
1316ce263fc8SMatthias Ringwald             hfp_ag_response_and_hold_state = HFP_RESPONSE_AND_HOLD_HELD_INCOMING_REJECTED;
1317a5bdcda8SMatthias Ringwald             hfp_ag_send_response_and_hold_state(hfp_ag_response_and_hold_state);
1318ce263fc8SMatthias Ringwald             // from terminate by ag
1319d210d9c4SMatthias Ringwald             hfp_ag_set_call_indicator();
1320ce263fc8SMatthias Ringwald             hfp_ag_trigger_terminate_call();
1321ce263fc8SMatthias Ringwald             break;
1322ce263fc8SMatthias Ringwald 
1323aa4dd815SMatthias Ringwald         case HFP_AG_TERMINATE_CALL_BY_HF:
1324d0c20769SMatthias Ringwald             switch (hfp_gsm_call_status()){
1325aa4dd815SMatthias Ringwald                 case HFP_CALL_STATUS_NO_HELD_OR_ACTIVE_CALLS:
1326d0c20769SMatthias Ringwald                     switch (hfp_gsm_callsetup_status()){
1327aa4dd815SMatthias Ringwald                         case HFP_CALLSETUP_STATUS_INCOMING_CALL_SETUP_IN_PROGRESS:
1328d210d9c4SMatthias Ringwald                             hfp_gsm_handle_event(HFP_AG_TERMINATE_CALL_BY_HF);
1329d0c20769SMatthias Ringwald                             hfp_ag_set_callsetup_indicator();
1330aa4dd815SMatthias Ringwald                             hfp_ag_transfer_callsetup_state();
1331aa4dd815SMatthias Ringwald                             hfp_ag_trigger_reject_call();
133260ebb071SMilanka Ringwald                             log_info("HF Rejected Incoming call, AG terminate call");
1333aa4dd815SMatthias Ringwald                             break;
1334aa4dd815SMatthias Ringwald                         case HFP_CALLSETUP_STATUS_OUTGOING_CALL_SETUP_IN_DIALING_STATE:
1335aa4dd815SMatthias Ringwald                         case HFP_CALLSETUP_STATUS_OUTGOING_CALL_SETUP_IN_ALERTING_STATE:
1336d210d9c4SMatthias Ringwald                             hfp_gsm_handle_event(HFP_AG_TERMINATE_CALL_BY_HF);
1337d0c20769SMatthias Ringwald                             hfp_ag_set_callsetup_indicator();
1338aa4dd815SMatthias Ringwald                             hfp_ag_transfer_callsetup_state();
133960ebb071SMilanka Ringwald                             log_info("AG terminate outgoing call process");
1340202c8a4cSMatthias Ringwald                             break;
1341aa4dd815SMatthias Ringwald                         default:
1342aa4dd815SMatthias Ringwald                             break;
1343aa4dd815SMatthias Ringwald                     }
1344aa4dd815SMatthias Ringwald                     break;
1345aa4dd815SMatthias Ringwald                 case HFP_CALL_STATUS_ACTIVE_OR_HELD_CALL_IS_PRESENT:
1346d210d9c4SMatthias Ringwald                     hfp_gsm_handle_event(HFP_AG_TERMINATE_CALL_BY_HF);
1347d210d9c4SMatthias Ringwald                     hfp_ag_set_call_indicator();
1348aa4dd815SMatthias Ringwald                     hfp_ag_transfer_call_state();
1349a0ffb263SMatthias Ringwald                     hfp_connection->call_state = HFP_CALL_IDLE;
135060ebb071SMilanka Ringwald                     log_info("AG terminate call");
1351aa4dd815SMatthias Ringwald                     break;
1352aa4dd815SMatthias Ringwald             }
1353aa4dd815SMatthias Ringwald             break;
13543deb3ec6SMatthias Ringwald 
1355aa4dd815SMatthias Ringwald         case HFP_AG_TERMINATE_CALL_BY_AG:
1356d0c20769SMatthias Ringwald             switch (hfp_gsm_call_status()){
1357aa4dd815SMatthias Ringwald                 case HFP_CALL_STATUS_NO_HELD_OR_ACTIVE_CALLS:
1358d0c20769SMatthias Ringwald                     switch (hfp_gsm_callsetup_status()){
1359aa4dd815SMatthias Ringwald                         case HFP_CALLSETUP_STATUS_INCOMING_CALL_SETUP_IN_PROGRESS:
1360d210d9c4SMatthias Ringwald                             hfp_gsm_handle_event(HFP_AG_TERMINATE_CALL_BY_AG);
1361d0c20769SMatthias Ringwald                             hfp_ag_set_callsetup_indicator();
1362aa4dd815SMatthias Ringwald                             hfp_ag_trigger_reject_call();
136360ebb071SMilanka Ringwald                             log_info("AG Rejected Incoming call, AG terminate call");
1364aa4dd815SMatthias Ringwald                             break;
1365aa4dd815SMatthias Ringwald                         default:
1366aa4dd815SMatthias Ringwald                             break;
13673deb3ec6SMatthias Ringwald                     }
1368202c8a4cSMatthias Ringwald                     break;
1369aa4dd815SMatthias Ringwald                 case HFP_CALL_STATUS_ACTIVE_OR_HELD_CALL_IS_PRESENT:
1370d210d9c4SMatthias Ringwald                     hfp_gsm_handle_event(HFP_AG_TERMINATE_CALL_BY_AG);
1371d0c20769SMatthias Ringwald                     hfp_ag_set_callsetup_indicator();
1372d210d9c4SMatthias Ringwald                     hfp_ag_set_call_indicator();
1373aa4dd815SMatthias Ringwald                     hfp_ag_trigger_terminate_call();
137460ebb071SMilanka Ringwald                     log_info("AG terminate call");
1375aa4dd815SMatthias Ringwald                     break;
1376aa4dd815SMatthias Ringwald                 default:
13773deb3ec6SMatthias Ringwald                     break;
13783deb3ec6SMatthias Ringwald             }
13793deb3ec6SMatthias Ringwald             break;
1380aa4dd815SMatthias Ringwald         case HFP_AG_CALL_DROPPED:
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()){
1384aa4dd815SMatthias Ringwald                         case HFP_CALLSETUP_STATUS_INCOMING_CALL_SETUP_IN_PROGRESS:
1385aa4dd815SMatthias Ringwald                             hfp_ag_stop_ringing();
138660ebb071SMilanka Ringwald                             log_info("Incoming call interrupted");
1387aa4dd815SMatthias Ringwald                             break;
1388aa4dd815SMatthias Ringwald                         case HFP_CALLSETUP_STATUS_OUTGOING_CALL_SETUP_IN_DIALING_STATE:
1389aa4dd815SMatthias Ringwald                         case HFP_CALLSETUP_STATUS_OUTGOING_CALL_SETUP_IN_ALERTING_STATE:
139060ebb071SMilanka Ringwald                             log_info("Outgoing call interrupted\n");
139160ebb071SMilanka Ringwald                             log_info("AG notify call dropped\n");
1392aa4dd815SMatthias Ringwald                             break;
1393aa4dd815SMatthias Ringwald                         default:
13943deb3ec6SMatthias Ringwald                             break;
13953deb3ec6SMatthias Ringwald                     }
1396d210d9c4SMatthias Ringwald                     hfp_gsm_handle_event(HFP_AG_CALL_DROPPED);
1397d0c20769SMatthias Ringwald                     hfp_ag_set_callsetup_indicator();
1398aa4dd815SMatthias Ringwald                     hfp_ag_transfer_callsetup_state();
1399aa4dd815SMatthias Ringwald                     break;
1400aa4dd815SMatthias Ringwald                 case HFP_CALL_STATUS_ACTIVE_OR_HELD_CALL_IS_PRESENT:
1401ce263fc8SMatthias Ringwald                     if (hfp_ag_response_and_hold_active) {
1402d210d9c4SMatthias Ringwald                         hfp_gsm_handle_event(HFP_AG_CALL_DROPPED);
1403ce263fc8SMatthias Ringwald                         hfp_ag_response_and_hold_state = HFP_RESPONSE_AND_HOLD_HELD_INCOMING_REJECTED;
1404a5bdcda8SMatthias Ringwald                         hfp_ag_send_response_and_hold_state(hfp_ag_response_and_hold_state);
1405ce263fc8SMatthias Ringwald                     }
1406d210d9c4SMatthias Ringwald                     hfp_gsm_handle_event(HFP_AG_CALL_DROPPED);
1407d0c20769SMatthias Ringwald                     hfp_ag_set_callsetup_indicator();
1408d210d9c4SMatthias Ringwald                     hfp_ag_set_call_indicator();
1409aa4dd815SMatthias Ringwald                     hfp_ag_trigger_terminate_call();
141060ebb071SMilanka Ringwald                     log_info("AG notify call dropped");
1411aa4dd815SMatthias Ringwald                     break;
1412aa4dd815SMatthias Ringwald                 default:
1413aa4dd815SMatthias Ringwald                     break;
1414aa4dd815SMatthias Ringwald             }
1415aa4dd815SMatthias Ringwald             break;
1416aa4dd815SMatthias Ringwald 
1417aa4dd815SMatthias Ringwald         case HFP_AG_OUTGOING_CALL_INITIATED:
1418d210d9c4SMatthias Ringwald             // directly reject call if number of free slots is exceeded
1419d210d9c4SMatthias Ringwald             if (!hfp_gsm_call_possible()){
1420a0ffb263SMatthias Ringwald                 hfp_connection->send_error = 1;
1421a0ffb263SMatthias Ringwald                 hfp_run_for_context(hfp_connection);
1422d210d9c4SMatthias Ringwald                 break;
1423d210d9c4SMatthias Ringwald             }
1424a0ffb263SMatthias Ringwald             hfp_gsm_handle_event_with_call_number(HFP_AG_OUTGOING_CALL_INITIATED, (const char *) &hfp_connection->line_buffer[3]);
14259cae807eSMatthias Ringwald 
1426a0ffb263SMatthias Ringwald             hfp_connection->call_state = HFP_CALL_OUTGOING_INITIATED;
142774386ee0SMatthias Ringwald 
1428a0ffb263SMatthias Ringwald             hfp_emit_string_event(hfp_callback, HFP_SUBEVENT_PLACE_CALL_WITH_NUMBER, (const char *) &hfp_connection->line_buffer[3]);
1429aa4dd815SMatthias Ringwald             break;
1430aa4dd815SMatthias Ringwald 
14319cae807eSMatthias Ringwald         case HFP_AG_OUTGOING_REDIAL_INITIATED:{
1432d210d9c4SMatthias Ringwald             // directly reject call if number of free slots is exceeded
1433d210d9c4SMatthias Ringwald             if (!hfp_gsm_call_possible()){
1434a0ffb263SMatthias Ringwald                 hfp_connection->send_error = 1;
1435a0ffb263SMatthias Ringwald                 hfp_run_for_context(hfp_connection);
1436d210d9c4SMatthias Ringwald                 break;
1437d210d9c4SMatthias Ringwald             }
1438d210d9c4SMatthias Ringwald 
143974386ee0SMatthias Ringwald             hfp_gsm_handle_event(HFP_AG_OUTGOING_REDIAL_INITIATED);
1440a0ffb263SMatthias Ringwald             hfp_connection->call_state = HFP_CALL_OUTGOING_INITIATED;
144174386ee0SMatthias Ringwald 
144260ebb071SMilanka Ringwald             log_info("Redial last number");
14439cae807eSMatthias Ringwald             char * last_dialed_number = hfp_gsm_last_dialed_number();
1444aa4dd815SMatthias Ringwald 
14459cae807eSMatthias Ringwald             if (strlen(last_dialed_number) > 0){
144660ebb071SMilanka Ringwald                 log_info("Last number exists: accept call");
14479cae807eSMatthias Ringwald                 hfp_emit_string_event(hfp_callback, HFP_SUBEVENT_PLACE_CALL_WITH_NUMBER, last_dialed_number);
14489cae807eSMatthias Ringwald             } else {
144960ebb071SMilanka Ringwald                 log_info("log_infoLast number missing: reject call");
14509cae807eSMatthias Ringwald                 hfp_ag_outgoing_call_rejected();
14519cae807eSMatthias Ringwald             }
14529cae807eSMatthias Ringwald             break;
14539cae807eSMatthias Ringwald         }
1454aa4dd815SMatthias Ringwald         case HFP_AG_OUTGOING_CALL_REJECTED:
1455a0ffb263SMatthias Ringwald             hfp_connection = hfp_ag_connection_for_call_state(HFP_CALL_OUTGOING_INITIATED);
1456a0ffb263SMatthias Ringwald             if (!hfp_connection){
1457a0ffb263SMatthias Ringwald                 log_info("hfp_ag_call_sm: did not find outgoing hfp_connection in initiated state");
1458aa4dd815SMatthias Ringwald                 break;
1459aa4dd815SMatthias Ringwald             }
1460d210d9c4SMatthias Ringwald 
1461d210d9c4SMatthias Ringwald             hfp_gsm_handle_event(HFP_AG_OUTGOING_CALL_REJECTED);
1462a0ffb263SMatthias Ringwald             hfp_connection->call_state = HFP_CALL_IDLE;
1463a0ffb263SMatthias Ringwald             hfp_connection->send_error = 1;
1464a0ffb263SMatthias Ringwald             hfp_run_for_context(hfp_connection);
1465aa4dd815SMatthias Ringwald             break;
1466aa4dd815SMatthias Ringwald 
1467d210d9c4SMatthias Ringwald         case HFP_AG_OUTGOING_CALL_ACCEPTED:{
1468a0ffb263SMatthias Ringwald             hfp_connection = hfp_ag_connection_for_call_state(HFP_CALL_OUTGOING_INITIATED);
1469a0ffb263SMatthias Ringwald             if (!hfp_connection){
1470a0ffb263SMatthias Ringwald                 log_info("hfp_ag_call_sm: did not find outgoing hfp_connection in initiated state");
1471aa4dd815SMatthias Ringwald                 break;
1472aa4dd815SMatthias Ringwald             }
1473aa4dd815SMatthias Ringwald 
1474a0ffb263SMatthias Ringwald             hfp_connection->ok_pending = 1;
1475a0ffb263SMatthias Ringwald             hfp_connection->call_state = HFP_CALL_OUTGOING_DIALING;
1476aa4dd815SMatthias Ringwald 
1477aa4dd815SMatthias Ringwald             // trigger callsetup to be
1478d0c20769SMatthias Ringwald             int put_call_on_hold = hfp_gsm_call_status() == HFP_CALL_STATUS_ACTIVE_OR_HELD_CALL_IS_PRESENT;
1479d210d9c4SMatthias Ringwald             hfp_gsm_handle_event(HFP_AG_OUTGOING_CALL_ACCEPTED);
1480d210d9c4SMatthias Ringwald 
1481d0c20769SMatthias Ringwald             hfp_ag_set_callsetup_indicator();
1482aa4dd815SMatthias Ringwald             indicator_index = get_ag_indicator_index_for_name("callsetup");
1483a0ffb263SMatthias Ringwald             hfp_connection->ag_indicators_status_update_bitmap = store_bit(hfp_connection->ag_indicators_status_update_bitmap, indicator_index, 1);
1484aa4dd815SMatthias Ringwald 
1485aa4dd815SMatthias Ringwald             // put current call on hold if active
1486d210d9c4SMatthias Ringwald             if (put_call_on_hold){
148760ebb071SMilanka Ringwald                 log_info("AG putting current call on hold for new outgoing calllog_info");
1488d0c20769SMatthias Ringwald                 hfp_ag_set_callheld_indicator();
1489aa4dd815SMatthias Ringwald                 indicator_index = get_ag_indicator_index_for_name("callheld");
1490a0ffb263SMatthias Ringwald                 hfp_ag_transfer_ag_indicators_status_cmd(hfp_connection->rfcomm_cid, &hfp_ag_indicators[indicator_index]);
1491aa4dd815SMatthias Ringwald             }
1492aa4dd815SMatthias Ringwald 
1493aa4dd815SMatthias Ringwald             // start audio if needed
1494d97d752dSMilanka Ringwald             hfp_ag_establish_audio_connection(hfp_connection->acl_handle);
1495aa4dd815SMatthias Ringwald             break;
1496d210d9c4SMatthias Ringwald         }
1497aa4dd815SMatthias Ringwald         case HFP_AG_OUTGOING_CALL_RINGING:
1498a0ffb263SMatthias Ringwald             hfp_connection = hfp_ag_connection_for_call_state(HFP_CALL_OUTGOING_DIALING);
1499a0ffb263SMatthias Ringwald             if (!hfp_connection){
1500a0ffb263SMatthias Ringwald                 log_info("hfp_ag_call_sm: did not find outgoing hfp_connection in dialing state");
1501aa4dd815SMatthias Ringwald                 break;
1502aa4dd815SMatthias Ringwald             }
1503d210d9c4SMatthias Ringwald 
1504d210d9c4SMatthias Ringwald             hfp_gsm_handle_event(HFP_AG_OUTGOING_CALL_RINGING);
1505a0ffb263SMatthias Ringwald             hfp_connection->call_state = HFP_CALL_OUTGOING_RINGING;
1506d0c20769SMatthias Ringwald             hfp_ag_set_callsetup_indicator();
1507aa4dd815SMatthias Ringwald             hfp_ag_transfer_callsetup_state();
1508aa4dd815SMatthias Ringwald             break;
1509aa4dd815SMatthias Ringwald 
1510d210d9c4SMatthias Ringwald         case HFP_AG_OUTGOING_CALL_ESTABLISHED:{
1511aa4dd815SMatthias Ringwald             // get outgoing call
1512a0ffb263SMatthias Ringwald             hfp_connection = hfp_ag_connection_for_call_state(HFP_CALL_OUTGOING_RINGING);
1513a0ffb263SMatthias Ringwald             if (!hfp_connection){
1514a0ffb263SMatthias Ringwald                 hfp_connection = hfp_ag_connection_for_call_state(HFP_CALL_OUTGOING_DIALING);
1515aa4dd815SMatthias Ringwald             }
1516a0ffb263SMatthias Ringwald             if (!hfp_connection){
1517a0ffb263SMatthias Ringwald                 log_info("hfp_ag_call_sm: did not find outgoing hfp_connection");
1518aa4dd815SMatthias Ringwald                 break;
1519aa4dd815SMatthias Ringwald             }
1520d210d9c4SMatthias Ringwald 
1521d0c20769SMatthias 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;
1522d210d9c4SMatthias Ringwald             hfp_gsm_handle_event(HFP_AG_OUTGOING_CALL_ESTABLISHED);
1523a0ffb263SMatthias Ringwald             hfp_connection->call_state = HFP_CALL_ACTIVE;
1524d0c20769SMatthias Ringwald             hfp_ag_set_callsetup_indicator();
1525d210d9c4SMatthias Ringwald             hfp_ag_set_call_indicator();
1526aa4dd815SMatthias Ringwald             hfp_ag_transfer_call_state();
1527aa4dd815SMatthias Ringwald             hfp_ag_transfer_callsetup_state();
1528d210d9c4SMatthias Ringwald             if (CALLHELD_STATUS_CALL_ON_HOLD_AND_NO_ACTIVE_CALLS){
1529d0c20769SMatthias Ringwald                 hfp_ag_set_callheld_indicator();
1530aa4dd815SMatthias Ringwald                 hfp_ag_transfer_callheld_state();
15313deb3ec6SMatthias Ringwald             }
15323deb3ec6SMatthias Ringwald             break;
1533d210d9c4SMatthias Ringwald         }
1534d210d9c4SMatthias Ringwald 
1535d210d9c4SMatthias Ringwald         case HFP_AG_CALL_HOLD_USER_BUSY:
1536d210d9c4SMatthias Ringwald             hfp_gsm_handle_event(HFP_AG_CALL_HOLD_USER_BUSY);
1537d0c20769SMatthias Ringwald             hfp_ag_set_callsetup_indicator();
1538a0ffb263SMatthias Ringwald             hfp_connection->ag_indicators_status_update_bitmap = store_bit(hfp_connection->ag_indicators_status_update_bitmap, callsetup_indicator_index, 1);
1539a0ffb263SMatthias Ringwald             hfp_connection->call_state = HFP_CALL_ACTIVE;
154060ebb071SMilanka Ringwald             log_info("AG: Call Waiting, User Busy");
1541d210d9c4SMatthias Ringwald             break;
1542d210d9c4SMatthias Ringwald 
1543d210d9c4SMatthias Ringwald         case HFP_AG_CALL_HOLD_RELEASE_ACTIVE_ACCEPT_HELD_OR_WAITING_CALL:{
1544d0c20769SMatthias Ringwald             int call_setup_in_progress = hfp_gsm_callsetup_status() != HFP_CALLSETUP_STATUS_NO_CALL_SETUP_IN_PROGRESS;
1545d0c20769SMatthias Ringwald             int call_held = hfp_gsm_callheld_status() != HFP_CALLHELD_STATUS_NO_CALLS_HELD;
1546d210d9c4SMatthias Ringwald 
1547d210d9c4SMatthias Ringwald             // Releases all active calls (if any exist) and accepts the other (held or waiting) call.
1548d0c20769SMatthias Ringwald             if (call_held || call_setup_in_progress){
1549a0ffb263SMatthias Ringwald                 hfp_gsm_handle_event_with_call_index(HFP_AG_CALL_HOLD_RELEASE_ACTIVE_ACCEPT_HELD_OR_WAITING_CALL, hfp_connection->call_index);
1550d0c20769SMatthias Ringwald 
1551d0c20769SMatthias Ringwald             }
1552d0c20769SMatthias Ringwald 
1553d210d9c4SMatthias Ringwald             if (call_setup_in_progress){
155460ebb071SMilanka Ringwald                 log_info("AG: Call Dropped, Accept new call");
1555d0c20769SMatthias Ringwald                 hfp_ag_set_callsetup_indicator();
1556a0ffb263SMatthias Ringwald                 hfp_connection->ag_indicators_status_update_bitmap = store_bit(hfp_connection->ag_indicators_status_update_bitmap, callsetup_indicator_index, 1);
1557d210d9c4SMatthias Ringwald             } else {
155860ebb071SMilanka Ringwald                 log_info("AG: Call Dropped, Resume held call");
1559d210d9c4SMatthias Ringwald             }
1560d210d9c4SMatthias Ringwald             if (call_held){
1561d0c20769SMatthias Ringwald                 hfp_ag_set_callheld_indicator();
1562a0ffb263SMatthias Ringwald                 hfp_connection->ag_indicators_status_update_bitmap = store_bit(hfp_connection->ag_indicators_status_update_bitmap, callheld_indicator_index, 1);
1563d210d9c4SMatthias Ringwald             }
1564d0c20769SMatthias Ringwald 
1565a0ffb263SMatthias Ringwald             hfp_connection->call_state = HFP_CALL_ACTIVE;
1566d210d9c4SMatthias Ringwald             break;
1567d210d9c4SMatthias Ringwald         }
1568d0c20769SMatthias Ringwald 
1569d210d9c4SMatthias Ringwald         case HFP_AG_CALL_HOLD_PARK_ACTIVE_ACCEPT_HELD_OR_WAITING_CALL:{
1570d210d9c4SMatthias Ringwald             // Places all active calls (if any exist) on hold and accepts the other (held or waiting) call.
1571d210d9c4SMatthias Ringwald             // only update if callsetup changed
1572d0c20769SMatthias Ringwald             int call_setup_in_progress = hfp_gsm_callsetup_status() != HFP_CALLSETUP_STATUS_NO_CALL_SETUP_IN_PROGRESS;
1573a0ffb263SMatthias Ringwald             hfp_gsm_handle_event_with_call_index(HFP_AG_CALL_HOLD_PARK_ACTIVE_ACCEPT_HELD_OR_WAITING_CALL, hfp_connection->call_index);
1574d0c20769SMatthias Ringwald 
1575d210d9c4SMatthias Ringwald             if (call_setup_in_progress){
157660ebb071SMilanka Ringwald                 log_info("AG: Call on Hold, Accept new call");
1577d0c20769SMatthias Ringwald                 hfp_ag_set_callsetup_indicator();
1578a0ffb263SMatthias Ringwald                 hfp_connection->ag_indicators_status_update_bitmap = store_bit(hfp_connection->ag_indicators_status_update_bitmap, callsetup_indicator_index, 1);
1579d210d9c4SMatthias Ringwald             } else {
158060ebb071SMilanka Ringwald                 log_info("AG: Swap calls");
1581d210d9c4SMatthias Ringwald             }
1582d0c20769SMatthias Ringwald 
1583d0c20769SMatthias Ringwald             hfp_ag_set_callheld_indicator();
1584d0c20769SMatthias Ringwald             // hfp_ag_set_callheld_state(HFP_CALLHELD_STATUS_CALL_ON_HOLD_OR_SWAPPED);
1585a0ffb263SMatthias Ringwald             hfp_connection->ag_indicators_status_update_bitmap = store_bit(hfp_connection->ag_indicators_status_update_bitmap, callheld_indicator_index, 1);
1586a0ffb263SMatthias Ringwald             hfp_connection->call_state = HFP_CALL_ACTIVE;
1587d210d9c4SMatthias Ringwald             break;
1588d210d9c4SMatthias Ringwald         }
1589d0c20769SMatthias Ringwald 
1590d210d9c4SMatthias Ringwald         case HFP_AG_CALL_HOLD_ADD_HELD_CALL:
1591d210d9c4SMatthias Ringwald             // Adds a held call to the conversation.
1592d0c20769SMatthias Ringwald             if (hfp_gsm_callheld_status() != HFP_CALLHELD_STATUS_NO_CALLS_HELD){
159360ebb071SMilanka Ringwald                 log_info("AG: Join 3-way-call");
1594d210d9c4SMatthias Ringwald                 hfp_gsm_handle_event(HFP_AG_CALL_HOLD_ADD_HELD_CALL);
1595d0c20769SMatthias Ringwald                 hfp_ag_set_callheld_indicator();
1596a0ffb263SMatthias Ringwald                 hfp_connection->ag_indicators_status_update_bitmap = store_bit(hfp_connection->ag_indicators_status_update_bitmap, callheld_indicator_index, 1);
1597a0ffb263SMatthias Ringwald                 hfp_emit_simple_event(hfp_callback, HFP_SUBEVENT_CONFERENCE_CALL);
1598d210d9c4SMatthias Ringwald             }
1599a0ffb263SMatthias Ringwald             hfp_connection->call_state = HFP_CALL_ACTIVE;
1600d210d9c4SMatthias Ringwald             break;
1601d210d9c4SMatthias Ringwald         case HFP_AG_CALL_HOLD_EXIT_AND_JOIN_CALLS:
1602d210d9c4SMatthias Ringwald             // Connects the two calls and disconnects the subscriber from both calls (Explicit Call Transfer)
1603d210d9c4SMatthias Ringwald             hfp_gsm_handle_event(HFP_AG_CALL_HOLD_EXIT_AND_JOIN_CALLS);
160460ebb071SMilanka Ringwald             log_info("AG: Transfer call -> Connect two calls and disconnect");
1605d210d9c4SMatthias Ringwald             hfp_ag_set_call_indicator();
1606d0c20769SMatthias Ringwald             hfp_ag_set_callheld_indicator();
1607a0ffb263SMatthias Ringwald             hfp_connection->ag_indicators_status_update_bitmap = store_bit(hfp_connection->ag_indicators_status_update_bitmap, call_indicator_index, 1);
1608a0ffb263SMatthias Ringwald             hfp_connection->ag_indicators_status_update_bitmap = store_bit(hfp_connection->ag_indicators_status_update_bitmap, callheld_indicator_index, 1);
1609a0ffb263SMatthias Ringwald             hfp_connection->call_state = HFP_CALL_IDLE;
1610d210d9c4SMatthias Ringwald             break;
1611ce263fc8SMatthias Ringwald 
16123deb3ec6SMatthias Ringwald         default:
16133deb3ec6SMatthias Ringwald             break;
16143deb3ec6SMatthias Ringwald     }
1615d210d9c4SMatthias Ringwald 
1616d0c20769SMatthias Ringwald 
16173deb3ec6SMatthias Ringwald }
16183deb3ec6SMatthias Ringwald 
16199cae807eSMatthias Ringwald 
1620a0ffb263SMatthias Ringwald static void hfp_ag_send_call_status(hfp_connection_t * hfp_connection, int call_index){
16219cae807eSMatthias Ringwald     hfp_gsm_call_t * active_call = hfp_gsm_call(call_index);
16229cae807eSMatthias Ringwald     if (!active_call) return;
16239cae807eSMatthias Ringwald 
16249cae807eSMatthias Ringwald     int idx = active_call->index;
16259cae807eSMatthias Ringwald     hfp_enhanced_call_dir_t dir = active_call->direction;
16269cae807eSMatthias Ringwald     hfp_enhanced_call_status_t status = active_call->enhanced_status;
16279cae807eSMatthias Ringwald     hfp_enhanced_call_mode_t mode = active_call->mode;
16289cae807eSMatthias Ringwald     hfp_enhanced_call_mpty_t mpty = active_call->mpty;
16299cae807eSMatthias Ringwald     uint8_t type = active_call->clip_type;
16309cae807eSMatthias Ringwald     char * number = active_call->clip_number;
16319cae807eSMatthias Ringwald 
16329cae807eSMatthias Ringwald     char buffer[100];
16339cae807eSMatthias Ringwald     // TODO: check length of a buffer, to fit the MTU
16349cae807eSMatthias Ringwald     int offset = snprintf(buffer, sizeof(buffer), "\r\n%s: %d,%d,%d,%d,%d", HFP_LIST_CURRENT_CALLS, idx, dir, status, mode, mpty);
16359cae807eSMatthias Ringwald     if (number){
16369cae807eSMatthias Ringwald         offset += snprintf(buffer+offset, sizeof(buffer)-offset, ", \"%s\",%u", number, type);
16379cae807eSMatthias Ringwald     }
16389cae807eSMatthias Ringwald     snprintf(buffer+offset, sizeof(buffer)-offset, "\r\n");
163960ebb071SMilanka 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,
16409cae807eSMatthias Ringwald        mode, mpty, type, number);
1641a0ffb263SMatthias Ringwald     send_str_over_rfcomm(hfp_connection->rfcomm_cid, buffer);
16429cae807eSMatthias Ringwald }
16439cae807eSMatthias Ringwald 
1644a0ffb263SMatthias Ringwald static void hfp_run_for_context(hfp_connection_t *hfp_connection){
1645473ac565SMatthias Ringwald 
1646c79b4cabSMatthias Ringwald     // log_info("hfp_run_for_context %p", hfp_connection);
1647473ac565SMatthias Ringwald 
1648a0ffb263SMatthias Ringwald     if (!hfp_connection) return;
1649473ac565SMatthias Ringwald 
1650724f400dSMatthias Ringwald     if (!hfp_connection->rfcomm_cid) return;
1651473ac565SMatthias Ringwald 
1652e30a6a47SMatthias Ringwald     if (!rfcomm_can_send_packet_now(hfp_connection->rfcomm_cid)) {
1653473ac565SMatthias Ringwald         log_info("hfp_run_for_context: request can send for 0x%02x", hfp_connection->rfcomm_cid);
1654e30a6a47SMatthias Ringwald         rfcomm_request_can_send_now_event(hfp_connection->rfcomm_cid);
1655e30a6a47SMatthias Ringwald         return;
1656e30a6a47SMatthias Ringwald     }
16573deb3ec6SMatthias Ringwald 
1658a0ffb263SMatthias Ringwald     if (hfp_connection->send_status_of_current_calls){
1659a0ffb263SMatthias Ringwald         hfp_connection->ok_pending = 0;
1660a0ffb263SMatthias Ringwald         if (hfp_connection->next_call_index < hfp_gsm_get_number_of_calls()){
1661a0ffb263SMatthias Ringwald             hfp_connection->next_call_index++;
1662a0ffb263SMatthias Ringwald             hfp_ag_send_call_status(hfp_connection, hfp_connection->next_call_index);
16639cae807eSMatthias Ringwald         } else {
1664a0ffb263SMatthias Ringwald             hfp_connection->next_call_index = 0;
1665a0ffb263SMatthias Ringwald             hfp_connection->ok_pending = 1;
1666a0ffb263SMatthias Ringwald             hfp_connection->send_status_of_current_calls = 0;
16679cae807eSMatthias Ringwald         }
1668ce263fc8SMatthias Ringwald         return;
1669ce263fc8SMatthias Ringwald     }
1670ce263fc8SMatthias Ringwald 
1671a0ffb263SMatthias Ringwald     if (hfp_connection->ag_notify_incoming_call_waiting){
1672a0ffb263SMatthias Ringwald         hfp_connection->ag_notify_incoming_call_waiting = 0;
1673a0ffb263SMatthias Ringwald         hfp_ag_send_call_waiting_notification(hfp_connection->rfcomm_cid);
1674aa4dd815SMatthias Ringwald         return;
1675aa4dd815SMatthias Ringwald     }
1676aa4dd815SMatthias Ringwald 
1677a0ffb263SMatthias Ringwald     if (hfp_connection->command == HFP_CMD_UNKNOWN){
1678a0ffb263SMatthias Ringwald         hfp_connection->ok_pending = 0;
1679a0ffb263SMatthias Ringwald         hfp_connection->send_error = 0;
1680a0ffb263SMatthias Ringwald         hfp_connection->command = HFP_CMD_NONE;
1681a0ffb263SMatthias Ringwald         hfp_ag_error(hfp_connection->rfcomm_cid);
1682a0ffb263SMatthias Ringwald         return;
1683a0ffb263SMatthias Ringwald     }
1684a0ffb263SMatthias Ringwald 
1685a0ffb263SMatthias Ringwald     if (hfp_connection->send_error){
1686a0ffb263SMatthias Ringwald         hfp_connection->send_error = 0;
1687a0ffb263SMatthias Ringwald         hfp_connection->command = HFP_CMD_NONE;
1688a0ffb263SMatthias Ringwald         hfp_ag_error(hfp_connection->rfcomm_cid);
1689aa4dd815SMatthias Ringwald         return;
1690aa4dd815SMatthias Ringwald     }
1691aa4dd815SMatthias Ringwald 
1692ce263fc8SMatthias Ringwald     // note: before update AG indicators and ok_pending
1693a0ffb263SMatthias Ringwald     if (hfp_connection->send_response_and_hold_status){
1694a0ffb263SMatthias Ringwald         int status = hfp_connection->send_response_and_hold_status - 1;
1695a0ffb263SMatthias Ringwald         hfp_connection->send_response_and_hold_status = 0;
1696a0ffb263SMatthias Ringwald         hfp_ag_set_response_and_hold(hfp_connection->rfcomm_cid, status);
1697ce263fc8SMatthias Ringwald         return;
1698ce263fc8SMatthias Ringwald     }
1699ce263fc8SMatthias Ringwald 
1700a0ffb263SMatthias Ringwald     if (hfp_connection->ok_pending){
1701a0ffb263SMatthias Ringwald         hfp_connection->ok_pending = 0;
1702a0ffb263SMatthias Ringwald         hfp_connection->command = HFP_CMD_NONE;
1703a0ffb263SMatthias Ringwald         hfp_ag_ok(hfp_connection->rfcomm_cid);
1704ce263fc8SMatthias Ringwald         return;
1705ce263fc8SMatthias Ringwald     }
1706ce263fc8SMatthias Ringwald 
1707aa4dd815SMatthias Ringwald     // update AG indicators
1708a0ffb263SMatthias Ringwald     if (hfp_connection->ag_indicators_status_update_bitmap){
1709aa4dd815SMatthias Ringwald         int i;
1710a0ffb263SMatthias Ringwald         for (i=0;i<hfp_connection->ag_indicators_nr;i++){
1711a0ffb263SMatthias Ringwald             if (get_bit(hfp_connection->ag_indicators_status_update_bitmap, i)){
1712a0ffb263SMatthias Ringwald                 hfp_connection->ag_indicators_status_update_bitmap = store_bit(hfp_connection->ag_indicators_status_update_bitmap, i, 0);
1713a0ffb263SMatthias Ringwald                 if (!hfp_connection->enable_status_update_for_ag_indicators) {
1714ce263fc8SMatthias Ringwald                     log_info("+CMER:3,0,0,0 - not sending update for '%s'", hfp_ag_indicators[i].name);
1715ce263fc8SMatthias Ringwald                     break;
1716ce263fc8SMatthias Ringwald                 }
1717a0ffb263SMatthias Ringwald                 hfp_ag_transfer_ag_indicators_status_cmd(hfp_connection->rfcomm_cid, &hfp_ag_indicators[i]);
1718aa4dd815SMatthias Ringwald                 return;
1719aa4dd815SMatthias Ringwald             }
1720aa4dd815SMatthias Ringwald         }
1721aa4dd815SMatthias Ringwald     }
1722aa4dd815SMatthias Ringwald 
1723a0ffb263SMatthias Ringwald     if (hfp_connection->ag_ring){
1724a0ffb263SMatthias Ringwald         hfp_connection->ag_ring = 0;
1725a0ffb263SMatthias Ringwald         hfp_connection->command = HFP_CMD_NONE;
1726a0ffb263SMatthias Ringwald         hfp_ag_ring(hfp_connection->rfcomm_cid);
1727aa4dd815SMatthias Ringwald         return;
1728aa4dd815SMatthias Ringwald     }
1729aa4dd815SMatthias Ringwald 
1730a0ffb263SMatthias Ringwald     if (hfp_connection->ag_send_clip){
1731a0ffb263SMatthias Ringwald         hfp_connection->ag_send_clip = 0;
1732a0ffb263SMatthias Ringwald         hfp_connection->command = HFP_CMD_NONE;
1733a0ffb263SMatthias Ringwald         hfp_ag_send_clip(hfp_connection->rfcomm_cid);
1734aa4dd815SMatthias Ringwald         return;
1735aa4dd815SMatthias Ringwald     }
1736aa4dd815SMatthias Ringwald 
1737a0ffb263SMatthias Ringwald     if (hfp_connection->send_phone_number_for_voice_tag){
1738a0ffb263SMatthias Ringwald         hfp_connection->send_phone_number_for_voice_tag = 0;
1739a0ffb263SMatthias Ringwald         hfp_connection->command = HFP_CMD_NONE;
1740a0ffb263SMatthias Ringwald         hfp_connection->ok_pending = 1;
1741a0ffb263SMatthias Ringwald         hfp_ag_send_phone_number_for_voice_tag_cmd(hfp_connection->rfcomm_cid);
1742aa4dd815SMatthias Ringwald         return;
1743aa4dd815SMatthias Ringwald     }
1744aa4dd815SMatthias Ringwald 
1745a0ffb263SMatthias Ringwald     if (hfp_connection->send_subscriber_number){
1746a0ffb263SMatthias Ringwald         if (hfp_connection->next_subscriber_number_to_send < subscriber_numbers_count){
1747a0ffb263SMatthias Ringwald             hfp_phone_number_t phone = subscriber_numbers[hfp_connection->next_subscriber_number_to_send++];
1748a0ffb263SMatthias Ringwald             hfp_send_subscriber_number_cmd(hfp_connection->rfcomm_cid, phone.type, phone.number);
1749ce263fc8SMatthias Ringwald         } else {
1750a0ffb263SMatthias Ringwald             hfp_connection->send_subscriber_number = 0;
1751a0ffb263SMatthias Ringwald             hfp_connection->next_subscriber_number_to_send = 0;
1752a0ffb263SMatthias Ringwald             hfp_ag_ok(hfp_connection->rfcomm_cid);
1753ce263fc8SMatthias Ringwald         }
1754a0ffb263SMatthias Ringwald         hfp_connection->command = HFP_CMD_NONE;
1755ce263fc8SMatthias Ringwald     }
1756ce263fc8SMatthias Ringwald 
1757a0ffb263SMatthias Ringwald     if (hfp_connection->send_microphone_gain){
1758a0ffb263SMatthias Ringwald         hfp_connection->send_microphone_gain = 0;
1759a0ffb263SMatthias Ringwald         hfp_connection->command = HFP_CMD_NONE;
1760a0ffb263SMatthias Ringwald         hfp_ag_set_microphone_gain_cmd(hfp_connection->rfcomm_cid, hfp_connection->microphone_gain);
1761aa4dd815SMatthias Ringwald         return;
1762aa4dd815SMatthias Ringwald     }
1763aa4dd815SMatthias Ringwald 
1764a0ffb263SMatthias Ringwald     if (hfp_connection->send_speaker_gain){
1765a0ffb263SMatthias Ringwald         hfp_connection->send_speaker_gain = 0;
1766a0ffb263SMatthias Ringwald         hfp_connection->command = HFP_CMD_NONE;
1767a0ffb263SMatthias Ringwald         hfp_ag_set_speaker_gain_cmd(hfp_connection->rfcomm_cid, hfp_connection->speaker_gain);
17683deb3ec6SMatthias Ringwald         return;
17693deb3ec6SMatthias Ringwald     }
17703deb3ec6SMatthias Ringwald 
1771a0ffb263SMatthias Ringwald     if (hfp_connection->send_ag_status_indicators){
1772a0ffb263SMatthias Ringwald         hfp_connection->send_ag_status_indicators = 0;
1773a0ffb263SMatthias Ringwald         hfp_ag_retrieve_indicators_status_cmd(hfp_connection->rfcomm_cid);
1774ce263fc8SMatthias Ringwald         return;
1775ce263fc8SMatthias Ringwald     }
1776ce263fc8SMatthias Ringwald 
1777a0ffb263SMatthias Ringwald     int done = hfp_ag_run_for_context_service_level_connection(hfp_connection);
1778aa4dd815SMatthias Ringwald     if (!done){
1779a0ffb263SMatthias Ringwald         done = hfp_ag_run_for_context_service_level_connection_queries(hfp_connection);
17803deb3ec6SMatthias Ringwald     }
17813deb3ec6SMatthias Ringwald 
1782aa4dd815SMatthias Ringwald     if (!done){
1783a0ffb263SMatthias Ringwald         done = call_setup_state_machine(hfp_connection);
1784aa4dd815SMatthias Ringwald     }
1785aa4dd815SMatthias Ringwald 
1786aa4dd815SMatthias Ringwald     if (!done){
1787a0ffb263SMatthias Ringwald         done = hfp_ag_run_for_audio_connection(hfp_connection);
1788aa4dd815SMatthias Ringwald     }
17893deb3ec6SMatthias Ringwald 
1790a0ffb263SMatthias Ringwald     if (hfp_connection->command == HFP_CMD_NONE && !done){
1791a0ffb263SMatthias Ringwald         // log_info("hfp_connection->command == HFP_CMD_NONE");
1792a0ffb263SMatthias Ringwald         switch(hfp_connection->state){
17933deb3ec6SMatthias Ringwald             case HFP_W2_DISCONNECT_RFCOMM:
1794a0ffb263SMatthias Ringwald                 hfp_connection->state = HFP_W4_RFCOMM_DISCONNECTED;
1795a0ffb263SMatthias Ringwald                 rfcomm_disconnect(hfp_connection->rfcomm_cid);
17963deb3ec6SMatthias Ringwald                 break;
17973deb3ec6SMatthias Ringwald             default:
17983deb3ec6SMatthias Ringwald                 break;
17993deb3ec6SMatthias Ringwald         }
18003deb3ec6SMatthias Ringwald     }
18013deb3ec6SMatthias Ringwald     if (done){
1802a0ffb263SMatthias Ringwald         hfp_connection->command = HFP_CMD_NONE;
18033deb3ec6SMatthias Ringwald     }
1804473ac565SMatthias Ringwald     //
1805473ac565SMatthias Ringwald     if (done) {
1806473ac565SMatthias Ringwald         rfcomm_request_can_send_now_event(hfp_connection->rfcomm_cid);
1807473ac565SMatthias Ringwald     }
18083deb3ec6SMatthias Ringwald }
1809d68dcce1SMatthias Ringwald 
1810ce263fc8SMatthias Ringwald static hfp_generic_status_indicator_t *get_hf_indicator_by_number(int number){
1811ce263fc8SMatthias Ringwald     int i;
1812a0ffb263SMatthias Ringwald     for (i=0;i< hfp_generic_status_indicators_nr;i++){
1813a0ffb263SMatthias Ringwald         hfp_generic_status_indicator_t * indicator = &hfp_generic_status_indicators[i];
1814ce263fc8SMatthias Ringwald         if (indicator->uuid == number){
1815ce263fc8SMatthias Ringwald             return indicator;
1816ce263fc8SMatthias Ringwald         }
1817ce263fc8SMatthias Ringwald     }
1818ce263fc8SMatthias Ringwald     return NULL;
1819ce263fc8SMatthias Ringwald }
18203deb3ec6SMatthias Ringwald 
1821aa4dd815SMatthias Ringwald static void hfp_handle_rfcomm_data(uint8_t packet_type, uint16_t channel, uint8_t *packet, uint16_t size){
18229ec2630cSMatthias Ringwald     UNUSED(packet_type);
18239ec2630cSMatthias Ringwald 
1824a0ffb263SMatthias Ringwald     hfp_connection_t * hfp_connection = get_hfp_connection_context_for_rfcomm_cid(channel);
1825a0ffb263SMatthias Ringwald     if (!hfp_connection) return;
18261e35c04dSMatthias Ringwald 
18271e35c04dSMatthias Ringwald     char last_char = packet[size-1];
18281e35c04dSMatthias Ringwald     packet[size-1] = 0;
18291e35c04dSMatthias Ringwald     log_info("HFP_RX %s", packet);
18301e35c04dSMatthias Ringwald     packet[size-1] = last_char;
18311e35c04dSMatthias Ringwald 
18323deb3ec6SMatthias Ringwald     int pos;
18333deb3ec6SMatthias Ringwald     for (pos = 0; pos < size ; pos++){
1834a0ffb263SMatthias Ringwald         hfp_parse(hfp_connection, packet[pos], 0);
1835aa4dd815SMatthias Ringwald     }
1836ce263fc8SMatthias Ringwald     hfp_generic_status_indicator_t * indicator;
1837ce263fc8SMatthias Ringwald     int value;
1838a0ffb263SMatthias Ringwald     switch(hfp_connection->command){
1839ce263fc8SMatthias Ringwald         case HFP_CMD_RESPONSE_AND_HOLD_QUERY:
1840ce263fc8SMatthias Ringwald             if (hfp_ag_response_and_hold_active){
1841a0ffb263SMatthias Ringwald                 hfp_connection->send_response_and_hold_status = HFP_RESPONSE_AND_HOLD_INCOMING_ON_HOLD + 1;
1842ce263fc8SMatthias Ringwald             }
1843a0ffb263SMatthias Ringwald             hfp_connection->ok_pending = 1;
1844ce263fc8SMatthias Ringwald             break;
1845ce263fc8SMatthias Ringwald         case HFP_CMD_RESPONSE_AND_HOLD_COMMAND:
18462308e108SMilanka Ringwald             value = btstack_atoi((char *)&hfp_connection->line_buffer[0]);
184760ebb071SMilanka Ringwald             log_info("HF Response and Hold: %u", value);
1848ce263fc8SMatthias Ringwald             switch(value){
1849ce263fc8SMatthias Ringwald                 case HFP_RESPONSE_AND_HOLD_INCOMING_ON_HOLD:
1850a0ffb263SMatthias Ringwald                     hfp_ag_call_sm(HFP_AG_RESPONSE_AND_HOLD_ACCEPT_INCOMING_CALL_BY_HF, hfp_connection);
1851ce263fc8SMatthias Ringwald                     break;
1852ce263fc8SMatthias Ringwald                 case HFP_RESPONSE_AND_HOLD_HELD_INCOMING_ACCEPTED:
1853a0ffb263SMatthias Ringwald                     hfp_ag_call_sm(HFP_AG_RESPONSE_AND_HOLD_ACCEPT_HELD_CALL_BY_HF, hfp_connection);
1854ce263fc8SMatthias Ringwald                     break;
1855ce263fc8SMatthias Ringwald                 case HFP_RESPONSE_AND_HOLD_HELD_INCOMING_REJECTED:
1856a0ffb263SMatthias Ringwald                     hfp_ag_call_sm(HFP_AG_RESPONSE_AND_HOLD_REJECT_HELD_CALL_BY_HF, hfp_connection);
1857ce263fc8SMatthias Ringwald                     break;
1858ce263fc8SMatthias Ringwald                 default:
1859ce263fc8SMatthias Ringwald                     break;
1860ce263fc8SMatthias Ringwald             }
1861a0ffb263SMatthias Ringwald             hfp_connection->ok_pending = 1;
1862ce263fc8SMatthias Ringwald             break;
1863ce263fc8SMatthias Ringwald         case HFP_CMD_HF_INDICATOR_STATUS:
1864a0ffb263SMatthias Ringwald             hfp_connection->command = HFP_CMD_NONE;
1865ce263fc8SMatthias Ringwald             // find indicator by assigned number
1866a0ffb263SMatthias Ringwald             indicator = get_hf_indicator_by_number(hfp_connection->parser_indicator_index);
1867ce263fc8SMatthias Ringwald             if (!indicator){
1868a0ffb263SMatthias Ringwald                 hfp_connection->send_error = 1;
1869ce263fc8SMatthias Ringwald                 break;
1870ce263fc8SMatthias Ringwald             }
18712308e108SMilanka Ringwald             value = btstack_atoi((char *)&hfp_connection->line_buffer[0]);
1872ce263fc8SMatthias Ringwald             switch (indicator->uuid){
1873ce263fc8SMatthias Ringwald                 case 1: // enhanced security
1874ce263fc8SMatthias Ringwald                     if (value > 1) {
1875a0ffb263SMatthias Ringwald                         hfp_connection->send_error = 1;
1876ce263fc8SMatthias Ringwald                         return;
1877ce263fc8SMatthias Ringwald                     }
187860ebb071SMilanka Ringwald                     log_info("HF Indicator 'enhanced security' set to %u", value);
1879ce263fc8SMatthias Ringwald                     break;
1880ce263fc8SMatthias Ringwald                 case 2: // battery level
1881ce263fc8SMatthias Ringwald                     if (value > 100){
1882a0ffb263SMatthias Ringwald                         hfp_connection->send_error = 1;
1883ce263fc8SMatthias Ringwald                         return;
1884ce263fc8SMatthias Ringwald                     }
188560ebb071SMilanka Ringwald                     log_info("HF Indicator 'battery' set to %u", value);
1886ce263fc8SMatthias Ringwald                     break;
1887ce263fc8SMatthias Ringwald                 default:
188860ebb071SMilanka Ringwald                     log_info("HF Indicator unknown set to %u", value);
1889ce263fc8SMatthias Ringwald                     break;
1890ce263fc8SMatthias Ringwald             }
1891a0ffb263SMatthias Ringwald             hfp_connection->ok_pending = 1;
1892ce263fc8SMatthias Ringwald             break;
1893ce263fc8SMatthias Ringwald         case HFP_CMD_RETRIEVE_AG_INDICATORS_STATUS:
1894ce263fc8SMatthias Ringwald             // expected by SLC state machine
1895a0ffb263SMatthias Ringwald             if (hfp_connection->state < HFP_SERVICE_LEVEL_CONNECTION_ESTABLISHED) break;
1896a0ffb263SMatthias Ringwald             hfp_connection->send_ag_indicators_segment = 0;
1897a0ffb263SMatthias Ringwald             hfp_connection->send_ag_status_indicators = 1;
1898ce263fc8SMatthias Ringwald             break;
1899ce263fc8SMatthias Ringwald         case HFP_CMD_LIST_CURRENT_CALLS:
1900a0ffb263SMatthias Ringwald             hfp_connection->command = HFP_CMD_NONE;
1901a0ffb263SMatthias Ringwald             hfp_connection->next_call_index = 0;
1902a0ffb263SMatthias Ringwald             hfp_connection->send_status_of_current_calls = 1;
1903ce263fc8SMatthias Ringwald             break;
1904ce263fc8SMatthias Ringwald         case HFP_CMD_GET_SUBSCRIBER_NUMBER_INFORMATION:
1905ce263fc8SMatthias Ringwald             if (subscriber_numbers_count == 0){
1906a0ffb263SMatthias Ringwald                 hfp_ag_ok(hfp_connection->rfcomm_cid);
1907ce263fc8SMatthias Ringwald                 break;
1908ce263fc8SMatthias Ringwald             }
1909a0ffb263SMatthias Ringwald             hfp_connection->next_subscriber_number_to_send = 0;
1910a0ffb263SMatthias Ringwald             hfp_connection->send_subscriber_number = 1;
1911ce263fc8SMatthias Ringwald             break;
1912c1797c7dSMatthias Ringwald         case HFP_CMD_TRANSMIT_DTMF_CODES:
1913a0ffb263SMatthias Ringwald             hfp_connection->command = HFP_CMD_NONE;
1914a0ffb263SMatthias Ringwald             hfp_emit_string_event(hfp_callback, HFP_SUBEVENT_TRANSMIT_DTMF_CODES, (const char *) &hfp_connection->line_buffer[0]);
1915c1797c7dSMatthias Ringwald             break;
1916aa4dd815SMatthias Ringwald         case HFP_CMD_HF_REQUEST_PHONE_NUMBER:
1917a0ffb263SMatthias Ringwald             hfp_connection->command = HFP_CMD_NONE;
1918a0ffb263SMatthias Ringwald             hfp_emit_simple_event(hfp_callback, HFP_SUBEVENT_ATTACH_NUMBER_TO_VOICE_TAG);
1919aa4dd815SMatthias Ringwald             break;
1920aa4dd815SMatthias Ringwald         case HFP_CMD_TURN_OFF_EC_AND_NR:
1921a0ffb263SMatthias Ringwald             hfp_connection->command = HFP_CMD_NONE;
1922aa4dd815SMatthias Ringwald             if (get_bit(hfp_supported_features, HFP_AGSF_EC_NR_FUNCTION)){
1923a0ffb263SMatthias Ringwald                 hfp_connection->ok_pending = 1;
1924a0ffb263SMatthias Ringwald                 hfp_supported_features = store_bit(hfp_supported_features, HFP_AGSF_EC_NR_FUNCTION, hfp_connection->ag_echo_and_noise_reduction);
192560ebb071SMilanka Ringwald                 log_info("AG: EC/NR = %u", hfp_connection->ag_echo_and_noise_reduction);
1926aa4dd815SMatthias Ringwald             } else {
1927a0ffb263SMatthias Ringwald                 hfp_connection->send_error = 1;
1928aa4dd815SMatthias Ringwald             }
1929aa4dd815SMatthias Ringwald             break;
1930aa4dd815SMatthias Ringwald         case HFP_CMD_CALL_ANSWERED:
1931a0ffb263SMatthias Ringwald             hfp_connection->command = HFP_CMD_NONE;
193260ebb071SMilanka Ringwald             log_info("HFP: ATA");
1933a0ffb263SMatthias Ringwald             hfp_ag_call_sm(HFP_AG_INCOMING_CALL_ACCEPTED_BY_HF, hfp_connection);
1934aa4dd815SMatthias Ringwald             break;
1935aa4dd815SMatthias Ringwald         case HFP_CMD_HANG_UP_CALL:
1936a0ffb263SMatthias Ringwald             hfp_connection->command = HFP_CMD_NONE;
1937a0ffb263SMatthias Ringwald             hfp_connection->ok_pending = 1;
1938a0ffb263SMatthias Ringwald             hfp_ag_call_sm(HFP_AG_TERMINATE_CALL_BY_HF, hfp_connection);
1939aa4dd815SMatthias Ringwald             break;
1940aa4dd815SMatthias Ringwald         case HFP_CMD_CALL_HOLD: {
1941aa4dd815SMatthias Ringwald             // TODO: fully implement this
1942a0ffb263SMatthias Ringwald             log_error("HFP: unhandled call hold type %c", hfp_connection->line_buffer[0]);
1943a0ffb263SMatthias Ringwald             hfp_connection->command = HFP_CMD_NONE;
1944a0ffb263SMatthias Ringwald             hfp_connection->ok_pending = 1;
1945a0ffb263SMatthias Ringwald             hfp_connection->call_index = 0;
1946d0c20769SMatthias Ringwald 
1947a0ffb263SMatthias Ringwald             if (hfp_connection->line_buffer[1] != '\0'){
19482308e108SMilanka Ringwald                 hfp_connection->call_index = btstack_atoi((char *)&hfp_connection->line_buffer[1]);
1949d0c20769SMatthias Ringwald             }
1950d210d9c4SMatthias Ringwald 
1951a0ffb263SMatthias Ringwald             switch (hfp_connection->line_buffer[0]){
1952aa4dd815SMatthias Ringwald                 case '0':
1953d0c20769SMatthias Ringwald                     // Releases all held calls or sets User Determined User Busy (UDUB) for a waiting call.
1954a0ffb263SMatthias Ringwald                     hfp_ag_call_sm(HFP_AG_CALL_HOLD_USER_BUSY, hfp_connection);
1955aa4dd815SMatthias Ringwald                     break;
1956aa4dd815SMatthias Ringwald                 case '1':
1957d0c20769SMatthias Ringwald                     // Releases all active calls (if any exist) and accepts the other (held or waiting) call.
1958d0c20769SMatthias Ringwald                     // Where both a held and a waiting call exist, the above procedures shall apply to the
1959d0c20769SMatthias Ringwald                     // waiting call (i.e., not to the held call) in conflicting situation.
1960a0ffb263SMatthias Ringwald                     hfp_ag_call_sm(HFP_AG_CALL_HOLD_RELEASE_ACTIVE_ACCEPT_HELD_OR_WAITING_CALL, hfp_connection);
1961aa4dd815SMatthias Ringwald                     break;
1962aa4dd815SMatthias Ringwald                 case '2':
1963d0c20769SMatthias Ringwald                     // Places all active calls (if any exist) on hold and accepts the other (held or waiting) call.
1964d0c20769SMatthias Ringwald                     // Where both a held and a waiting call exist, the above procedures shall apply to the
1965d0c20769SMatthias Ringwald                     // waiting call (i.e., not to the held call) in conflicting situation.
1966a0ffb263SMatthias Ringwald                     hfp_ag_call_sm(HFP_AG_CALL_HOLD_PARK_ACTIVE_ACCEPT_HELD_OR_WAITING_CALL, hfp_connection);
1967aa4dd815SMatthias Ringwald                     break;
1968aa4dd815SMatthias Ringwald                 case '3':
1969d0c20769SMatthias Ringwald                     // Adds a held call to the conversation.
1970a0ffb263SMatthias Ringwald                     hfp_ag_call_sm(HFP_AG_CALL_HOLD_ADD_HELD_CALL, hfp_connection);
1971aa4dd815SMatthias Ringwald                     break;
1972aa4dd815SMatthias Ringwald                 case '4':
1973d0c20769SMatthias Ringwald                     // Connects the two calls and disconnects the subscriber from both calls (Explicit Call Transfer).
1974a0ffb263SMatthias Ringwald                     hfp_ag_call_sm(HFP_AG_CALL_HOLD_EXIT_AND_JOIN_CALLS, hfp_connection);
1975aa4dd815SMatthias Ringwald                     break;
1976aa4dd815SMatthias Ringwald                 default:
1977aa4dd815SMatthias Ringwald                     break;
1978aa4dd815SMatthias Ringwald             }
1979aa4dd815SMatthias Ringwald             break;
1980aa4dd815SMatthias Ringwald         }
1981aa4dd815SMatthias Ringwald         case HFP_CMD_CALL_PHONE_NUMBER:
1982a0ffb263SMatthias Ringwald             hfp_connection->command = HFP_CMD_NONE;
1983a0ffb263SMatthias Ringwald             hfp_ag_call_sm(HFP_AG_OUTGOING_CALL_INITIATED, hfp_connection);
1984aa4dd815SMatthias Ringwald             break;
1985aa4dd815SMatthias Ringwald         case HFP_CMD_REDIAL_LAST_NUMBER:
1986a0ffb263SMatthias Ringwald             hfp_connection->command = HFP_CMD_NONE;
1987a0ffb263SMatthias Ringwald             hfp_ag_call_sm(HFP_AG_OUTGOING_REDIAL_INITIATED, hfp_connection);
1988aa4dd815SMatthias Ringwald             break;
1989aa4dd815SMatthias Ringwald         case HFP_CMD_ENABLE_CLIP:
1990a0ffb263SMatthias Ringwald             hfp_connection->command = HFP_CMD_NONE;
1991a0ffb263SMatthias Ringwald             hfp_connection->clip_enabled = hfp_connection->line_buffer[8] != '0';
1992a0ffb263SMatthias Ringwald             log_info("hfp: clip set, now: %u", hfp_connection->clip_enabled);
1993a0ffb263SMatthias Ringwald             hfp_connection->ok_pending = 1;
1994aa4dd815SMatthias Ringwald             break;
1995aa4dd815SMatthias Ringwald         case HFP_CMD_ENABLE_CALL_WAITING_NOTIFICATION:
1996a0ffb263SMatthias Ringwald             hfp_connection->command = HFP_CMD_NONE;
1997a0ffb263SMatthias Ringwald             hfp_connection->call_waiting_notification_enabled = hfp_connection->line_buffer[8] != '0';
1998a0ffb263SMatthias Ringwald             log_info("hfp: call waiting notification set, now: %u", hfp_connection->call_waiting_notification_enabled);
1999a0ffb263SMatthias Ringwald             hfp_connection->ok_pending = 1;
2000aa4dd815SMatthias Ringwald             break;
2001aa4dd815SMatthias Ringwald         case HFP_CMD_SET_SPEAKER_GAIN:
2002a0ffb263SMatthias Ringwald             hfp_connection->command = HFP_CMD_NONE;
2003a0ffb263SMatthias Ringwald             hfp_connection->ok_pending = 1;
200460ebb071SMilanka Ringwald             log_info("HF speaker gain = %u", hfp_connection->speaker_gain);
2005aa4dd815SMatthias Ringwald             break;
2006aa4dd815SMatthias Ringwald         case HFP_CMD_SET_MICROPHONE_GAIN:
2007a0ffb263SMatthias Ringwald             hfp_connection->command = HFP_CMD_NONE;
2008a0ffb263SMatthias Ringwald             hfp_connection->ok_pending = 1;
200960ebb071SMilanka Ringwald             log_info("HF microphone gain = %u", hfp_connection->microphone_gain);
2010aa4dd815SMatthias Ringwald             break;
2011aa4dd815SMatthias Ringwald         default:
2012aa4dd815SMatthias Ringwald             break;
20133deb3ec6SMatthias Ringwald     }
20143deb3ec6SMatthias Ringwald }
20153deb3ec6SMatthias Ringwald 
2016aa4dd815SMatthias Ringwald static void hfp_run(void){
2017d63c37a1SMatthias Ringwald     btstack_linked_list_iterator_t it;
2018d63c37a1SMatthias Ringwald     btstack_linked_list_iterator_init(&it, hfp_get_connections());
2019d63c37a1SMatthias Ringwald     while (btstack_linked_list_iterator_has_next(&it)){
2020d63c37a1SMatthias Ringwald         hfp_connection_t * hfp_connection = (hfp_connection_t *)btstack_linked_list_iterator_next(&it);
2021a0ffb263SMatthias Ringwald         hfp_run_for_context(hfp_connection);
20223deb3ec6SMatthias Ringwald     }
20233deb3ec6SMatthias Ringwald }
20243deb3ec6SMatthias Ringwald 
2025ffbf8201SMatthias Ringwald static void packet_handler(uint8_t packet_type, uint16_t channel, uint8_t *packet, uint16_t size){
20263deb3ec6SMatthias Ringwald     switch (packet_type){
20273deb3ec6SMatthias Ringwald         case RFCOMM_DATA_PACKET:
2028aa4dd815SMatthias Ringwald             hfp_handle_rfcomm_data(packet_type, channel, packet, size);
20293deb3ec6SMatthias Ringwald             break;
20303deb3ec6SMatthias Ringwald         case HCI_EVENT_PACKET:
2031e30a6a47SMatthias Ringwald             if (packet[0] == RFCOMM_EVENT_CAN_SEND_NOW){
2032e30a6a47SMatthias Ringwald                 uint16_t rfcomm_cid = rfcomm_event_can_send_now_get_rfcomm_cid(packet);
2033e30a6a47SMatthias Ringwald                 hfp_run_for_context(get_hfp_connection_context_for_rfcomm_cid(rfcomm_cid));
2034e30a6a47SMatthias Ringwald                 return;
2035e30a6a47SMatthias Ringwald             }
2036e30a6a47SMatthias Ringwald             hfp_handle_hci_event(packet_type, channel, packet, size);
2037aa4dd815SMatthias Ringwald             break;
20383deb3ec6SMatthias Ringwald         default:
20393deb3ec6SMatthias Ringwald             break;
20403deb3ec6SMatthias Ringwald     }
20413deb3ec6SMatthias Ringwald 
20423deb3ec6SMatthias Ringwald     hfp_run();
20433deb3ec6SMatthias Ringwald }
20443deb3ec6SMatthias Ringwald 
20451e35c04dSMatthias Ringwald 
2046a0ffb263SMatthias Ringwald void hfp_ag_init_codecs(int codecs_nr, uint8_t * codecs){
20473deb3ec6SMatthias Ringwald     if (codecs_nr > HFP_MAX_NUM_CODECS){
20483deb3ec6SMatthias Ringwald         log_error("hfp_init: codecs_nr (%d) > HFP_MAX_NUM_CODECS (%d)", codecs_nr, HFP_MAX_NUM_CODECS);
20493deb3ec6SMatthias Ringwald         return;
20503deb3ec6SMatthias Ringwald     }
20513deb3ec6SMatthias Ringwald     int i;
2052a0ffb263SMatthias Ringwald     hfp_codecs_nr = codecs_nr;
20533deb3ec6SMatthias Ringwald     for (i=0; i < codecs_nr; i++){
20543deb3ec6SMatthias Ringwald         hfp_codecs[i] = codecs[i];
20553deb3ec6SMatthias Ringwald     }
2056a0ffb263SMatthias Ringwald }
20573deb3ec6SMatthias Ringwald 
2058a0ffb263SMatthias Ringwald void hfp_ag_init_supported_features(uint32_t supported_features){
2059a0ffb263SMatthias Ringwald     hfp_supported_features = supported_features;
2060a0ffb263SMatthias Ringwald }
20613deb3ec6SMatthias Ringwald 
2062a0ffb263SMatthias Ringwald void hfp_ag_init_ag_indicators(int ag_indicators_nr, hfp_ag_indicator_t * ag_indicators){
2063a0ffb263SMatthias Ringwald     hfp_ag_indicators_nr = ag_indicators_nr;
2064a0ffb263SMatthias Ringwald     memcpy(hfp_ag_indicators, ag_indicators, ag_indicators_nr * sizeof(hfp_ag_indicator_t));
2065a0ffb263SMatthias Ringwald }
20663deb3ec6SMatthias Ringwald 
2067a0ffb263SMatthias Ringwald void hfp_ag_init_hf_indicators(int hf_indicators_nr, hfp_generic_status_indicator_t * hf_indicators){
2068a0ffb263SMatthias Ringwald     if (hf_indicators_nr > HFP_MAX_NUM_HF_INDICATORS) return;
2069a0ffb263SMatthias Ringwald     hfp_generic_status_indicators_nr = hf_indicators_nr;
2070a0ffb263SMatthias Ringwald     memcpy(hfp_generic_status_indicators, hf_indicators, hf_indicators_nr * sizeof(hfp_generic_status_indicator_t));
2071a0ffb263SMatthias Ringwald }
2072a0ffb263SMatthias Ringwald 
2073a0ffb263SMatthias Ringwald void hfp_ag_init_call_hold_services(int call_hold_services_nr, const char * call_hold_services[]){
20743deb3ec6SMatthias Ringwald     hfp_ag_call_hold_services_nr = call_hold_services_nr;
20753deb3ec6SMatthias Ringwald     memcpy(hfp_ag_call_hold_services, call_hold_services, call_hold_services_nr * sizeof(char *));
2076a0ffb263SMatthias Ringwald }
2077a0ffb263SMatthias Ringwald 
2078a0ffb263SMatthias Ringwald 
2079a0ffb263SMatthias Ringwald void hfp_ag_init(uint16_t rfcomm_channel_nr){
2080d63c37a1SMatthias Ringwald     // register for HCI events
2081d63c37a1SMatthias Ringwald     hci_event_callback_registration.callback = &packet_handler;
2082d63c37a1SMatthias Ringwald     hci_add_event_handler(&hci_event_callback_registration);
2083d63c37a1SMatthias Ringwald 
2084d68dcce1SMatthias Ringwald     rfcomm_register_service(&packet_handler, rfcomm_channel_nr, 0xffff);
2085aa4dd815SMatthias Ringwald 
2086d210d9c4SMatthias Ringwald     hfp_ag_response_and_hold_active = 0;
2087d210d9c4SMatthias Ringwald     subscriber_numbers = NULL;
2088d210d9c4SMatthias Ringwald     subscriber_numbers_count = 0;
2089d210d9c4SMatthias Ringwald 
2090d68dcce1SMatthias Ringwald     hfp_set_packet_handler_for_rfcomm_connections(&packet_handler);
2091d68dcce1SMatthias Ringwald 
2092d210d9c4SMatthias Ringwald     hfp_gsm_init();
20933deb3ec6SMatthias Ringwald }
20943deb3ec6SMatthias Ringwald 
20953deb3ec6SMatthias Ringwald void hfp_ag_establish_service_level_connection(bd_addr_t bd_addr){
20963deb3ec6SMatthias Ringwald     hfp_establish_service_level_connection(bd_addr, SDP_Handsfree);
20973deb3ec6SMatthias Ringwald }
20983deb3ec6SMatthias Ringwald 
2099d97d752dSMilanka Ringwald void hfp_ag_release_service_level_connection(hci_con_handle_t acl_handle){
2100d97d752dSMilanka Ringwald     hfp_connection_t * hfp_connection = get_hfp_connection_context_for_acl_handle(acl_handle);
2101a33eb0c4SMilanka Ringwald     if (!hfp_connection){
2102a33eb0c4SMilanka Ringwald         log_error("HFP AG: ACL connection 0x%2x is not found.", acl_handle);
2103a33eb0c4SMilanka Ringwald         return;
2104a33eb0c4SMilanka Ringwald     }
2105a0ffb263SMatthias Ringwald     hfp_release_service_level_connection(hfp_connection);
2106a0ffb263SMatthias Ringwald     hfp_run_for_context(hfp_connection);
21073deb3ec6SMatthias Ringwald }
21083deb3ec6SMatthias Ringwald 
2109d97d752dSMilanka Ringwald void hfp_ag_report_extended_audio_gateway_error_result_code(hci_con_handle_t acl_handle, hfp_cme_error_t error){
2110d97d752dSMilanka Ringwald     hfp_connection_t * hfp_connection = get_hfp_connection_context_for_acl_handle(acl_handle);
2111a0ffb263SMatthias Ringwald     if (!hfp_connection){
2112a33eb0c4SMilanka Ringwald         log_error("HFP AG: ACL connection 0x%2x is not found.", acl_handle);
21133deb3ec6SMatthias Ringwald         return;
21143deb3ec6SMatthias Ringwald     }
2115a0ffb263SMatthias Ringwald     hfp_connection->extended_audio_gateway_error = 0;
2116a0ffb263SMatthias Ringwald     if (!hfp_connection->enable_extended_audio_gateway_error_report){
21173deb3ec6SMatthias Ringwald         return;
21183deb3ec6SMatthias Ringwald     }
2119a0ffb263SMatthias Ringwald     hfp_connection->extended_audio_gateway_error = error;
2120a0ffb263SMatthias Ringwald     hfp_run_for_context(hfp_connection);
21213deb3ec6SMatthias Ringwald }
21223deb3ec6SMatthias Ringwald 
2123a0ffb263SMatthias Ringwald static void hfp_ag_setup_audio_connection(hfp_connection_t * hfp_connection){
2124a0ffb263SMatthias Ringwald     if (hfp_connection->state == HFP_AUDIO_CONNECTION_ESTABLISHED) return;
2125a0ffb263SMatthias Ringwald     if (hfp_connection->state >= HFP_W2_DISCONNECT_SCO) return;
21263deb3ec6SMatthias Ringwald 
2127a0ffb263SMatthias Ringwald     hfp_connection->establish_audio_connection = 1;
2128aa4dd815SMatthias Ringwald 
2129a0ffb263SMatthias Ringwald     if (!has_codec_negotiation_feature(hfp_connection)){
2130d6ff09e1SMatthias Ringwald         log_info("hfp_ag_establish_audio_connection - no codec negotiation feature, using CVSD");
2131d6ff09e1SMatthias Ringwald         hfp_connection->negotiated_codec = HFP_CODEC_CVSD;
2132a0ffb263SMatthias Ringwald         hfp_connection->codecs_state = HFP_CODECS_EXCHANGED;
21337522e673SMatthias Ringwald         // now, pick link settings
21347522e673SMatthias Ringwald         hfp_init_link_settings(hfp_connection);
21353deb3ec6SMatthias Ringwald     }
2136aa4dd815SMatthias Ringwald 
2137a0ffb263SMatthias Ringwald     switch (hfp_connection->codecs_state){
2138aa4dd815SMatthias Ringwald         case HFP_CODECS_IDLE:
2139aa4dd815SMatthias Ringwald         case HFP_CODECS_RECEIVED_LIST:
2140aa4dd815SMatthias Ringwald         case HFP_CODECS_AG_RESEND_COMMON_CODEC:
2141aa4dd815SMatthias Ringwald         case HFP_CODECS_ERROR:
2142a0ffb263SMatthias Ringwald             hfp_connection->command = HFP_CMD_AG_SEND_COMMON_CODEC;
2143aa4dd815SMatthias Ringwald             break;
2144aa4dd815SMatthias Ringwald         default:
2145aa4dd815SMatthias Ringwald             break;
2146aa4dd815SMatthias Ringwald     }
2147aa4dd815SMatthias Ringwald }
2148aa4dd815SMatthias Ringwald 
2149d97d752dSMilanka Ringwald void hfp_ag_establish_audio_connection(hci_con_handle_t acl_handle){
2150d97d752dSMilanka Ringwald     hfp_connection_t * hfp_connection = get_hfp_connection_context_for_acl_handle(acl_handle);
2151a33eb0c4SMilanka Ringwald     if (!hfp_connection){
2152a33eb0c4SMilanka Ringwald         log_error("HFP AG: ACL connection 0x%2x is not found.", acl_handle);
2153a33eb0c4SMilanka Ringwald         return;
2154a33eb0c4SMilanka Ringwald     }
2155a0ffb263SMatthias Ringwald     hfp_connection->establish_audio_connection = 0;
2156a0ffb263SMatthias Ringwald     hfp_ag_setup_audio_connection(hfp_connection);
2157a0ffb263SMatthias Ringwald     hfp_run_for_context(hfp_connection);
21583deb3ec6SMatthias Ringwald }
21593deb3ec6SMatthias Ringwald 
2160d97d752dSMilanka Ringwald void hfp_ag_release_audio_connection(hci_con_handle_t acl_handle){
2161d97d752dSMilanka Ringwald     hfp_connection_t * hfp_connection = get_hfp_connection_context_for_acl_handle(acl_handle);
2162a33eb0c4SMilanka Ringwald     if (!hfp_connection){
2163a33eb0c4SMilanka Ringwald         log_error("HFP AG: ACL connection 0x%2x is not found.", acl_handle);
2164a33eb0c4SMilanka Ringwald         return;
2165a33eb0c4SMilanka Ringwald     }
2166a0ffb263SMatthias Ringwald     hfp_release_audio_connection(hfp_connection);
2167a0ffb263SMatthias Ringwald     hfp_run_for_context(hfp_connection);
21683deb3ec6SMatthias Ringwald }
2169aa4dd815SMatthias Ringwald 
2170aa4dd815SMatthias Ringwald /**
2171aa4dd815SMatthias Ringwald  * @brief Enable in-band ring tone
2172aa4dd815SMatthias Ringwald  */
2173aa4dd815SMatthias Ringwald void hfp_ag_set_use_in_band_ring_tone(int use_in_band_ring_tone){
2174aa4dd815SMatthias Ringwald     if (get_bit(hfp_supported_features, HFP_AGSF_IN_BAND_RING_TONE) == use_in_band_ring_tone){
2175aa4dd815SMatthias Ringwald         return;
2176aa4dd815SMatthias Ringwald     }
2177aa4dd815SMatthias Ringwald     hfp_supported_features = store_bit(hfp_supported_features, HFP_AGSF_IN_BAND_RING_TONE, use_in_band_ring_tone);
2178aa4dd815SMatthias Ringwald 
2179665d90f2SMatthias Ringwald     btstack_linked_list_iterator_t it;
2180665d90f2SMatthias Ringwald     btstack_linked_list_iterator_init(&it, hfp_get_connections());
2181665d90f2SMatthias Ringwald     while (btstack_linked_list_iterator_has_next(&it)){
2182a0ffb263SMatthias Ringwald         hfp_connection_t * hfp_connection = (hfp_connection_t *)btstack_linked_list_iterator_next(&it);
2183a0ffb263SMatthias Ringwald         hfp_connection->command = HFP_CMD_CHANGE_IN_BAND_RING_TONE_SETTING;
2184a0ffb263SMatthias Ringwald         hfp_run_for_context(hfp_connection);
2185aa4dd815SMatthias Ringwald     }
2186aa4dd815SMatthias Ringwald }
2187aa4dd815SMatthias Ringwald 
2188aa4dd815SMatthias Ringwald /**
2189aa4dd815SMatthias Ringwald  * @brief Called from GSM
2190aa4dd815SMatthias Ringwald  */
2191aa4dd815SMatthias Ringwald void hfp_ag_incoming_call(void){
2192aa4dd815SMatthias Ringwald     hfp_ag_call_sm(HFP_AG_INCOMING_CALL, NULL);
2193aa4dd815SMatthias Ringwald }
2194aa4dd815SMatthias Ringwald 
2195aa4dd815SMatthias Ringwald /**
2196aa4dd815SMatthias Ringwald  * @brief number is stored.
2197aa4dd815SMatthias Ringwald  */
2198aa4dd815SMatthias Ringwald void hfp_ag_set_clip(uint8_t type, const char * number){
2199d0c20769SMatthias Ringwald     hfp_gsm_handle_event_with_clip(HFP_AG_SET_CLIP, type, number);
2200aa4dd815SMatthias Ringwald }
2201aa4dd815SMatthias Ringwald 
2202aa4dd815SMatthias Ringwald void hfp_ag_call_dropped(void){
2203aa4dd815SMatthias Ringwald     hfp_ag_call_sm(HFP_AG_CALL_DROPPED, NULL);
2204aa4dd815SMatthias Ringwald }
2205aa4dd815SMatthias Ringwald 
2206aa4dd815SMatthias Ringwald // call from AG UI
2207aa4dd815SMatthias Ringwald void hfp_ag_answer_incoming_call(void){
2208aa4dd815SMatthias Ringwald     hfp_ag_call_sm(HFP_AG_INCOMING_CALL_ACCEPTED_BY_AG, NULL);
2209aa4dd815SMatthias Ringwald }
2210aa4dd815SMatthias Ringwald 
2211ce263fc8SMatthias Ringwald void hfp_ag_join_held_call(void){
2212ce263fc8SMatthias Ringwald     hfp_ag_call_sm(HFP_AG_HELD_CALL_JOINED_BY_AG, NULL);
2213ce263fc8SMatthias Ringwald }
2214ce263fc8SMatthias Ringwald 
2215aa4dd815SMatthias Ringwald void hfp_ag_terminate_call(void){
2216aa4dd815SMatthias Ringwald     hfp_ag_call_sm(HFP_AG_TERMINATE_CALL_BY_AG, NULL);
2217aa4dd815SMatthias Ringwald }
2218aa4dd815SMatthias Ringwald 
2219aa4dd815SMatthias Ringwald void hfp_ag_outgoing_call_ringing(void){
2220aa4dd815SMatthias Ringwald     hfp_ag_call_sm(HFP_AG_OUTGOING_CALL_RINGING, NULL);
2221aa4dd815SMatthias Ringwald }
2222aa4dd815SMatthias Ringwald 
2223aa4dd815SMatthias Ringwald void hfp_ag_outgoing_call_established(void){
2224aa4dd815SMatthias Ringwald     hfp_ag_call_sm(HFP_AG_OUTGOING_CALL_ESTABLISHED, NULL);
2225aa4dd815SMatthias Ringwald }
2226aa4dd815SMatthias Ringwald 
2227aa4dd815SMatthias Ringwald void hfp_ag_outgoing_call_rejected(void){
2228aa4dd815SMatthias Ringwald     hfp_ag_call_sm(HFP_AG_OUTGOING_CALL_REJECTED, NULL);
2229aa4dd815SMatthias Ringwald }
2230aa4dd815SMatthias Ringwald 
2231aa4dd815SMatthias Ringwald void hfp_ag_outgoing_call_accepted(void){
2232aa4dd815SMatthias Ringwald     hfp_ag_call_sm(HFP_AG_OUTGOING_CALL_ACCEPTED, NULL);
2233aa4dd815SMatthias Ringwald }
2234ce263fc8SMatthias Ringwald 
2235ce263fc8SMatthias Ringwald void hfp_ag_hold_incoming_call(void){
2236ce263fc8SMatthias Ringwald     hfp_ag_call_sm(HFP_AG_RESPONSE_AND_HOLD_ACCEPT_INCOMING_CALL_BY_AG, NULL);
2237ce263fc8SMatthias Ringwald }
2238ce263fc8SMatthias Ringwald 
2239ce263fc8SMatthias Ringwald void hfp_ag_accept_held_incoming_call(void) {
2240ce263fc8SMatthias Ringwald     hfp_ag_call_sm(HFP_AG_RESPONSE_AND_HOLD_ACCEPT_HELD_CALL_BY_AG, NULL);
2241ce263fc8SMatthias Ringwald }
2242ce263fc8SMatthias Ringwald 
2243ce263fc8SMatthias Ringwald void hfp_ag_reject_held_incoming_call(void){
2244ce263fc8SMatthias Ringwald     hfp_ag_call_sm(HFP_AG_RESPONSE_AND_HOLD_REJECT_HELD_CALL_BY_AG, NULL);
2245ce263fc8SMatthias Ringwald }
2246ce263fc8SMatthias Ringwald 
2247aa4dd815SMatthias Ringwald static void hfp_ag_set_ag_indicator(const char * name, int value){
2248aa4dd815SMatthias Ringwald     int indicator_index = get_ag_indicator_index_for_name(name);
2249aa4dd815SMatthias Ringwald     if (indicator_index < 0) return;
2250aa4dd815SMatthias Ringwald     hfp_ag_indicators[indicator_index].status = value;
2251aa4dd815SMatthias Ringwald 
2252ce263fc8SMatthias Ringwald 
2253665d90f2SMatthias Ringwald     btstack_linked_list_iterator_t it;
2254665d90f2SMatthias Ringwald     btstack_linked_list_iterator_init(&it, hfp_get_connections());
2255665d90f2SMatthias Ringwald     while (btstack_linked_list_iterator_has_next(&it)){
2256a0ffb263SMatthias Ringwald         hfp_connection_t * hfp_connection = (hfp_connection_t *)btstack_linked_list_iterator_next(&it);
2257a0ffb263SMatthias Ringwald         if (! hfp_connection->ag_indicators[indicator_index].enabled) {
2258ce263fc8SMatthias Ringwald             log_info("AG indicator '%s' changed to %u but not enabled", hfp_ag_indicators[indicator_index].name, value);
2259ce263fc8SMatthias Ringwald             continue;
2260ce263fc8SMatthias Ringwald         }
2261ce263fc8SMatthias Ringwald         log_info("AG indicator '%s' changed to %u, request transfer statur", hfp_ag_indicators[indicator_index].name, value);
2262a0ffb263SMatthias Ringwald         hfp_connection->ag_indicators_status_update_bitmap = store_bit(hfp_connection->ag_indicators_status_update_bitmap, indicator_index, 1);
2263a0ffb263SMatthias Ringwald         hfp_run_for_context(hfp_connection);
2264aa4dd815SMatthias Ringwald     }
2265aa4dd815SMatthias Ringwald }
2266aa4dd815SMatthias Ringwald 
2267aa4dd815SMatthias Ringwald void hfp_ag_set_registration_status(int status){
2268aa4dd815SMatthias Ringwald     hfp_ag_set_ag_indicator("service", status);
2269aa4dd815SMatthias Ringwald }
2270aa4dd815SMatthias Ringwald 
2271aa4dd815SMatthias Ringwald void hfp_ag_set_signal_strength(int strength){
2272aa4dd815SMatthias Ringwald     hfp_ag_set_ag_indicator("signal", strength);
2273aa4dd815SMatthias Ringwald }
2274aa4dd815SMatthias Ringwald 
2275aa4dd815SMatthias Ringwald void hfp_ag_set_roaming_status(int status){
2276aa4dd815SMatthias Ringwald     hfp_ag_set_ag_indicator("roam", status);
2277aa4dd815SMatthias Ringwald }
2278aa4dd815SMatthias Ringwald 
2279aa4dd815SMatthias Ringwald void hfp_ag_set_battery_level(int level){
2280aa4dd815SMatthias Ringwald     hfp_ag_set_ag_indicator("battchg", level);
2281aa4dd815SMatthias Ringwald }
2282aa4dd815SMatthias Ringwald 
2283d97d752dSMilanka Ringwald void hfp_ag_activate_voice_recognition(hci_con_handle_t acl_handle, int activate){
2284aa4dd815SMatthias Ringwald     if (!get_bit(hfp_supported_features, HFP_AGSF_VOICE_RECOGNITION_FUNCTION)) return;
2285d97d752dSMilanka Ringwald     hfp_connection_t * hfp_connection = get_hfp_connection_context_for_acl_handle(acl_handle);
2286a33eb0c4SMilanka Ringwald     if (!hfp_connection){
2287a33eb0c4SMilanka Ringwald         log_error("HFP AG: ACL connection 0x%2x is not found.", acl_handle);
2288a33eb0c4SMilanka Ringwald         return;
2289a33eb0c4SMilanka Ringwald     }
2290aa4dd815SMatthias Ringwald 
2291a0ffb263SMatthias Ringwald     if (!get_bit(hfp_connection->remote_supported_features, HFP_HFSF_VOICE_RECOGNITION_FUNCTION)) {
229260ebb071SMilanka Ringwald         log_info("AG cannot acivate voice recognition - not supported by HF");
2293aa4dd815SMatthias Ringwald         return;
2294aa4dd815SMatthias Ringwald     }
2295aa4dd815SMatthias Ringwald 
2296aa4dd815SMatthias Ringwald     if (activate){
2297d97d752dSMilanka Ringwald         hfp_ag_establish_audio_connection(acl_handle);
2298aa4dd815SMatthias Ringwald     }
2299aa4dd815SMatthias Ringwald 
2300a0ffb263SMatthias Ringwald     hfp_connection->ag_activate_voice_recognition = activate;
2301a0ffb263SMatthias Ringwald     hfp_connection->command = HFP_CMD_AG_ACTIVATE_VOICE_RECOGNITION;
2302a0ffb263SMatthias Ringwald     hfp_run_for_context(hfp_connection);
2303aa4dd815SMatthias Ringwald }
2304aa4dd815SMatthias Ringwald 
2305d97d752dSMilanka Ringwald void hfp_ag_set_microphone_gain(hci_con_handle_t acl_handle, int gain){
2306d97d752dSMilanka Ringwald     hfp_connection_t * hfp_connection = get_hfp_connection_context_for_acl_handle(acl_handle);
2307a33eb0c4SMilanka Ringwald     if (!hfp_connection){
2308a33eb0c4SMilanka Ringwald         log_error("HFP AG: ACL connection 0x%2x is not found.", acl_handle);
2309a33eb0c4SMilanka Ringwald         return;
2310a33eb0c4SMilanka Ringwald     }
2311a0ffb263SMatthias Ringwald     if (hfp_connection->microphone_gain != gain){
2312a0ffb263SMatthias Ringwald         hfp_connection->command = HFP_CMD_SET_MICROPHONE_GAIN;
2313a0ffb263SMatthias Ringwald         hfp_connection->microphone_gain = gain;
2314a0ffb263SMatthias Ringwald         hfp_connection->send_microphone_gain = 1;
2315aa4dd815SMatthias Ringwald     }
2316a0ffb263SMatthias Ringwald     hfp_run_for_context(hfp_connection);
2317aa4dd815SMatthias Ringwald }
2318aa4dd815SMatthias Ringwald 
2319d97d752dSMilanka Ringwald void hfp_ag_set_speaker_gain(hci_con_handle_t acl_handle, int gain){
2320d97d752dSMilanka Ringwald     hfp_connection_t * hfp_connection = get_hfp_connection_context_for_acl_handle(acl_handle);
2321a33eb0c4SMilanka Ringwald     if (!hfp_connection){
2322a33eb0c4SMilanka Ringwald         log_error("HFP AG: ACL connection 0x%2x is not found.", acl_handle);
2323a33eb0c4SMilanka Ringwald         return;
2324a33eb0c4SMilanka Ringwald     }
2325a0ffb263SMatthias Ringwald     if (hfp_connection->speaker_gain != gain){
2326a0ffb263SMatthias Ringwald         hfp_connection->speaker_gain = gain;
2327a0ffb263SMatthias Ringwald         hfp_connection->send_speaker_gain = 1;
2328aa4dd815SMatthias Ringwald     }
2329a0ffb263SMatthias Ringwald     hfp_run_for_context(hfp_connection);
2330aa4dd815SMatthias Ringwald }
2331aa4dd815SMatthias Ringwald 
2332d97d752dSMilanka Ringwald void hfp_ag_send_phone_number_for_voice_tag(hci_con_handle_t acl_handle, const char * number){
2333d97d752dSMilanka Ringwald     hfp_connection_t * hfp_connection = get_hfp_connection_context_for_acl_handle(acl_handle);
2334a33eb0c4SMilanka Ringwald     if (!hfp_connection){
2335a33eb0c4SMilanka Ringwald         log_error("HFP AG: ACL connection 0x%2x is not found.", acl_handle);
2336a33eb0c4SMilanka Ringwald         return;
2337a33eb0c4SMilanka Ringwald     }
2338aa4dd815SMatthias Ringwald     hfp_ag_set_clip(0, number);
2339a0ffb263SMatthias Ringwald     hfp_connection->send_phone_number_for_voice_tag = 1;
2340aa4dd815SMatthias Ringwald }
2341aa4dd815SMatthias Ringwald 
2342d97d752dSMilanka Ringwald void hfp_ag_reject_phone_number_for_voice_tag(hci_con_handle_t acl_handle){
2343d97d752dSMilanka Ringwald     hfp_connection_t * hfp_connection = get_hfp_connection_context_for_acl_handle(acl_handle);
2344a33eb0c4SMilanka Ringwald     if (!hfp_connection){
2345a33eb0c4SMilanka Ringwald         log_error("HFP AG: ACL connection 0x%2x is not found.", acl_handle);
2346a33eb0c4SMilanka Ringwald         return;
2347a33eb0c4SMilanka Ringwald     }
2348a0ffb263SMatthias Ringwald     hfp_connection->send_error = 1;
2349aa4dd815SMatthias Ringwald }
2350aa4dd815SMatthias Ringwald 
2351d97d752dSMilanka Ringwald void hfp_ag_send_dtmf_code_done(hci_con_handle_t acl_handle){
2352d97d752dSMilanka Ringwald     hfp_connection_t * hfp_connection = get_hfp_connection_context_for_acl_handle(acl_handle);
2353a33eb0c4SMilanka Ringwald     if (!hfp_connection){
2354a33eb0c4SMilanka Ringwald         log_error("HFP AG: ACL connection 0x%2x is not found.", acl_handle);
2355a33eb0c4SMilanka Ringwald         return;
2356a33eb0c4SMilanka Ringwald     }
2357a0ffb263SMatthias Ringwald     hfp_connection->ok_pending = 1;
2358c1797c7dSMatthias Ringwald }
2359aa4dd815SMatthias Ringwald 
2360ce263fc8SMatthias Ringwald void hfp_ag_set_subcriber_number_information(hfp_phone_number_t * numbers, int numbers_count){
2361ce263fc8SMatthias Ringwald     subscriber_numbers = numbers;
2362ce263fc8SMatthias Ringwald     subscriber_numbers_count = numbers_count;
2363ce263fc8SMatthias Ringwald }
2364ce263fc8SMatthias Ringwald 
23659cae807eSMatthias Ringwald void hfp_ag_clear_last_dialed_number(void){
23669cae807eSMatthias Ringwald     hfp_gsm_clear_last_dialed_number();
2367ce263fc8SMatthias Ringwald }
2368ce263fc8SMatthias Ringwald 
2369d97d752dSMilanka Ringwald void hfp_ag_notify_incoming_call_waiting(hci_con_handle_t acl_handle){
2370d97d752dSMilanka Ringwald     hfp_connection_t * hfp_connection = get_hfp_connection_context_for_acl_handle(acl_handle);
2371a33eb0c4SMilanka Ringwald     if (!hfp_connection){
2372a33eb0c4SMilanka Ringwald         log_error("HFP AG: ACL connection 0x%2x is not found.", acl_handle);
2373a33eb0c4SMilanka Ringwald         return;
2374a33eb0c4SMilanka Ringwald     }
2375a0ffb263SMatthias Ringwald     if (!hfp_connection->call_waiting_notification_enabled) return;
2376a0ffb263SMatthias Ringwald 
2377a0ffb263SMatthias Ringwald     hfp_connection->ag_notify_incoming_call_waiting = 1;
2378a0ffb263SMatthias Ringwald     hfp_run_for_context(hfp_connection);
2379a0ffb263SMatthias Ringwald }
2380ce263fc8SMatthias Ringwald 
2381