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 39fffdd288SMatthias Ringwald /* 40fffdd288SMatthias Ringwald * hfp_hs_demo.c 41fffdd288SMatthias Ringwald */ 42fffdd288SMatthias Ringwald 43fffdd288SMatthias Ringwald // ***************************************************************************** 44fffdd288SMatthias Ringwald /* EXAMPLE_START(hfp_hs_demo): HFP Hands-Free (HF) Demo 45fffdd288SMatthias Ringwald * 46fffdd288SMatthias Ringwald * @text This HFP Hands-Free example demonstrates how to receive 47fffdd288SMatthias Ringwald * an output from a remote HFP audio gateway (AG), and, 48d0755cd6SMatthias Ringwald * if HAVE_POSIX_STDIN is defined, how to control the HFP AG. 49fffdd288SMatthias Ringwald */ 50fffdd288SMatthias Ringwald // ***************************************************************************** 51fffdd288SMatthias Ringwald 52fffdd288SMatthias Ringwald 53fffdd288SMatthias Ringwald #include "btstack_config.h" 54fffdd288SMatthias Ringwald 55fffdd288SMatthias Ringwald #include <stdint.h> 56fffdd288SMatthias Ringwald #include <stdio.h> 57fffdd288SMatthias Ringwald #include <stdlib.h> 58fffdd288SMatthias Ringwald #include <string.h> 59fffdd288SMatthias Ringwald #include "btstack.h" 60fcb08cdbSMilanka Ringwald 61185c8cd4SMatthias Ringwald #include "sco_demo_util.h" 629491a7bfSMatthias Ringwald 63d0755cd6SMatthias Ringwald #ifdef HAVE_POSIX_STDIN 649491a7bfSMatthias Ringwald #include <unistd.h> 65fffdd288SMatthias Ringwald #include "stdin_support.h" 664af4141bSMatthias Ringwald #endif 67fffdd288SMatthias Ringwald 68fffdd288SMatthias Ringwald uint8_t hfp_service_buffer[150]; 69fffdd288SMatthias Ringwald const uint8_t rfcomm_channel_nr = 1; 70fffdd288SMatthias Ringwald const char hfp_hf_service_name[] = "BTstack HFP HF Demo"; 719491a7bfSMatthias Ringwald static bd_addr_t device_addr = {0x80,0xbe,0x05,0xd5,0x28,0x48}; 72fffdd288SMatthias Ringwald 73d0755cd6SMatthias Ringwald #ifdef HAVE_POSIX_STDIN 74185c8cd4SMatthias Ringwald // 80:BE:05:D5:28:48 75fffdd288SMatthias Ringwald // prototypes 7635833313SMatthias Ringwald static void show_usage(void); 77fffdd288SMatthias Ringwald #endif 78c8626498SMilanka Ringwald static hci_con_handle_t acl_handle = -1; 79185c8cd4SMatthias Ringwald static hci_con_handle_t sco_handle; 80fffdd288SMatthias Ringwald static uint8_t codecs[] = {HFP_CODEC_CVSD, HFP_CODEC_MSBC}; 81fffdd288SMatthias Ringwald static uint16_t indicators[1] = {0x01}; 8208d1a604SMilanka Ringwald static uint8_t negotiated_codec = HFP_CODEC_CVSD; 83186bfbecSMatthias Ringwald static btstack_packet_callback_registration_t hci_event_callback_registration; 84fffdd288SMatthias Ringwald char cmd; 85fffdd288SMatthias Ringwald 86f9f7adeeSMatthias Ringwald static void dump_supported_codecs(void){ 87f9f7adeeSMatthias Ringwald int i; 88f9f7adeeSMatthias Ringwald int mSBC_skipped = 0; 89f9f7adeeSMatthias Ringwald printf("Supported codecs: "); 90f9f7adeeSMatthias Ringwald for (i = 0; i < sizeof(codecs); i++){ 91f9f7adeeSMatthias Ringwald switch(codecs[i]){ 92f9f7adeeSMatthias Ringwald case HFP_CODEC_CVSD: 93f9f7adeeSMatthias Ringwald printf("CVSD"); 94f9f7adeeSMatthias Ringwald break; 95f9f7adeeSMatthias Ringwald case HFP_CODEC_MSBC: 96f9f7adeeSMatthias Ringwald if (hci_extended_sco_link_supported()){ 972308e108SMilanka Ringwald printf(", mSBC"); 98f9f7adeeSMatthias Ringwald } else { 99f9f7adeeSMatthias Ringwald mSBC_skipped = 1; 100f9f7adeeSMatthias Ringwald } 101f9f7adeeSMatthias Ringwald break; 102f9f7adeeSMatthias Ringwald } 103f9f7adeeSMatthias Ringwald } 104f9f7adeeSMatthias Ringwald printf("\n"); 105f9f7adeeSMatthias Ringwald if (mSBC_skipped){ 106f9f7adeeSMatthias Ringwald printf("mSBC codec disabled because eSCO not supported by local controller.\n"); 107f9f7adeeSMatthias Ringwald } 108f9f7adeeSMatthias Ringwald } 10908d1a604SMilanka Ringwald 110d0755cd6SMatthias Ringwald #ifdef HAVE_POSIX_STDIN 111fffdd288SMatthias Ringwald 112fffdd288SMatthias Ringwald // Testig User Interface 113fffdd288SMatthias Ringwald static void show_usage(void){ 114fcb08cdbSMilanka Ringwald bd_addr_t iut_address; 115fcb08cdbSMilanka Ringwald gap_local_bd_addr(iut_address); 116fcb08cdbSMilanka Ringwald 117fcb08cdbSMilanka Ringwald printf("\n--- Bluetooth HFP Hands-Free (HF) unit Test Console %s ---\n", bd_addr_to_str(iut_address)); 1188a7d93dcSMatthias Ringwald printf("\n"); 1198a7d93dcSMatthias Ringwald printf("a - establish SLC to %s | ", bd_addr_to_str(device_addr)); 120fffdd288SMatthias Ringwald printf("A - release SLC connection to device\n"); 1218a7d93dcSMatthias Ringwald printf("b - establish Audio connection | B - release Audio connection\n"); 1228a7d93dcSMatthias Ringwald printf("d - query network operator | D - Enable HFP AG registration status update via bitmap(IIA)\n"); 1238a7d93dcSMatthias Ringwald printf("f - answer incoming call | F - Hangup call\n"); 1248a7d93dcSMatthias Ringwald printf("g - query network operator name | G - reject incoming call\n"); 1258a7d93dcSMatthias Ringwald printf("i - dial 1234567 | I - dial 7654321\n"); 1268a7d93dcSMatthias Ringwald printf("j - dial #1 | J - dial #99\n"); 1278a7d93dcSMatthias Ringwald printf("o - Set speaker volume to 0 (minimum) | O - Set speaker volume to 9 (default)\n"); 1288a7d93dcSMatthias Ringwald printf("p - Set speaker volume to 12 (higher) | P - Set speaker volume to 15 (maximum)\n"); 1298a7d93dcSMatthias Ringwald printf("q - Set microphone gain to 0 (minimum) | Q - Set microphone gain to 9 (default)\n"); 1308a7d93dcSMatthias Ringwald printf("s - Set microphone gain to 12 (higher) | S - Set microphone gain to 15 (maximum)\n"); 131fffdd288SMatthias Ringwald printf("t - terminate connection\n"); 132fffdd288SMatthias Ringwald printf("u - send 'user busy' (TWC 0)\n"); 133fffdd288SMatthias Ringwald printf("U - end active call and accept other call' (TWC 1)\n"); 1348a7d93dcSMatthias Ringwald printf("v - Swap active call call (TWC 2) | V - Join held call (TWC 3)\n"); 1358a7d93dcSMatthias Ringwald printf("w - Connect calls (TWC 4) | W - redial\n"); 1368a7d93dcSMatthias Ringwald printf("c/C - disable/enable registration status update for all AG indicators\n"); 1378a7d93dcSMatthias Ringwald printf("e/E - disable/enable reporting of the extended AG error result code\n"); 1388a7d93dcSMatthias Ringwald printf("k/K - deactivate/activate call waiting notification\n"); 1398a7d93dcSMatthias Ringwald printf("l/L - deactivate/activate calling line notification\n"); 1408a7d93dcSMatthias Ringwald printf("m/M - deactivate/activate echo canceling and noise reduction\n"); 1418a7d93dcSMatthias Ringwald printf("n/N - deactivate/activate voice recognition\n"); 142fffdd288SMatthias Ringwald printf("0123456789#*-+ - send DTMF dial tones\n"); 1438a7d93dcSMatthias Ringwald printf("x - request phone number for voice tag | X - current call status (ECS)\n"); 1448a7d93dcSMatthias Ringwald printf("y - release call with index 2 (ECC) | Y - private consulation with call 2(ECC)\n"); 1458a7d93dcSMatthias Ringwald printf("[ - Query Response and Hold status (RHH ?) | ] - Place call in a response and held state(RHH 0)\n"); 1468a7d93dcSMatthias Ringwald printf("{ - Accept held call(RHH 1) | } - Reject held call(RHH 2)\n"); 147fffdd288SMatthias Ringwald printf("? - Query Subscriber Number (NUM)\n"); 148fffdd288SMatthias Ringwald printf("! - Update HF indicator with assigned number 1 (HFI)\n"); 149fffdd288SMatthias Ringwald printf("---\n"); 150fffdd288SMatthias Ringwald printf("Ctrl-c - exit\n"); 151fffdd288SMatthias Ringwald printf("---\n"); 152fffdd288SMatthias Ringwald } 153fffdd288SMatthias Ringwald 1544af4141bSMatthias Ringwald static void stdin_process(btstack_data_source_t *ds, btstack_data_source_callback_type_t callback_type){ 155*9ec2630cSMatthias Ringwald UNUSED(ds); 156*9ec2630cSMatthias Ringwald UNUSED(callback_type); 157a1dc4edbSMatthias Ringwald 158a1dc4edbSMatthias Ringwald cmd = btstack_stdin_read(); 159fffdd288SMatthias Ringwald 160fffdd288SMatthias Ringwald if (cmd >= '0' && cmd <= '9'){ 161fffdd288SMatthias Ringwald printf("DTMF Code: %c\n", cmd); 162c8626498SMilanka Ringwald hfp_hf_send_dtmf_code(acl_handle, cmd); 1634af4141bSMatthias Ringwald return; 164fffdd288SMatthias Ringwald } 165fffdd288SMatthias Ringwald 166fffdd288SMatthias Ringwald switch (cmd){ 167fffdd288SMatthias Ringwald case '#': 168fffdd288SMatthias Ringwald case '-': 169fffdd288SMatthias Ringwald case '+': 170fffdd288SMatthias Ringwald case '*': 171fffdd288SMatthias Ringwald log_info("USER:\'%c\'", cmd); 172fffdd288SMatthias Ringwald printf("DTMF Code: %c\n", cmd); 173c8626498SMilanka Ringwald hfp_hf_send_dtmf_code(acl_handle, cmd); 174fffdd288SMatthias Ringwald break; 175fffdd288SMatthias Ringwald case 'a': 176fffdd288SMatthias Ringwald log_info("USER:\'%c\'", cmd); 177fffdd288SMatthias Ringwald printf("Establish Service level connection to device with Bluetooth address %s...\n", bd_addr_to_str(device_addr)); 178fffdd288SMatthias Ringwald hfp_hf_establish_service_level_connection(device_addr); 179fffdd288SMatthias Ringwald break; 180fffdd288SMatthias Ringwald case 'A': 181fffdd288SMatthias Ringwald log_info("USER:\'%c\'", cmd); 182fffdd288SMatthias Ringwald printf("Release Service level connection.\n"); 183c8626498SMilanka Ringwald hfp_hf_release_service_level_connection(acl_handle); 184fffdd288SMatthias Ringwald break; 185fffdd288SMatthias Ringwald case 'b': 186fffdd288SMatthias Ringwald log_info("USER:\'%c\'", cmd); 187fffdd288SMatthias Ringwald printf("Establish Audio connection to device with Bluetooth address %s...\n", bd_addr_to_str(device_addr)); 188c8626498SMilanka Ringwald hfp_hf_establish_audio_connection(acl_handle); 189fffdd288SMatthias Ringwald break; 190fffdd288SMatthias Ringwald case 'B': 191fffdd288SMatthias Ringwald log_info("USER:\'%c\'", cmd); 192fffdd288SMatthias Ringwald printf("Release Audio service level connection.\n"); 193c8626498SMilanka Ringwald hfp_hf_release_audio_connection(acl_handle); 194fffdd288SMatthias Ringwald break; 195fffdd288SMatthias Ringwald case 'C': 196fffdd288SMatthias Ringwald log_info("USER:\'%c\'", cmd); 197fffdd288SMatthias Ringwald printf("Enable registration status update for all AG indicators.\n"); 198c8626498SMilanka Ringwald hfp_hf_enable_status_update_for_all_ag_indicators(acl_handle); 199fffdd288SMatthias Ringwald case 'c': 200fffdd288SMatthias Ringwald log_info("USER:\'%c\'", cmd); 201fffdd288SMatthias Ringwald printf("Disable registration status update for all AG indicators.\n"); 202c8626498SMilanka Ringwald hfp_hf_disable_status_update_for_all_ag_indicators(acl_handle); 203fffdd288SMatthias Ringwald break; 204fffdd288SMatthias Ringwald case 'D': 205fffdd288SMatthias Ringwald log_info("USER:\'%c\'", cmd); 206fffdd288SMatthias Ringwald printf("Set HFP AG registration status update for individual indicators (0111111).\n"); 207c8626498SMilanka Ringwald hfp_hf_set_status_update_for_individual_ag_indicators(acl_handle, 63); 208fffdd288SMatthias Ringwald break; 209fffdd288SMatthias Ringwald case 'd': 210fffdd288SMatthias Ringwald log_info("USER:\'%c\'", cmd); 211fffdd288SMatthias Ringwald printf("Query network operator.\n"); 212c8626498SMilanka Ringwald hfp_hf_query_operator_selection(acl_handle); 213fffdd288SMatthias Ringwald break; 214fffdd288SMatthias Ringwald case 'E': 215fffdd288SMatthias Ringwald log_info("USER:\'%c\'", cmd); 216fffdd288SMatthias Ringwald printf("Enable reporting of the extended AG error result code.\n"); 217c8626498SMilanka Ringwald hfp_hf_enable_report_extended_audio_gateway_error_result_code(acl_handle); 218fffdd288SMatthias Ringwald break; 219fffdd288SMatthias Ringwald case 'e': 220fffdd288SMatthias Ringwald log_info("USER:\'%c\'", cmd); 221fffdd288SMatthias Ringwald printf("Disable reporting of the extended AG error result code.\n"); 222c8626498SMilanka Ringwald hfp_hf_disable_report_extended_audio_gateway_error_result_code(acl_handle); 223fffdd288SMatthias Ringwald break; 224fffdd288SMatthias Ringwald case 'f': 225fffdd288SMatthias Ringwald log_info("USER:\'%c\'", cmd); 226fffdd288SMatthias Ringwald printf("Answer incoming call.\n"); 227c8626498SMilanka Ringwald hfp_hf_answer_incoming_call(acl_handle); 228fffdd288SMatthias Ringwald break; 229fffdd288SMatthias Ringwald case 'F': 230fffdd288SMatthias Ringwald log_info("USER:\'%c\'", cmd); 231fffdd288SMatthias Ringwald printf("Hangup call.\n"); 232c8626498SMilanka Ringwald hfp_hf_terminate_call(acl_handle); 233fffdd288SMatthias Ringwald break; 234fffdd288SMatthias Ringwald case 'G': 235fffdd288SMatthias Ringwald log_info("USER:\'%c\'", cmd); 236fffdd288SMatthias Ringwald printf("Reject incoming call.\n"); 237c8626498SMilanka Ringwald hfp_hf_reject_incoming_call(acl_handle); 238fffdd288SMatthias Ringwald break; 239fffdd288SMatthias Ringwald case 'g': 240fffdd288SMatthias Ringwald log_info("USER:\'%c\'", cmd); 241fffdd288SMatthias Ringwald printf("Query operator.\n"); 242c8626498SMilanka Ringwald hfp_hf_query_operator_selection(acl_handle); 243fffdd288SMatthias Ringwald break; 244fffdd288SMatthias Ringwald case 't': 245fffdd288SMatthias Ringwald log_info("USER:\'%c\'", cmd); 246fffdd288SMatthias Ringwald printf("Terminate HCI connection.\n"); 247c8626498SMilanka Ringwald gap_disconnect(acl_handle); 248fffdd288SMatthias Ringwald break; 249fffdd288SMatthias Ringwald case 'i': 250fffdd288SMatthias Ringwald log_info("USER:\'%c\'", cmd); 251fffdd288SMatthias Ringwald printf("Dial 1234567\n"); 252c8626498SMilanka Ringwald hfp_hf_dial_number(acl_handle, "1234567"); 253fffdd288SMatthias Ringwald break; 254fffdd288SMatthias Ringwald case 'I': 255fffdd288SMatthias Ringwald log_info("USER:\'%c\'", cmd); 256fffdd288SMatthias Ringwald printf("Dial 7654321\n"); 257c8626498SMilanka Ringwald hfp_hf_dial_number(acl_handle, "7654321"); 258fffdd288SMatthias Ringwald break; 259fffdd288SMatthias Ringwald case 'j': 260fffdd288SMatthias Ringwald log_info("USER:\'%c\'", cmd); 261fffdd288SMatthias Ringwald printf("Dial #1\n"); 262c8626498SMilanka Ringwald hfp_hf_dial_memory(acl_handle,1); 263fffdd288SMatthias Ringwald break; 264fffdd288SMatthias Ringwald case 'J': 265fffdd288SMatthias Ringwald log_info("USER:\'%c\'", cmd); 266fffdd288SMatthias Ringwald printf("Dial #99\n"); 267c8626498SMilanka Ringwald hfp_hf_dial_memory(acl_handle,99); 268fffdd288SMatthias Ringwald break; 269fffdd288SMatthias Ringwald case 'k': 270fffdd288SMatthias Ringwald log_info("USER:\'%c\'", cmd); 271fffdd288SMatthias Ringwald printf("Deactivate call waiting notification\n"); 272c8626498SMilanka Ringwald hfp_hf_deactivate_call_waiting_notification(acl_handle); 273fffdd288SMatthias Ringwald break; 274fffdd288SMatthias Ringwald case 'K': 275fffdd288SMatthias Ringwald log_info("USER:\'%c\'", cmd); 276fffdd288SMatthias Ringwald printf("Activate call waiting notification\n"); 277c8626498SMilanka Ringwald hfp_hf_activate_call_waiting_notification(acl_handle); 278fffdd288SMatthias Ringwald break; 279fffdd288SMatthias Ringwald case 'l': 280fffdd288SMatthias Ringwald log_info("USER:\'%c\'", cmd); 281fffdd288SMatthias Ringwald printf("Deactivate calling line notification\n"); 282c8626498SMilanka Ringwald hfp_hf_deactivate_calling_line_notification(acl_handle); 283fffdd288SMatthias Ringwald break; 284fffdd288SMatthias Ringwald case 'L': 285fffdd288SMatthias Ringwald log_info("USER:\'%c\'", cmd); 286fffdd288SMatthias Ringwald printf("Activate calling line notification\n"); 287c8626498SMilanka Ringwald hfp_hf_activate_calling_line_notification(acl_handle); 288fffdd288SMatthias Ringwald break; 289fffdd288SMatthias Ringwald case 'm': 290fffdd288SMatthias Ringwald log_info("USER:\'%c\'", cmd); 291fffdd288SMatthias Ringwald printf("Deactivate echo canceling and noise reduction\n"); 292c8626498SMilanka Ringwald hfp_hf_deactivate_echo_canceling_and_noise_reduction(acl_handle); 293fffdd288SMatthias Ringwald break; 294fffdd288SMatthias Ringwald case 'M': 295fffdd288SMatthias Ringwald log_info("USER:\'%c\'", cmd); 296fffdd288SMatthias Ringwald printf("Activate echo canceling and noise reduction\n"); 297c8626498SMilanka Ringwald hfp_hf_activate_echo_canceling_and_noise_reduction(acl_handle); 298fffdd288SMatthias Ringwald break; 299fffdd288SMatthias Ringwald case 'n': 300fffdd288SMatthias Ringwald log_info("USER:\'%c\'", cmd); 301fffdd288SMatthias Ringwald printf("Deactivate voice recognition\n"); 302c8626498SMilanka Ringwald hfp_hf_deactivate_voice_recognition_notification(acl_handle); 303fffdd288SMatthias Ringwald break; 304fffdd288SMatthias Ringwald case 'N': 305fffdd288SMatthias Ringwald log_info("USER:\'%c\'", cmd); 30608d1a604SMilanka Ringwald printf("Activate voice recognition %s\n", bd_addr_to_str(device_addr)); 307c8626498SMilanka Ringwald hfp_hf_activate_voice_recognition_notification(acl_handle); 308fffdd288SMatthias Ringwald break; 309fffdd288SMatthias Ringwald case 'o': 310fffdd288SMatthias Ringwald log_info("USER:\'%c\'", cmd); 311fffdd288SMatthias Ringwald printf("Set speaker gain to 0 (minimum)\n"); 312c8626498SMilanka Ringwald hfp_hf_set_speaker_gain(acl_handle, 0); 313fffdd288SMatthias Ringwald break; 314fffdd288SMatthias Ringwald case 'O': 315fffdd288SMatthias Ringwald log_info("USER:\'%c\'", cmd); 316fffdd288SMatthias Ringwald printf("Set speaker gain to 9 (default)\n"); 317c8626498SMilanka Ringwald hfp_hf_set_speaker_gain(acl_handle, 9); 318fffdd288SMatthias Ringwald break; 319fffdd288SMatthias Ringwald case 'p': 320fffdd288SMatthias Ringwald log_info("USER:\'%c\'", cmd); 321fffdd288SMatthias Ringwald printf("Set speaker gain to 12 (higher)\n"); 322c8626498SMilanka Ringwald hfp_hf_set_speaker_gain(acl_handle, 12); 323fffdd288SMatthias Ringwald break; 324fffdd288SMatthias Ringwald case 'P': 325fffdd288SMatthias Ringwald log_info("USER:\'%c\'", cmd); 326fffdd288SMatthias Ringwald printf("Set speaker gain to 15 (maximum)\n"); 327c8626498SMilanka Ringwald hfp_hf_set_speaker_gain(acl_handle, 15); 328fffdd288SMatthias Ringwald break; 329fffdd288SMatthias Ringwald case 'q': 330fffdd288SMatthias Ringwald log_info("USER:\'%c\'", cmd); 331fffdd288SMatthias Ringwald printf("Set microphone gain to 0\n"); 332c8626498SMilanka Ringwald hfp_hf_set_microphone_gain(acl_handle, 0); 333fffdd288SMatthias Ringwald break; 334fffdd288SMatthias Ringwald case 'Q': 335fffdd288SMatthias Ringwald log_info("USER:\'%c\'", cmd); 336fffdd288SMatthias Ringwald printf("Set microphone gain to 9\n"); 337c8626498SMilanka Ringwald hfp_hf_set_microphone_gain(acl_handle, 9); 338fffdd288SMatthias Ringwald break; 339fffdd288SMatthias Ringwald case 's': 340fffdd288SMatthias Ringwald log_info("USER:\'%c\'", cmd); 341fffdd288SMatthias Ringwald printf("Set microphone gain to 12\n"); 342c8626498SMilanka Ringwald hfp_hf_set_microphone_gain(acl_handle, 12); 343fffdd288SMatthias Ringwald break; 344fffdd288SMatthias Ringwald case 'S': 345fffdd288SMatthias Ringwald log_info("USER:\'%c\'", cmd); 346fffdd288SMatthias Ringwald printf("Set microphone gain to 15\n"); 347c8626498SMilanka Ringwald hfp_hf_set_microphone_gain(acl_handle, 15); 348fffdd288SMatthias Ringwald break; 349fffdd288SMatthias Ringwald case 'u': 350fffdd288SMatthias Ringwald log_info("USER:\'%c\'", cmd); 351fffdd288SMatthias Ringwald printf("Send 'user busy' (Three-Way Call 0)\n"); 352c8626498SMilanka Ringwald hfp_hf_user_busy(acl_handle); 353fffdd288SMatthias Ringwald break; 354fffdd288SMatthias Ringwald case 'U': 355fffdd288SMatthias Ringwald log_info("USER:\'%c\'", cmd); 356fffdd288SMatthias Ringwald printf("End active call and accept waiting/held call (Three-Way Call 1)\n"); 357c8626498SMilanka Ringwald hfp_hf_end_active_and_accept_other(acl_handle); 358fffdd288SMatthias Ringwald break; 359fffdd288SMatthias Ringwald case 'v': 360fffdd288SMatthias Ringwald log_info("USER:\'%c\'", cmd); 361fffdd288SMatthias Ringwald printf("Swap active call and hold/waiting call (Three-Way Call 2)\n"); 362c8626498SMilanka Ringwald hfp_hf_swap_calls(acl_handle); 363fffdd288SMatthias Ringwald break; 364fffdd288SMatthias Ringwald case 'V': 365fffdd288SMatthias Ringwald log_info("USER:\'%c\'", cmd); 366fffdd288SMatthias Ringwald printf("Join hold call (Three-Way Call 3)\n"); 367c8626498SMilanka Ringwald hfp_hf_join_held_call(acl_handle); 368fffdd288SMatthias Ringwald break; 369fffdd288SMatthias Ringwald case 'w': 370fffdd288SMatthias Ringwald log_info("USER:\'%c\'", cmd); 371fffdd288SMatthias Ringwald printf("Connect calls (Three-Way Call 4)\n"); 372c8626498SMilanka Ringwald hfp_hf_connect_calls(acl_handle); 373fffdd288SMatthias Ringwald break; 374fffdd288SMatthias Ringwald case 'W': 375fffdd288SMatthias Ringwald log_info("USER:\'%c\'", cmd); 376fffdd288SMatthias Ringwald printf("Redial\n"); 377c8626498SMilanka Ringwald hfp_hf_redial_last_number(acl_handle); 378fffdd288SMatthias Ringwald break; 379fffdd288SMatthias Ringwald case 'x': 380fffdd288SMatthias Ringwald log_info("USER:\'%c\'", cmd); 381fffdd288SMatthias Ringwald printf("Request phone number for voice tag\n"); 382c8626498SMilanka Ringwald hfp_hf_request_phone_number_for_voice_tag(acl_handle); 383fffdd288SMatthias Ringwald break; 384fffdd288SMatthias Ringwald case 'X': 385fffdd288SMatthias Ringwald log_info("USER:\'%c\'", cmd); 386fffdd288SMatthias Ringwald printf("Query current call status\n"); 387c8626498SMilanka Ringwald hfp_hf_query_current_call_status(acl_handle); 388fffdd288SMatthias Ringwald break; 389fffdd288SMatthias Ringwald case 'y': 390fffdd288SMatthias Ringwald log_info("USER:\'%c\'", cmd); 391fffdd288SMatthias Ringwald printf("Release call with index 2\n"); 392c8626498SMilanka Ringwald hfp_hf_release_call_with_index(acl_handle, 2); 393fffdd288SMatthias Ringwald break; 394fffdd288SMatthias Ringwald case 'Y': 395fffdd288SMatthias Ringwald log_info("USER:\'%c\'", cmd); 396fffdd288SMatthias Ringwald printf("Private consulation with call 2\n"); 397c8626498SMilanka Ringwald hfp_hf_private_consultation_with_call(acl_handle, 2); 398fffdd288SMatthias Ringwald break; 399fffdd288SMatthias Ringwald case '[': 400fffdd288SMatthias Ringwald log_info("USER:\'%c\'", cmd); 401fffdd288SMatthias Ringwald printf("Query Response and Hold status (RHH ?)\n"); 402c8626498SMilanka Ringwald hfp_hf_rrh_query_status(acl_handle); 403fffdd288SMatthias Ringwald break; 404fffdd288SMatthias Ringwald case ']': 405fffdd288SMatthias Ringwald log_info("USER:\'%c\'", cmd); 406fffdd288SMatthias Ringwald printf("Place call in a response and held state (RHH 0)\n"); 407c8626498SMilanka Ringwald hfp_hf_rrh_hold_call(acl_handle); 408fffdd288SMatthias Ringwald break; 409fffdd288SMatthias Ringwald case '{': 410fffdd288SMatthias Ringwald log_info("USER:\'%c\'", cmd); 411fffdd288SMatthias Ringwald printf("Accept held call (RHH 1)\n"); 412c8626498SMilanka Ringwald hfp_hf_rrh_accept_held_call(acl_handle); 413fffdd288SMatthias Ringwald break; 414fffdd288SMatthias Ringwald case '}': 415fffdd288SMatthias Ringwald log_info("USER:\'%c\'", cmd); 416fffdd288SMatthias Ringwald printf("Reject held call (RHH 2)\n"); 417c8626498SMilanka Ringwald hfp_hf_rrh_reject_held_call(acl_handle); 418fffdd288SMatthias Ringwald break; 419fffdd288SMatthias Ringwald case '?': 420fffdd288SMatthias Ringwald log_info("USER:\'%c\'", cmd); 421fffdd288SMatthias Ringwald printf("Query Subscriber Number\n"); 422c8626498SMilanka Ringwald hfp_hf_query_subscriber_number(acl_handle); 423fffdd288SMatthias Ringwald break; 424fffdd288SMatthias Ringwald case '!': 425fffdd288SMatthias Ringwald log_info("USER:\'%c\'", cmd); 426fffdd288SMatthias Ringwald printf("Update HF indicator with assigned number 1 (HFI)\n"); 427c8626498SMilanka Ringwald hfp_hf_set_hf_indicator(acl_handle, 1, 1); 428fffdd288SMatthias Ringwald break; 429fffdd288SMatthias Ringwald 430fffdd288SMatthias Ringwald default: 431fffdd288SMatthias Ringwald show_usage(); 432fffdd288SMatthias Ringwald break; 433fffdd288SMatthias Ringwald } 434fffdd288SMatthias Ringwald } 435fffdd288SMatthias Ringwald #endif 436fffdd288SMatthias Ringwald 43713839019SMatthias Ringwald static void packet_handler(uint8_t packet_type, uint16_t channel, uint8_t * event, uint16_t event_size){ 438*9ec2630cSMatthias Ringwald UNUSED(channel); 439185c8cd4SMatthias Ringwald 44082aca432SMatthias Ringwald switch (packet_type){ 44182aca432SMatthias Ringwald 44282aca432SMatthias Ringwald case HCI_SCO_DATA_PACKET: 443fcb08cdbSMilanka Ringwald sco_demo_receive(event, event_size); 44482aca432SMatthias Ringwald break; 44582aca432SMatthias Ringwald 44682aca432SMatthias Ringwald case HCI_EVENT_PACKET: 44782aca432SMatthias Ringwald switch (event[0]){ 44882aca432SMatthias Ringwald case HCI_EVENT_SCO_CAN_SEND_NOW: 449185c8cd4SMatthias Ringwald sco_demo_send(sco_handle); 45082aca432SMatthias Ringwald break; 45182aca432SMatthias Ringwald 452f9f7adeeSMatthias Ringwald case HCI_EVENT_COMMAND_COMPLETE: 453f9f7adeeSMatthias Ringwald if (HCI_EVENT_IS_COMMAND_COMPLETE(event, hci_read_local_supported_features)){ 454f9f7adeeSMatthias Ringwald dump_supported_codecs(); 455f9f7adeeSMatthias Ringwald } 456f9f7adeeSMatthias Ringwald break; 457f9f7adeeSMatthias Ringwald 45882aca432SMatthias Ringwald case HCI_EVENT_HFP_META: 45982aca432SMatthias Ringwald switch (event[2]) { 46082aca432SMatthias Ringwald case HFP_SUBEVENT_SERVICE_LEVEL_CONNECTION_ESTABLISHED: 461c8626498SMilanka Ringwald acl_handle = hfp_subevent_service_level_connection_established_get_con_handle(event); 46208d1a604SMilanka Ringwald hfp_subevent_service_level_connection_established_get_bd_addr(event, device_addr); 46308d1a604SMilanka Ringwald printf("Service level connection established %s.\n\n", bd_addr_to_str(device_addr)); 46482aca432SMatthias Ringwald break; 46582aca432SMatthias Ringwald case HFP_SUBEVENT_SERVICE_LEVEL_CONNECTION_RELEASED: 46682aca432SMatthias Ringwald printf("Service level connection released.\n\n"); 46782aca432SMatthias Ringwald break; 46882aca432SMatthias Ringwald case HFP_SUBEVENT_AUDIO_CONNECTION_ESTABLISHED: 46982aca432SMatthias Ringwald if (hfp_subevent_audio_connection_established_get_status(event)){ 47082aca432SMatthias Ringwald sco_handle = 0; 47182aca432SMatthias Ringwald printf("Audio connection establishment failed with status %u\n", hfp_subevent_audio_connection_established_get_status(event)); 47282aca432SMatthias Ringwald } else { 47382aca432SMatthias Ringwald sco_handle = hfp_subevent_audio_connection_established_get_handle(event); 4748901a7c4SMatthias Ringwald printf("Audio connection established with SCO handle 0x%04x.\n", sco_handle); 475d0c4aea6SMilanka Ringwald negotiated_codec = hfp_subevent_audio_connection_established_get_negotiated_codec(event); 476f9f7adeeSMatthias Ringwald switch (negotiated_codec){ 477f9f7adeeSMatthias Ringwald case 0x01: 478f9f7adeeSMatthias Ringwald printf("Using CVSD codec.\n"); 479f9f7adeeSMatthias Ringwald break; 480f9f7adeeSMatthias Ringwald case 0x02: 481f9f7adeeSMatthias Ringwald printf("Using mSBC codec.\n"); 482f9f7adeeSMatthias Ringwald break; 483f9f7adeeSMatthias Ringwald default: 484f9f7adeeSMatthias Ringwald printf("Using unknown codec 0x%02x.\n", negotiated_codec); 485f9f7adeeSMatthias Ringwald break; 486f9f7adeeSMatthias Ringwald } 487d0c4aea6SMilanka Ringwald sco_demo_set_codec(negotiated_codec); 48882aca432SMatthias Ringwald hci_request_sco_can_send_now_event(); 489185c8cd4SMatthias Ringwald } 49082aca432SMatthias Ringwald break; 49182aca432SMatthias Ringwald case HFP_SUBEVENT_AUDIO_CONNECTION_RELEASED: 49282aca432SMatthias Ringwald sco_handle = 0; 49382aca432SMatthias Ringwald printf("Audio connection released\n"); 494fcb08cdbSMilanka Ringwald sco_demo_close(); 49582aca432SMatthias Ringwald break; 49682aca432SMatthias Ringwald case HFP_SUBEVENT_COMPLETE: 49782aca432SMatthias Ringwald switch (cmd){ 49882aca432SMatthias Ringwald case 'd': 49982aca432SMatthias Ringwald printf("HFP AG registration status update enabled.\n"); 50082aca432SMatthias Ringwald break; 50182aca432SMatthias Ringwald case 'e': 50282aca432SMatthias Ringwald printf("HFP AG registration status update for individual indicators set.\n"); 50382aca432SMatthias Ringwald default: 50482aca432SMatthias Ringwald break; 50582aca432SMatthias Ringwald } 50682aca432SMatthias Ringwald break; 50782aca432SMatthias Ringwald case HFP_SUBEVENT_AG_INDICATOR_STATUS_CHANGED: 50882aca432SMatthias Ringwald printf("AG_INDICATOR_STATUS_CHANGED, AG indicator '%s' (index: %d) to: %d\n", (const char*) &event[5], event[3], event[4]); 50982aca432SMatthias Ringwald break; 51082aca432SMatthias Ringwald case HFP_SUBEVENT_NETWORK_OPERATOR_CHANGED: 51182aca432SMatthias Ringwald printf("NETWORK_OPERATOR_CHANGED, operator mode: %d, format: %d, name: %s\n", event[3], event[4], (char *) &event[5]); 51282aca432SMatthias Ringwald break; 51382aca432SMatthias Ringwald case HFP_SUBEVENT_EXTENDED_AUDIO_GATEWAY_ERROR: 51482aca432SMatthias Ringwald printf("EXTENDED_AUDIO_GATEWAY_ERROR_REPORT, status : %d\n", event[3]); 51582aca432SMatthias Ringwald break; 51682aca432SMatthias Ringwald case HFP_SUBEVENT_RING: 51782aca432SMatthias Ringwald printf("** Ring **\n"); 51882aca432SMatthias Ringwald break; 51982aca432SMatthias Ringwald case HFP_SUBEVENT_NUMBER_FOR_VOICE_TAG: 52082aca432SMatthias Ringwald printf("Phone number for voice tag: %s\n", (const char *) &event[3]); 52182aca432SMatthias Ringwald break; 52282aca432SMatthias Ringwald case HFP_SUBEVENT_SPEAKER_VOLUME: 52382aca432SMatthias Ringwald printf("Speaker volume: %u\n", event[3]); 52482aca432SMatthias Ringwald break; 52582aca432SMatthias Ringwald case HFP_SUBEVENT_MICROPHONE_VOLUME: 52682aca432SMatthias Ringwald printf("Microphone volume: %u\n", event[3]); 52782aca432SMatthias Ringwald break; 52882aca432SMatthias Ringwald default: 52982aca432SMatthias Ringwald printf("event not handled %u\n", event[2]); 53082aca432SMatthias Ringwald break; 53182aca432SMatthias Ringwald } 53282aca432SMatthias Ringwald break; 53382aca432SMatthias Ringwald 53482aca432SMatthias Ringwald default: 53582aca432SMatthias Ringwald break; 53682aca432SMatthias Ringwald } 53782aca432SMatthias Ringwald break; 53882aca432SMatthias Ringwald 53982aca432SMatthias Ringwald default: 54082aca432SMatthias Ringwald break; 54182aca432SMatthias Ringwald } 54282aca432SMatthias Ringwald 543fffdd288SMatthias Ringwald if (event[0] != HCI_EVENT_HFP_META) return; 544fffdd288SMatthias Ringwald } 545fffdd288SMatthias Ringwald 546fffdd288SMatthias Ringwald /* @section Main Application Setup 547fffdd288SMatthias Ringwald * 548fffdd288SMatthias Ringwald * @text Listing MainConfiguration shows main application code. 549fffdd288SMatthias Ringwald * To run a HFP HF service you need to initialize the SDP, and to create and register HFP HF record with it. 550fffdd288SMatthias Ringwald * The packet_handler is used for sending commands to the HFP AG. It also receives the HFP AG's answers. 551fffdd288SMatthias Ringwald * The stdin_process callback allows for sending commands to the HFP AG. 552fffdd288SMatthias Ringwald * At the end the Bluetooth stack is started. 553fffdd288SMatthias Ringwald */ 554fffdd288SMatthias Ringwald 555fffdd288SMatthias Ringwald /* LISTING_START(MainConfiguration): Setup HFP Hands-Free unit */ 556fffdd288SMatthias Ringwald int btstack_main(int argc, const char * argv[]); 557fffdd288SMatthias Ringwald int btstack_main(int argc, const char * argv[]){ 558*9ec2630cSMatthias Ringwald (void)argc; 559*9ec2630cSMatthias Ringwald (void)argv; 560185c8cd4SMatthias Ringwald 561a895b9f0SMatthias Ringwald sco_demo_init(); 562a895b9f0SMatthias Ringwald 563a895b9f0SMatthias Ringwald // register for HCI events 564a895b9f0SMatthias Ringwald hci_event_callback_registration.callback = &packet_handler; 565a895b9f0SMatthias Ringwald hci_add_event_handler(&hci_event_callback_registration); 566a895b9f0SMatthias Ringwald hci_register_sco_packet_handler(&packet_handler); 567a895b9f0SMatthias Ringwald 568a895b9f0SMatthias Ringwald gap_discoverable_control(1); 569a895b9f0SMatthias Ringwald gap_set_class_of_device(0x200408); 570a895b9f0SMatthias Ringwald 571fffdd288SMatthias Ringwald // init L2CAP 572fffdd288SMatthias Ringwald l2cap_init(); 573fffdd288SMatthias Ringwald 5744f84bf36SMatthias Ringwald uint16_t hf_supported_features = 5754f84bf36SMatthias Ringwald (1<<HFP_HFSF_ESCO_S4) | 5764f84bf36SMatthias Ringwald (1<<HFP_HFSF_HF_INDICATORS) | 5774f84bf36SMatthias Ringwald (1<<HFP_HFSF_CODEC_NEGOTIATION) | 5784f84bf36SMatthias Ringwald (1<<HFP_HFSF_ENHANCED_CALL_STATUS) | 5794f84bf36SMatthias Ringwald (1<<HFP_HFSF_REMOTE_VOLUME_CONTROL); 5804f84bf36SMatthias Ringwald int wide_band_speech = 1; 5814f84bf36SMatthias Ringwald 582a895b9f0SMatthias Ringwald rfcomm_init(); 583fffdd288SMatthias Ringwald hfp_hf_init(rfcomm_channel_nr); 5844f84bf36SMatthias Ringwald hfp_hf_init_supported_features(hf_supported_features); 585fffdd288SMatthias Ringwald hfp_hf_init_hf_indicators(sizeof(indicators)/sizeof(uint16_t), indicators); 586fffdd288SMatthias Ringwald hfp_hf_init_codecs(sizeof(codecs), codecs); 587fffdd288SMatthias Ringwald 588fffdd288SMatthias Ringwald hfp_hf_register_packet_handler(packet_handler); 589185c8cd4SMatthias Ringwald hci_register_sco_packet_handler(&packet_handler); 590fffdd288SMatthias Ringwald 591a895b9f0SMatthias Ringwald sdp_init(); 592fffdd288SMatthias Ringwald memset(hfp_service_buffer, 0, sizeof(hfp_service_buffer)); 5934f84bf36SMatthias Ringwald hfp_hf_create_sdp_record(hfp_service_buffer, 0x10001, rfcomm_channel_nr, hfp_hf_service_name, hf_supported_features, wide_band_speech); 594fffdd288SMatthias Ringwald printf("SDP service record size: %u\n", de_get_len(hfp_service_buffer)); 595fffdd288SMatthias Ringwald sdp_register_service(hfp_service_buffer); 596a895b9f0SMatthias Ringwald 597fffdd288SMatthias Ringwald 598d0755cd6SMatthias Ringwald #ifdef HAVE_POSIX_STDIN 599fffdd288SMatthias Ringwald btstack_stdin_setup(stdin_process); 600fffdd288SMatthias Ringwald #endif 601fffdd288SMatthias Ringwald // turn on! 602fffdd288SMatthias Ringwald hci_power_control(HCI_POWER_ON); 603fffdd288SMatthias Ringwald return 0; 604fffdd288SMatthias Ringwald } 605fffdd288SMatthias Ringwald /* LISTING_END */ 6062b6b8c15SMilanka Ringwald /* EXAMPLE_END */ 607