Select one of the symbols to view example projects that use it.
 
Outline
#define BTA_HF_CLIENT_CO_H
#include "common/bt_target.h"
#include "bta/bta_hf_client_api.h"
Files
loading (1/5)...
SourceVuESP-IDF Framework and ExamplesESP-IDFcomponents/bt/host/bluedroid/bta/include/bta/bta_hf_client_co.h
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/* * SPDX-FileCopyrightText: 2015-2021 Espressif Systems (Shanghai) CO LTD * * SPDX-License-Identifier: Apache-2.0 *//* ... */ /****************************************************************************** * * This is the interface file for hf client call-out functions. * ******************************************************************************//* ... */ #ifndef BTA_HF_CLIENT_CO_H #define BTA_HF_CLIENT_CO_H #include "common/bt_target.h" #include "bta/bta_hf_client_api.h" #if (BTA_HF_INCLUDED == TRUE) #if (BTM_SCO_HCI_INCLUDED == TRUE) /******************************************************************************* ** ** Function bta_hf_client_co_audio_state ** ** Description This function is called by the HF CLIENT before the audio connection ** is brought up, after it comes up, and after it goes down. ** ** Parameters handle - handle of the AG instance ** state - Audio state ** codec - if WBS support is compiled in, codec to going to be used is provided ** and when in SCO_STATE_SETUP, BTM_I2SPCMConfig() must be called with ** the correct platform parameters. ** in the other states codec type should not be ignored ** ** Returns void ** *******************************************************************************//* ... */ void bta_hf_client_co_audio_state(UINT16 handle, UINT8 state, tBTA_HFP_PEER_CODEC codec); /******************************************************************************* ** ** Function bta_hf_client_sco_co_init ** ** Description This function can be used by the phone to initialize audio ** codec or for other initialization purposes before SCO connection ** is opened. ** ** ** Returns Void. ** *******************************************************************************//* ... */ tBTA_HFP_SCO_ROUTE_TYPE bta_hf_client_sco_co_init(UINT32 rx_bw, UINT32 tx_bw, tBTA_HFP_CODEC_INFO *p_codec_info, UINT8 app_id); /******************************************************************************* ** ** Function bta_hf_client_sco_co_open ** ** Description This function is executed when a SCO connection is open. ** ** ** Returns void ** *******************************************************************************//* ... */ void bta_hf_client_sco_co_open(UINT16 handle, UINT8 air_mode, UINT8 inout_pkt_size, UINT16 event); /******************************************************************************* ** ** Function bta_hf_client_sco_co_close ** ** Description This function is called when a SCO connection is closed ** ** ** Returns void ** *******************************************************************************//* ... */ void bta_hf_client_sco_co_close(void); /******************************************************************************* ** ** Function bta_hf_client_sco_co_out_data ** ** Description This function is called to send SCO data over HCI. ** ** Returns number of bytes got from application ** *******************************************************************************//* ... */ uint32_t bta_hf_client_sco_co_out_data(UINT8 *p_buf); /******************************************************************************* ** ** Function bta_hf_client_sco_co_in_data ** ** Description This function is called to send incoming SCO data to application. ** ** Returns void ** *******************************************************************************//* ... */ extern void bta_hf_client_sco_co_in_data(BT_HDR *p_buf, tBTM_SCO_DATA_FLAG status); /* ... */ #endif /* #if (BTM_SCO_HCI_INCLUDED == TRUE) */ /* ... */ #endif /* #if (BTA_HF_INCLUDED == TRUE) *//* ... */ #endif /* BTA_HF_CLIENT_CO_H */
Details
Show:
from
Types: Columns:
This file uses the notable symbols shown below. Click anywhere in the file to view more details.