1fffdd288SMatthias Ringwald 2fffdd288SMatthias Ringwald /* 3fffdd288SMatthias Ringwald * Copyright (C) 2014 BlueKitchen GmbH 4fffdd288SMatthias Ringwald * 5fffdd288SMatthias Ringwald * Redistribution and use in source and binary forms, with or without 6fffdd288SMatthias Ringwald * modification, are permitted provided that the following conditions 7fffdd288SMatthias Ringwald * are met: 8fffdd288SMatthias Ringwald * 9fffdd288SMatthias Ringwald * 1. Redistributions of source code must retain the above copyright 10fffdd288SMatthias Ringwald * notice, this list of conditions and the following disclaimer. 11fffdd288SMatthias Ringwald * 2. Redistributions in binary form must reproduce the above copyright 12fffdd288SMatthias Ringwald * notice, this list of conditions and the following disclaimer in the 13fffdd288SMatthias Ringwald * documentation and/or other materials provided with the distribution. 14fffdd288SMatthias Ringwald * 3. Neither the name of the copyright holders nor the names of 15fffdd288SMatthias Ringwald * contributors may be used to endorse or promote products derived 16fffdd288SMatthias Ringwald * from this software without specific prior written permission. 17fffdd288SMatthias Ringwald * 4. Any redistribution, use, or modification is done solely for 18fffdd288SMatthias Ringwald * personal benefit and not for any commercial purpose or for 19fffdd288SMatthias Ringwald * monetary gain. 20fffdd288SMatthias Ringwald * 21fffdd288SMatthias Ringwald * THIS SOFTWARE IS PROVIDED BY BLUEKITCHEN GMBH AND CONTRIBUTORS 22fffdd288SMatthias Ringwald * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 23fffdd288SMatthias Ringwald * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS 24fffdd288SMatthias Ringwald * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL MATTHIAS 25fffdd288SMatthias Ringwald * RINGWALD OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, 26fffdd288SMatthias Ringwald * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, 27fffdd288SMatthias Ringwald * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS 28fffdd288SMatthias Ringwald * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED 29fffdd288SMatthias Ringwald * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, 30fffdd288SMatthias Ringwald * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF 31fffdd288SMatthias Ringwald * THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 32fffdd288SMatthias Ringwald * SUCH DAMAGE. 33fffdd288SMatthias Ringwald * 34fffdd288SMatthias Ringwald * Please inquire about commercial licensing options at 35fffdd288SMatthias Ringwald * [email protected] 36fffdd288SMatthias Ringwald * 37fffdd288SMatthias Ringwald */ 38fffdd288SMatthias Ringwald 39ab2c6ae4SMatthias Ringwald #define __BTSTACK_FILE__ "hfp_hf_demo.c" 40ab2c6ae4SMatthias Ringwald 41fffdd288SMatthias Ringwald /* 42fffdd288SMatthias Ringwald * hfp_hs_demo.c 43fffdd288SMatthias Ringwald */ 44fffdd288SMatthias Ringwald 45fffdd288SMatthias Ringwald // ***************************************************************************** 46fffdd288SMatthias Ringwald /* EXAMPLE_START(hfp_hs_demo): HFP Hands-Free (HF) Demo 47fffdd288SMatthias Ringwald * 48fffdd288SMatthias Ringwald * @text This HFP Hands-Free example demonstrates how to receive 49fffdd288SMatthias Ringwald * an output from a remote HFP audio gateway (AG), and, 507ea7688aSMatthias Ringwald * if HAVE_BTSTACK_STDIN is defined, how to control the HFP AG. 51fffdd288SMatthias Ringwald */ 52fffdd288SMatthias Ringwald // ***************************************************************************** 53fffdd288SMatthias Ringwald 54fffdd288SMatthias Ringwald 55fffdd288SMatthias Ringwald #include "btstack_config.h" 56fffdd288SMatthias Ringwald 57fffdd288SMatthias Ringwald #include <stdint.h> 58fffdd288SMatthias Ringwald #include <stdio.h> 59fffdd288SMatthias Ringwald #include <stdlib.h> 60fffdd288SMatthias Ringwald #include <string.h> 61fffdd288SMatthias Ringwald #include "btstack.h" 62fcb08cdbSMilanka Ringwald 63185c8cd4SMatthias Ringwald #include "sco_demo_util.h" 649491a7bfSMatthias Ringwald 657ea7688aSMatthias Ringwald #ifdef HAVE_BTSTACK_STDIN 667ea7688aSMatthias Ringwald #include "btstack_stdin.h" 674af4141bSMatthias Ringwald #endif 68fffdd288SMatthias Ringwald 69fffdd288SMatthias Ringwald uint8_t hfp_service_buffer[150]; 70fffdd288SMatthias Ringwald const uint8_t rfcomm_channel_nr = 1; 71fffdd288SMatthias Ringwald const char hfp_hf_service_name[] = "BTstack HFP HF Demo"; 72*89f1e358SMilanka Ringwald 73*89f1e358SMilanka Ringwald #ifdef HAVE_BTSTACK_STDIN 74*89f1e358SMilanka Ringwald static const char * device_addr_string = "00:1B:DC:08:0A:A5"; 75*89f1e358SMilanka Ringwald #endif 76*89f1e358SMilanka Ringwald 77*89f1e358SMilanka Ringwald static bd_addr_t device_addr; 78fffdd288SMatthias Ringwald 797ea7688aSMatthias Ringwald #ifdef HAVE_BTSTACK_STDIN 80185c8cd4SMatthias Ringwald // 80:BE:05:D5:28:48 81fffdd288SMatthias Ringwald // prototypes 8235833313SMatthias Ringwald static void show_usage(void); 83fffdd288SMatthias Ringwald #endif 84c8626498SMilanka Ringwald static hci_con_handle_t acl_handle = -1; 85185c8cd4SMatthias Ringwald static hci_con_handle_t sco_handle; 861bbecc2bSMatthias Ringwald #ifdef ENABLE_HFP_WIDE_BAND_SPEECH 87fffdd288SMatthias Ringwald static uint8_t codecs[] = {HFP_CODEC_CVSD, HFP_CODEC_MSBC}; 881bbecc2bSMatthias Ringwald #else 891bbecc2bSMatthias Ringwald static uint8_t codecs[] = {HFP_CODEC_CVSD}; 901bbecc2bSMatthias Ringwald #endif 91fffdd288SMatthias Ringwald static uint16_t indicators[1] = {0x01}; 9208d1a604SMilanka Ringwald static uint8_t negotiated_codec = HFP_CODEC_CVSD; 93186bfbecSMatthias Ringwald static btstack_packet_callback_registration_t hci_event_callback_registration; 94fffdd288SMatthias Ringwald char cmd; 95fffdd288SMatthias Ringwald 96f9f7adeeSMatthias Ringwald static void dump_supported_codecs(void){ 97f9f7adeeSMatthias Ringwald int i; 98f9f7adeeSMatthias Ringwald int mSBC_skipped = 0; 99f9f7adeeSMatthias Ringwald printf("Supported codecs: "); 100f9f7adeeSMatthias Ringwald for (i = 0; i < sizeof(codecs); i++){ 101f9f7adeeSMatthias Ringwald switch(codecs[i]){ 102f9f7adeeSMatthias Ringwald case HFP_CODEC_CVSD: 103f9f7adeeSMatthias Ringwald printf("CVSD"); 104f9f7adeeSMatthias Ringwald break; 105f9f7adeeSMatthias Ringwald case HFP_CODEC_MSBC: 106f9f7adeeSMatthias Ringwald if (hci_extended_sco_link_supported()){ 1072308e108SMilanka Ringwald printf(", mSBC"); 108f9f7adeeSMatthias Ringwald } else { 109f9f7adeeSMatthias Ringwald mSBC_skipped = 1; 110f9f7adeeSMatthias Ringwald } 111f9f7adeeSMatthias Ringwald break; 112f9f7adeeSMatthias Ringwald } 113f9f7adeeSMatthias Ringwald } 114f9f7adeeSMatthias Ringwald printf("\n"); 115f9f7adeeSMatthias Ringwald if (mSBC_skipped){ 116f9f7adeeSMatthias Ringwald printf("mSBC codec disabled because eSCO not supported by local controller.\n"); 117f9f7adeeSMatthias Ringwald } 118f9f7adeeSMatthias Ringwald } 11908d1a604SMilanka Ringwald 1207ea7688aSMatthias Ringwald #ifdef HAVE_BTSTACK_STDIN 121fffdd288SMatthias Ringwald 122fffdd288SMatthias Ringwald // Testig User Interface 123fffdd288SMatthias Ringwald static void show_usage(void){ 124fcb08cdbSMilanka Ringwald bd_addr_t iut_address; 125fcb08cdbSMilanka Ringwald gap_local_bd_addr(iut_address); 126fcb08cdbSMilanka Ringwald 127fcb08cdbSMilanka Ringwald printf("\n--- Bluetooth HFP Hands-Free (HF) unit Test Console %s ---\n", bd_addr_to_str(iut_address)); 1288a7d93dcSMatthias Ringwald printf("\n"); 1298a7d93dcSMatthias Ringwald printf("a - establish SLC to %s | ", bd_addr_to_str(device_addr)); 130fffdd288SMatthias Ringwald printf("A - release SLC connection to device\n"); 1318a7d93dcSMatthias Ringwald printf("b - establish Audio connection | B - release Audio connection\n"); 1328a7d93dcSMatthias Ringwald printf("d - query network operator | D - Enable HFP AG registration status update via bitmap(IIA)\n"); 1338a7d93dcSMatthias Ringwald printf("f - answer incoming call | F - Hangup call\n"); 1348a7d93dcSMatthias Ringwald printf("g - query network operator name | G - reject incoming call\n"); 1358a7d93dcSMatthias Ringwald printf("i - dial 1234567 | I - dial 7654321\n"); 1368a7d93dcSMatthias Ringwald printf("j - dial #1 | J - dial #99\n"); 1378a7d93dcSMatthias Ringwald printf("o - Set speaker volume to 0 (minimum) | O - Set speaker volume to 9 (default)\n"); 1388a7d93dcSMatthias Ringwald printf("p - Set speaker volume to 12 (higher) | P - Set speaker volume to 15 (maximum)\n"); 1398a7d93dcSMatthias Ringwald printf("q - Set microphone gain to 0 (minimum) | Q - Set microphone gain to 9 (default)\n"); 1408a7d93dcSMatthias Ringwald printf("s - Set microphone gain to 12 (higher) | S - Set microphone gain to 15 (maximum)\n"); 141fffdd288SMatthias Ringwald printf("t - terminate connection\n"); 142fffdd288SMatthias Ringwald printf("u - send 'user busy' (TWC 0)\n"); 143fffdd288SMatthias Ringwald printf("U - end active call and accept other call' (TWC 1)\n"); 1448a7d93dcSMatthias Ringwald printf("v - Swap active call call (TWC 2) | V - Join held call (TWC 3)\n"); 1458a7d93dcSMatthias Ringwald printf("w - Connect calls (TWC 4) | W - redial\n"); 1468a7d93dcSMatthias Ringwald printf("c/C - disable/enable registration status update for all AG indicators\n"); 1478a7d93dcSMatthias Ringwald printf("e/E - disable/enable reporting of the extended AG error result code\n"); 1488a7d93dcSMatthias Ringwald printf("k/K - deactivate/activate call waiting notification\n"); 1498a7d93dcSMatthias Ringwald printf("l/L - deactivate/activate calling line notification\n"); 1508a7d93dcSMatthias Ringwald printf("m/M - deactivate/activate echo canceling and noise reduction\n"); 1518a7d93dcSMatthias Ringwald printf("n/N - deactivate/activate voice recognition\n"); 152fffdd288SMatthias Ringwald printf("0123456789#*-+ - send DTMF dial tones\n"); 1538a7d93dcSMatthias Ringwald printf("x - request phone number for voice tag | X - current call status (ECS)\n"); 1548a7d93dcSMatthias Ringwald printf("y - release call with index 2 (ECC) | Y - private consulation with call 2(ECC)\n"); 1558a7d93dcSMatthias Ringwald printf("[ - Query Response and Hold status (RHH ?) | ] - Place call in a response and held state(RHH 0)\n"); 1568a7d93dcSMatthias Ringwald printf("{ - Accept held call(RHH 1) | } - Reject held call(RHH 2)\n"); 157fffdd288SMatthias Ringwald printf("? - Query Subscriber Number (NUM)\n"); 158fffdd288SMatthias Ringwald printf("! - Update HF indicator with assigned number 1 (HFI)\n"); 159fffdd288SMatthias Ringwald printf("---\n"); 160fffdd288SMatthias Ringwald printf("Ctrl-c - exit\n"); 161fffdd288SMatthias Ringwald printf("---\n"); 162fffdd288SMatthias Ringwald } 163fffdd288SMatthias Ringwald 16495a8ee01SMatthias Ringwald static void stdin_process(char c){ 16595a8ee01SMatthias Ringwald cmd = c; // used in packet handler 166fffdd288SMatthias Ringwald 167fffdd288SMatthias Ringwald if (cmd >= '0' && cmd <= '9'){ 168fffdd288SMatthias Ringwald printf("DTMF Code: %c\n", cmd); 169c8626498SMilanka Ringwald hfp_hf_send_dtmf_code(acl_handle, cmd); 1704af4141bSMatthias Ringwald return; 171fffdd288SMatthias Ringwald } 172fffdd288SMatthias Ringwald 173fffdd288SMatthias Ringwald switch (cmd){ 174fffdd288SMatthias Ringwald case '#': 175fffdd288SMatthias Ringwald case '-': 176fffdd288SMatthias Ringwald case '+': 177fffdd288SMatthias Ringwald case '*': 178fffdd288SMatthias Ringwald log_info("USER:\'%c\'", cmd); 179fffdd288SMatthias Ringwald printf("DTMF Code: %c\n", cmd); 180c8626498SMilanka Ringwald hfp_hf_send_dtmf_code(acl_handle, cmd); 181fffdd288SMatthias Ringwald break; 182fffdd288SMatthias Ringwald case 'a': 183fffdd288SMatthias Ringwald log_info("USER:\'%c\'", cmd); 184fffdd288SMatthias Ringwald printf("Establish Service level connection to device with Bluetooth address %s...\n", bd_addr_to_str(device_addr)); 185fffdd288SMatthias Ringwald hfp_hf_establish_service_level_connection(device_addr); 186fffdd288SMatthias Ringwald break; 187fffdd288SMatthias Ringwald case 'A': 188fffdd288SMatthias Ringwald log_info("USER:\'%c\'", cmd); 189fffdd288SMatthias Ringwald printf("Release Service level connection.\n"); 190c8626498SMilanka Ringwald hfp_hf_release_service_level_connection(acl_handle); 191fffdd288SMatthias Ringwald break; 192fffdd288SMatthias Ringwald case 'b': 193fffdd288SMatthias Ringwald log_info("USER:\'%c\'", cmd); 194fffdd288SMatthias Ringwald printf("Establish Audio connection to device with Bluetooth address %s...\n", bd_addr_to_str(device_addr)); 195c8626498SMilanka Ringwald hfp_hf_establish_audio_connection(acl_handle); 196fffdd288SMatthias Ringwald break; 197fffdd288SMatthias Ringwald case 'B': 198fffdd288SMatthias Ringwald log_info("USER:\'%c\'", cmd); 199fffdd288SMatthias Ringwald printf("Release Audio service level connection.\n"); 200c8626498SMilanka Ringwald hfp_hf_release_audio_connection(acl_handle); 201fffdd288SMatthias Ringwald break; 202fffdd288SMatthias Ringwald case 'C': 203fffdd288SMatthias Ringwald log_info("USER:\'%c\'", cmd); 204fffdd288SMatthias Ringwald printf("Enable registration status update for all AG indicators.\n"); 205c8626498SMilanka Ringwald hfp_hf_enable_status_update_for_all_ag_indicators(acl_handle); 206ba6f86f8SMatthias Ringwald break; 207fffdd288SMatthias Ringwald case 'c': 208fffdd288SMatthias Ringwald log_info("USER:\'%c\'", cmd); 209fffdd288SMatthias Ringwald printf("Disable registration status update for all AG indicators.\n"); 210c8626498SMilanka Ringwald hfp_hf_disable_status_update_for_all_ag_indicators(acl_handle); 211fffdd288SMatthias Ringwald break; 212fffdd288SMatthias Ringwald case 'D': 213fffdd288SMatthias Ringwald log_info("USER:\'%c\'", cmd); 214fffdd288SMatthias Ringwald printf("Set HFP AG registration status update for individual indicators (0111111).\n"); 215c8626498SMilanka Ringwald hfp_hf_set_status_update_for_individual_ag_indicators(acl_handle, 63); 216fffdd288SMatthias Ringwald break; 217fffdd288SMatthias Ringwald case 'd': 218fffdd288SMatthias Ringwald log_info("USER:\'%c\'", cmd); 219fffdd288SMatthias Ringwald printf("Query network operator.\n"); 220c8626498SMilanka Ringwald hfp_hf_query_operator_selection(acl_handle); 221fffdd288SMatthias Ringwald break; 222fffdd288SMatthias Ringwald case 'E': 223fffdd288SMatthias Ringwald log_info("USER:\'%c\'", cmd); 224fffdd288SMatthias Ringwald printf("Enable reporting of the extended AG error result code.\n"); 225c8626498SMilanka Ringwald hfp_hf_enable_report_extended_audio_gateway_error_result_code(acl_handle); 226fffdd288SMatthias Ringwald break; 227fffdd288SMatthias Ringwald case 'e': 228fffdd288SMatthias Ringwald log_info("USER:\'%c\'", cmd); 229fffdd288SMatthias Ringwald printf("Disable reporting of the extended AG error result code.\n"); 230c8626498SMilanka Ringwald hfp_hf_disable_report_extended_audio_gateway_error_result_code(acl_handle); 231fffdd288SMatthias Ringwald break; 232fffdd288SMatthias Ringwald case 'f': 233fffdd288SMatthias Ringwald log_info("USER:\'%c\'", cmd); 234fffdd288SMatthias Ringwald printf("Answer incoming call.\n"); 235c8626498SMilanka Ringwald hfp_hf_answer_incoming_call(acl_handle); 236fffdd288SMatthias Ringwald break; 237fffdd288SMatthias Ringwald case 'F': 238fffdd288SMatthias Ringwald log_info("USER:\'%c\'", cmd); 239fffdd288SMatthias Ringwald printf("Hangup call.\n"); 240c8626498SMilanka Ringwald hfp_hf_terminate_call(acl_handle); 241fffdd288SMatthias Ringwald break; 242fffdd288SMatthias Ringwald case 'G': 243fffdd288SMatthias Ringwald log_info("USER:\'%c\'", cmd); 244fffdd288SMatthias Ringwald printf("Reject incoming call.\n"); 245c8626498SMilanka Ringwald hfp_hf_reject_incoming_call(acl_handle); 246fffdd288SMatthias Ringwald break; 247fffdd288SMatthias Ringwald case 'g': 248fffdd288SMatthias Ringwald log_info("USER:\'%c\'", cmd); 249fffdd288SMatthias Ringwald printf("Query operator.\n"); 250c8626498SMilanka Ringwald hfp_hf_query_operator_selection(acl_handle); 251fffdd288SMatthias Ringwald break; 252fffdd288SMatthias Ringwald case 't': 253fffdd288SMatthias Ringwald log_info("USER:\'%c\'", cmd); 254fffdd288SMatthias Ringwald printf("Terminate HCI connection.\n"); 255c8626498SMilanka Ringwald gap_disconnect(acl_handle); 256fffdd288SMatthias Ringwald break; 257fffdd288SMatthias Ringwald case 'i': 258fffdd288SMatthias Ringwald log_info("USER:\'%c\'", cmd); 259fffdd288SMatthias Ringwald printf("Dial 1234567\n"); 260c8626498SMilanka Ringwald hfp_hf_dial_number(acl_handle, "1234567"); 261fffdd288SMatthias Ringwald break; 262fffdd288SMatthias Ringwald case 'I': 263fffdd288SMatthias Ringwald log_info("USER:\'%c\'", cmd); 264fffdd288SMatthias Ringwald printf("Dial 7654321\n"); 265c8626498SMilanka Ringwald hfp_hf_dial_number(acl_handle, "7654321"); 266fffdd288SMatthias Ringwald break; 267fffdd288SMatthias Ringwald case 'j': 268fffdd288SMatthias Ringwald log_info("USER:\'%c\'", cmd); 269fffdd288SMatthias Ringwald printf("Dial #1\n"); 270c8626498SMilanka Ringwald hfp_hf_dial_memory(acl_handle,1); 271fffdd288SMatthias Ringwald break; 272fffdd288SMatthias Ringwald case 'J': 273fffdd288SMatthias Ringwald log_info("USER:\'%c\'", cmd); 274fffdd288SMatthias Ringwald printf("Dial #99\n"); 275c8626498SMilanka Ringwald hfp_hf_dial_memory(acl_handle,99); 276fffdd288SMatthias Ringwald break; 277fffdd288SMatthias Ringwald case 'k': 278fffdd288SMatthias Ringwald log_info("USER:\'%c\'", cmd); 279fffdd288SMatthias Ringwald printf("Deactivate call waiting notification\n"); 280c8626498SMilanka Ringwald hfp_hf_deactivate_call_waiting_notification(acl_handle); 281fffdd288SMatthias Ringwald break; 282fffdd288SMatthias Ringwald case 'K': 283fffdd288SMatthias Ringwald log_info("USER:\'%c\'", cmd); 284fffdd288SMatthias Ringwald printf("Activate call waiting notification\n"); 285c8626498SMilanka Ringwald hfp_hf_activate_call_waiting_notification(acl_handle); 286fffdd288SMatthias Ringwald break; 287fffdd288SMatthias Ringwald case 'l': 288fffdd288SMatthias Ringwald log_info("USER:\'%c\'", cmd); 289fffdd288SMatthias Ringwald printf("Deactivate calling line notification\n"); 290c8626498SMilanka Ringwald hfp_hf_deactivate_calling_line_notification(acl_handle); 291fffdd288SMatthias Ringwald break; 292fffdd288SMatthias Ringwald case 'L': 293fffdd288SMatthias Ringwald log_info("USER:\'%c\'", cmd); 294fffdd288SMatthias Ringwald printf("Activate calling line notification\n"); 295c8626498SMilanka Ringwald hfp_hf_activate_calling_line_notification(acl_handle); 296fffdd288SMatthias Ringwald break; 297fffdd288SMatthias Ringwald case 'm': 298fffdd288SMatthias Ringwald log_info("USER:\'%c\'", cmd); 299fffdd288SMatthias Ringwald printf("Deactivate echo canceling and noise reduction\n"); 300c8626498SMilanka Ringwald hfp_hf_deactivate_echo_canceling_and_noise_reduction(acl_handle); 301fffdd288SMatthias Ringwald break; 302fffdd288SMatthias Ringwald case 'M': 303fffdd288SMatthias Ringwald log_info("USER:\'%c\'", cmd); 304fffdd288SMatthias Ringwald printf("Activate echo canceling and noise reduction\n"); 305c8626498SMilanka Ringwald hfp_hf_activate_echo_canceling_and_noise_reduction(acl_handle); 306fffdd288SMatthias Ringwald break; 307fffdd288SMatthias Ringwald case 'n': 308fffdd288SMatthias Ringwald log_info("USER:\'%c\'", cmd); 309fffdd288SMatthias Ringwald printf("Deactivate voice recognition\n"); 310c8626498SMilanka Ringwald hfp_hf_deactivate_voice_recognition_notification(acl_handle); 311fffdd288SMatthias Ringwald break; 312fffdd288SMatthias Ringwald case 'N': 313fffdd288SMatthias Ringwald log_info("USER:\'%c\'", cmd); 31408d1a604SMilanka Ringwald printf("Activate voice recognition %s\n", bd_addr_to_str(device_addr)); 315c8626498SMilanka Ringwald hfp_hf_activate_voice_recognition_notification(acl_handle); 316fffdd288SMatthias Ringwald break; 317fffdd288SMatthias Ringwald case 'o': 318fffdd288SMatthias Ringwald log_info("USER:\'%c\'", cmd); 319fffdd288SMatthias Ringwald printf("Set speaker gain to 0 (minimum)\n"); 320c8626498SMilanka Ringwald hfp_hf_set_speaker_gain(acl_handle, 0); 321fffdd288SMatthias Ringwald break; 322fffdd288SMatthias Ringwald case 'O': 323fffdd288SMatthias Ringwald log_info("USER:\'%c\'", cmd); 324fffdd288SMatthias Ringwald printf("Set speaker gain to 9 (default)\n"); 325c8626498SMilanka Ringwald hfp_hf_set_speaker_gain(acl_handle, 9); 326fffdd288SMatthias Ringwald break; 327fffdd288SMatthias Ringwald case 'p': 328fffdd288SMatthias Ringwald log_info("USER:\'%c\'", cmd); 329fffdd288SMatthias Ringwald printf("Set speaker gain to 12 (higher)\n"); 330c8626498SMilanka Ringwald hfp_hf_set_speaker_gain(acl_handle, 12); 331fffdd288SMatthias Ringwald break; 332fffdd288SMatthias Ringwald case 'P': 333fffdd288SMatthias Ringwald log_info("USER:\'%c\'", cmd); 334fffdd288SMatthias Ringwald printf("Set speaker gain to 15 (maximum)\n"); 335c8626498SMilanka Ringwald hfp_hf_set_speaker_gain(acl_handle, 15); 336fffdd288SMatthias Ringwald break; 337fffdd288SMatthias Ringwald case 'q': 338fffdd288SMatthias Ringwald log_info("USER:\'%c\'", cmd); 339fffdd288SMatthias Ringwald printf("Set microphone gain to 0\n"); 340c8626498SMilanka Ringwald hfp_hf_set_microphone_gain(acl_handle, 0); 341fffdd288SMatthias Ringwald break; 342fffdd288SMatthias Ringwald case 'Q': 343fffdd288SMatthias Ringwald log_info("USER:\'%c\'", cmd); 344fffdd288SMatthias Ringwald printf("Set microphone gain to 9\n"); 345c8626498SMilanka Ringwald hfp_hf_set_microphone_gain(acl_handle, 9); 346fffdd288SMatthias Ringwald break; 347fffdd288SMatthias Ringwald case 's': 348fffdd288SMatthias Ringwald log_info("USER:\'%c\'", cmd); 349fffdd288SMatthias Ringwald printf("Set microphone gain to 12\n"); 350c8626498SMilanka Ringwald hfp_hf_set_microphone_gain(acl_handle, 12); 351fffdd288SMatthias Ringwald break; 352fffdd288SMatthias Ringwald case 'S': 353fffdd288SMatthias Ringwald log_info("USER:\'%c\'", cmd); 354fffdd288SMatthias Ringwald printf("Set microphone gain to 15\n"); 355c8626498SMilanka Ringwald hfp_hf_set_microphone_gain(acl_handle, 15); 356fffdd288SMatthias Ringwald break; 357fffdd288SMatthias Ringwald case 'u': 358fffdd288SMatthias Ringwald log_info("USER:\'%c\'", cmd); 359fffdd288SMatthias Ringwald printf("Send 'user busy' (Three-Way Call 0)\n"); 360c8626498SMilanka Ringwald hfp_hf_user_busy(acl_handle); 361fffdd288SMatthias Ringwald break; 362fffdd288SMatthias Ringwald case 'U': 363fffdd288SMatthias Ringwald log_info("USER:\'%c\'", cmd); 364fffdd288SMatthias Ringwald printf("End active call and accept waiting/held call (Three-Way Call 1)\n"); 365c8626498SMilanka Ringwald hfp_hf_end_active_and_accept_other(acl_handle); 366fffdd288SMatthias Ringwald break; 367fffdd288SMatthias Ringwald case 'v': 368fffdd288SMatthias Ringwald log_info("USER:\'%c\'", cmd); 369fffdd288SMatthias Ringwald printf("Swap active call and hold/waiting call (Three-Way Call 2)\n"); 370c8626498SMilanka Ringwald hfp_hf_swap_calls(acl_handle); 371fffdd288SMatthias Ringwald break; 372fffdd288SMatthias Ringwald case 'V': 373fffdd288SMatthias Ringwald log_info("USER:\'%c\'", cmd); 374fffdd288SMatthias Ringwald printf("Join hold call (Three-Way Call 3)\n"); 375c8626498SMilanka Ringwald hfp_hf_join_held_call(acl_handle); 376fffdd288SMatthias Ringwald break; 377fffdd288SMatthias Ringwald case 'w': 378fffdd288SMatthias Ringwald log_info("USER:\'%c\'", cmd); 379fffdd288SMatthias Ringwald printf("Connect calls (Three-Way Call 4)\n"); 380c8626498SMilanka Ringwald hfp_hf_connect_calls(acl_handle); 381fffdd288SMatthias Ringwald break; 382fffdd288SMatthias Ringwald case 'W': 383fffdd288SMatthias Ringwald log_info("USER:\'%c\'", cmd); 384fffdd288SMatthias Ringwald printf("Redial\n"); 385c8626498SMilanka Ringwald hfp_hf_redial_last_number(acl_handle); 386fffdd288SMatthias Ringwald break; 387fffdd288SMatthias Ringwald case 'x': 388fffdd288SMatthias Ringwald log_info("USER:\'%c\'", cmd); 389fffdd288SMatthias Ringwald printf("Request phone number for voice tag\n"); 390c8626498SMilanka Ringwald hfp_hf_request_phone_number_for_voice_tag(acl_handle); 391fffdd288SMatthias Ringwald break; 392fffdd288SMatthias Ringwald case 'X': 393fffdd288SMatthias Ringwald log_info("USER:\'%c\'", cmd); 394fffdd288SMatthias Ringwald printf("Query current call status\n"); 395c8626498SMilanka Ringwald hfp_hf_query_current_call_status(acl_handle); 396fffdd288SMatthias Ringwald break; 397fffdd288SMatthias Ringwald case 'y': 398fffdd288SMatthias Ringwald log_info("USER:\'%c\'", cmd); 399fffdd288SMatthias Ringwald printf("Release call with index 2\n"); 400c8626498SMilanka Ringwald hfp_hf_release_call_with_index(acl_handle, 2); 401fffdd288SMatthias Ringwald break; 402fffdd288SMatthias Ringwald case 'Y': 403fffdd288SMatthias Ringwald log_info("USER:\'%c\'", cmd); 404fffdd288SMatthias Ringwald printf("Private consulation with call 2\n"); 405c8626498SMilanka Ringwald hfp_hf_private_consultation_with_call(acl_handle, 2); 406fffdd288SMatthias Ringwald break; 407fffdd288SMatthias Ringwald case '[': 408fffdd288SMatthias Ringwald log_info("USER:\'%c\'", cmd); 409fffdd288SMatthias Ringwald printf("Query Response and Hold status (RHH ?)\n"); 410c8626498SMilanka Ringwald hfp_hf_rrh_query_status(acl_handle); 411fffdd288SMatthias Ringwald break; 412fffdd288SMatthias Ringwald case ']': 413fffdd288SMatthias Ringwald log_info("USER:\'%c\'", cmd); 414fffdd288SMatthias Ringwald printf("Place call in a response and held state (RHH 0)\n"); 415c8626498SMilanka Ringwald hfp_hf_rrh_hold_call(acl_handle); 416fffdd288SMatthias Ringwald break; 417fffdd288SMatthias Ringwald case '{': 418fffdd288SMatthias Ringwald log_info("USER:\'%c\'", cmd); 419fffdd288SMatthias Ringwald printf("Accept held call (RHH 1)\n"); 420c8626498SMilanka Ringwald hfp_hf_rrh_accept_held_call(acl_handle); 421fffdd288SMatthias Ringwald break; 422fffdd288SMatthias Ringwald case '}': 423fffdd288SMatthias Ringwald log_info("USER:\'%c\'", cmd); 424fffdd288SMatthias Ringwald printf("Reject held call (RHH 2)\n"); 425c8626498SMilanka Ringwald hfp_hf_rrh_reject_held_call(acl_handle); 426fffdd288SMatthias Ringwald break; 427fffdd288SMatthias Ringwald case '?': 428fffdd288SMatthias Ringwald log_info("USER:\'%c\'", cmd); 429fffdd288SMatthias Ringwald printf("Query Subscriber Number\n"); 430c8626498SMilanka Ringwald hfp_hf_query_subscriber_number(acl_handle); 431fffdd288SMatthias Ringwald break; 432fffdd288SMatthias Ringwald case '!': 433fffdd288SMatthias Ringwald log_info("USER:\'%c\'", cmd); 434fffdd288SMatthias Ringwald printf("Update HF indicator with assigned number 1 (HFI)\n"); 435c8626498SMilanka Ringwald hfp_hf_set_hf_indicator(acl_handle, 1, 1); 436fffdd288SMatthias Ringwald break; 437fffdd288SMatthias Ringwald 438fffdd288SMatthias Ringwald default: 439fffdd288SMatthias Ringwald show_usage(); 440fffdd288SMatthias Ringwald break; 441fffdd288SMatthias Ringwald } 442fffdd288SMatthias Ringwald } 443fffdd288SMatthias Ringwald #endif 444fffdd288SMatthias Ringwald 44513839019SMatthias Ringwald static void packet_handler(uint8_t packet_type, uint16_t channel, uint8_t * event, uint16_t event_size){ 4469ec2630cSMatthias Ringwald UNUSED(channel); 447185c8cd4SMatthias Ringwald 44882aca432SMatthias Ringwald switch (packet_type){ 44982aca432SMatthias Ringwald 45082aca432SMatthias Ringwald case HCI_SCO_DATA_PACKET: 451fcb08cdbSMilanka Ringwald sco_demo_receive(event, event_size); 45282aca432SMatthias Ringwald break; 45382aca432SMatthias Ringwald 45482aca432SMatthias Ringwald case HCI_EVENT_PACKET: 45582aca432SMatthias Ringwald switch (event[0]){ 45682aca432SMatthias Ringwald case HCI_EVENT_SCO_CAN_SEND_NOW: 457185c8cd4SMatthias Ringwald sco_demo_send(sco_handle); 45882aca432SMatthias Ringwald break; 45982aca432SMatthias Ringwald 460f9f7adeeSMatthias Ringwald case HCI_EVENT_COMMAND_COMPLETE: 461f9f7adeeSMatthias Ringwald if (HCI_EVENT_IS_COMMAND_COMPLETE(event, hci_read_local_supported_features)){ 462f9f7adeeSMatthias Ringwald dump_supported_codecs(); 463f9f7adeeSMatthias Ringwald } 464f9f7adeeSMatthias Ringwald break; 465f9f7adeeSMatthias Ringwald 46682aca432SMatthias Ringwald case HCI_EVENT_HFP_META: 46782aca432SMatthias Ringwald switch (event[2]) { 46882aca432SMatthias Ringwald case HFP_SUBEVENT_SERVICE_LEVEL_CONNECTION_ESTABLISHED: 469c8626498SMilanka Ringwald acl_handle = hfp_subevent_service_level_connection_established_get_con_handle(event); 47008d1a604SMilanka Ringwald hfp_subevent_service_level_connection_established_get_bd_addr(event, device_addr); 47108d1a604SMilanka Ringwald printf("Service level connection established %s.\n\n", bd_addr_to_str(device_addr)); 47282aca432SMatthias Ringwald break; 47382aca432SMatthias Ringwald case HFP_SUBEVENT_SERVICE_LEVEL_CONNECTION_RELEASED: 47482aca432SMatthias Ringwald printf("Service level connection released.\n\n"); 47582aca432SMatthias Ringwald break; 47682aca432SMatthias Ringwald case HFP_SUBEVENT_AUDIO_CONNECTION_ESTABLISHED: 47782aca432SMatthias Ringwald if (hfp_subevent_audio_connection_established_get_status(event)){ 47882aca432SMatthias Ringwald sco_handle = 0; 47982aca432SMatthias Ringwald printf("Audio connection establishment failed with status %u\n", hfp_subevent_audio_connection_established_get_status(event)); 48082aca432SMatthias Ringwald } else { 48182aca432SMatthias Ringwald sco_handle = hfp_subevent_audio_connection_established_get_handle(event); 4828901a7c4SMatthias Ringwald printf("Audio connection established with SCO handle 0x%04x.\n", sco_handle); 483d0c4aea6SMilanka Ringwald negotiated_codec = hfp_subevent_audio_connection_established_get_negotiated_codec(event); 484f9f7adeeSMatthias Ringwald switch (negotiated_codec){ 485f9f7adeeSMatthias Ringwald case 0x01: 486f9f7adeeSMatthias Ringwald printf("Using CVSD codec.\n"); 487f9f7adeeSMatthias Ringwald break; 488f9f7adeeSMatthias Ringwald case 0x02: 489f9f7adeeSMatthias Ringwald printf("Using mSBC codec.\n"); 490f9f7adeeSMatthias Ringwald break; 491f9f7adeeSMatthias Ringwald default: 492f9f7adeeSMatthias Ringwald printf("Using unknown codec 0x%02x.\n", negotiated_codec); 493f9f7adeeSMatthias Ringwald break; 494f9f7adeeSMatthias Ringwald } 495d0c4aea6SMilanka Ringwald sco_demo_set_codec(negotiated_codec); 49682aca432SMatthias Ringwald hci_request_sco_can_send_now_event(); 497185c8cd4SMatthias Ringwald } 49882aca432SMatthias Ringwald break; 49982aca432SMatthias Ringwald case HFP_SUBEVENT_AUDIO_CONNECTION_RELEASED: 50082aca432SMatthias Ringwald sco_handle = 0; 50182aca432SMatthias Ringwald printf("Audio connection released\n"); 502fcb08cdbSMilanka Ringwald sco_demo_close(); 50382aca432SMatthias Ringwald break; 50482aca432SMatthias Ringwald case HFP_SUBEVENT_COMPLETE: 50582aca432SMatthias Ringwald switch (cmd){ 50682aca432SMatthias Ringwald case 'd': 50782aca432SMatthias Ringwald printf("HFP AG registration status update enabled.\n"); 50882aca432SMatthias Ringwald break; 50982aca432SMatthias Ringwald case 'e': 51082aca432SMatthias Ringwald printf("HFP AG registration status update for individual indicators set.\n"); 511b5281692SMatthias Ringwald break; 51282aca432SMatthias Ringwald default: 51382aca432SMatthias Ringwald break; 51482aca432SMatthias Ringwald } 51582aca432SMatthias Ringwald break; 51682aca432SMatthias Ringwald case HFP_SUBEVENT_AG_INDICATOR_STATUS_CHANGED: 51782aca432SMatthias Ringwald printf("AG_INDICATOR_STATUS_CHANGED, AG indicator '%s' (index: %d) to: %d\n", (const char*) &event[5], event[3], event[4]); 51882aca432SMatthias Ringwald break; 51982aca432SMatthias Ringwald case HFP_SUBEVENT_NETWORK_OPERATOR_CHANGED: 52082aca432SMatthias Ringwald printf("NETWORK_OPERATOR_CHANGED, operator mode: %d, format: %d, name: %s\n", event[3], event[4], (char *) &event[5]); 52182aca432SMatthias Ringwald break; 52282aca432SMatthias Ringwald case HFP_SUBEVENT_EXTENDED_AUDIO_GATEWAY_ERROR: 52382aca432SMatthias Ringwald printf("EXTENDED_AUDIO_GATEWAY_ERROR_REPORT, status : %d\n", event[3]); 52482aca432SMatthias Ringwald break; 52582aca432SMatthias Ringwald case HFP_SUBEVENT_RING: 52682aca432SMatthias Ringwald printf("** Ring **\n"); 52782aca432SMatthias Ringwald break; 52882aca432SMatthias Ringwald case HFP_SUBEVENT_NUMBER_FOR_VOICE_TAG: 52982aca432SMatthias Ringwald printf("Phone number for voice tag: %s\n", (const char *) &event[3]); 53082aca432SMatthias Ringwald break; 53182aca432SMatthias Ringwald case HFP_SUBEVENT_SPEAKER_VOLUME: 53282aca432SMatthias Ringwald printf("Speaker volume: %u\n", event[3]); 53382aca432SMatthias Ringwald break; 53482aca432SMatthias Ringwald case HFP_SUBEVENT_MICROPHONE_VOLUME: 53582aca432SMatthias Ringwald printf("Microphone volume: %u\n", event[3]); 53682aca432SMatthias Ringwald break; 537*89f1e358SMilanka Ringwald case HFP_SUBEVENT_CALLING_LINE_IDENTIFICATION_NOTIFICATION: 538*89f1e358SMilanka Ringwald printf("Caller ID, number %s\n", hfp_subevent_calling_line_identification_notification_get_number(event)); 539*89f1e358SMilanka Ringwald break; 54082aca432SMatthias Ringwald default: 54182aca432SMatthias Ringwald printf("event not handled %u\n", event[2]); 54282aca432SMatthias Ringwald break; 54382aca432SMatthias Ringwald } 54482aca432SMatthias Ringwald break; 54582aca432SMatthias Ringwald 54682aca432SMatthias Ringwald default: 54782aca432SMatthias Ringwald break; 54882aca432SMatthias Ringwald } 54982aca432SMatthias Ringwald break; 55082aca432SMatthias Ringwald 55182aca432SMatthias Ringwald default: 55282aca432SMatthias Ringwald break; 55382aca432SMatthias Ringwald } 55482aca432SMatthias Ringwald 555fffdd288SMatthias Ringwald } 556fffdd288SMatthias Ringwald 557fffdd288SMatthias Ringwald /* @section Main Application Setup 558fffdd288SMatthias Ringwald * 559fffdd288SMatthias Ringwald * @text Listing MainConfiguration shows main application code. 560fffdd288SMatthias Ringwald * To run a HFP HF service you need to initialize the SDP, and to create and register HFP HF record with it. 561fffdd288SMatthias Ringwald * The packet_handler is used for sending commands to the HFP AG. It also receives the HFP AG's answers. 562fffdd288SMatthias Ringwald * The stdin_process callback allows for sending commands to the HFP AG. 563fffdd288SMatthias Ringwald * At the end the Bluetooth stack is started. 564fffdd288SMatthias Ringwald */ 565fffdd288SMatthias Ringwald 566fffdd288SMatthias Ringwald /* LISTING_START(MainConfiguration): Setup HFP Hands-Free unit */ 567fffdd288SMatthias Ringwald int btstack_main(int argc, const char * argv[]); 568fffdd288SMatthias Ringwald int btstack_main(int argc, const char * argv[]){ 5699ec2630cSMatthias Ringwald (void)argc; 5709ec2630cSMatthias Ringwald (void)argv; 571185c8cd4SMatthias Ringwald 572a895b9f0SMatthias Ringwald sco_demo_init(); 573a895b9f0SMatthias Ringwald 574a895b9f0SMatthias Ringwald // register for HCI events 575a895b9f0SMatthias Ringwald hci_event_callback_registration.callback = &packet_handler; 576a895b9f0SMatthias Ringwald hci_add_event_handler(&hci_event_callback_registration); 577a895b9f0SMatthias Ringwald hci_register_sco_packet_handler(&packet_handler); 578a895b9f0SMatthias Ringwald 579a895b9f0SMatthias Ringwald gap_discoverable_control(1); 580a895b9f0SMatthias Ringwald gap_set_class_of_device(0x200408); 581a895b9f0SMatthias Ringwald 582fffdd288SMatthias Ringwald // init L2CAP 583fffdd288SMatthias Ringwald l2cap_init(); 584fffdd288SMatthias Ringwald 5854f84bf36SMatthias Ringwald uint16_t hf_supported_features = 5864f84bf36SMatthias Ringwald (1<<HFP_HFSF_ESCO_S4) | 5874f84bf36SMatthias Ringwald (1<<HFP_HFSF_HF_INDICATORS) | 5884f84bf36SMatthias Ringwald (1<<HFP_HFSF_CODEC_NEGOTIATION) | 5894f84bf36SMatthias Ringwald (1<<HFP_HFSF_ENHANCED_CALL_STATUS) | 5904f84bf36SMatthias Ringwald (1<<HFP_HFSF_REMOTE_VOLUME_CONTROL); 5914f84bf36SMatthias Ringwald int wide_band_speech = 1; 5924f84bf36SMatthias Ringwald 593a895b9f0SMatthias Ringwald rfcomm_init(); 594fffdd288SMatthias Ringwald hfp_hf_init(rfcomm_channel_nr); 5954f84bf36SMatthias Ringwald hfp_hf_init_supported_features(hf_supported_features); 596fffdd288SMatthias Ringwald hfp_hf_init_hf_indicators(sizeof(indicators)/sizeof(uint16_t), indicators); 597fffdd288SMatthias Ringwald hfp_hf_init_codecs(sizeof(codecs), codecs); 598fffdd288SMatthias Ringwald 599fffdd288SMatthias Ringwald hfp_hf_register_packet_handler(packet_handler); 600185c8cd4SMatthias Ringwald hci_register_sco_packet_handler(&packet_handler); 601fffdd288SMatthias Ringwald 602a895b9f0SMatthias Ringwald sdp_init(); 603fffdd288SMatthias Ringwald memset(hfp_service_buffer, 0, sizeof(hfp_service_buffer)); 6044f84bf36SMatthias Ringwald hfp_hf_create_sdp_record(hfp_service_buffer, 0x10001, rfcomm_channel_nr, hfp_hf_service_name, hf_supported_features, wide_band_speech); 605fffdd288SMatthias Ringwald printf("SDP service record size: %u\n", de_get_len(hfp_service_buffer)); 606fffdd288SMatthias Ringwald sdp_register_service(hfp_service_buffer); 607a895b9f0SMatthias Ringwald 6087ea7688aSMatthias Ringwald #ifdef HAVE_BTSTACK_STDIN 609*89f1e358SMilanka Ringwald // parse human readable Bluetooth address 610*89f1e358SMilanka Ringwald sscanf_bd_addr(device_addr_string, device_addr); 611fffdd288SMatthias Ringwald btstack_stdin_setup(stdin_process); 612fffdd288SMatthias Ringwald #endif 613fffdd288SMatthias Ringwald // turn on! 614fffdd288SMatthias Ringwald hci_power_control(HCI_POWER_ON); 615fffdd288SMatthias Ringwald return 0; 616fffdd288SMatthias Ringwald } 617fffdd288SMatthias Ringwald /* LISTING_END */ 6182b6b8c15SMilanka Ringwald /* EXAMPLE_END */ 619