xref: /btstack/src/gap.h (revision efc77985e3abe2b86c65a961b6e6a3ef759f5b3b)
1458bf4e8S[email protected] /*
2a0c35809S[email protected]  * Copyright (C) 2014 BlueKitchen GmbH
3458bf4e8S[email protected]  *
4458bf4e8S[email protected]  * Redistribution and use in source and binary forms, with or without
5458bf4e8S[email protected]  * modification, are permitted provided that the following conditions
6458bf4e8S[email protected]  * are met:
7458bf4e8S[email protected]  *
8458bf4e8S[email protected]  * 1. Redistributions of source code must retain the above copyright
9458bf4e8S[email protected]  *    notice, this list of conditions and the following disclaimer.
10458bf4e8S[email protected]  * 2. Redistributions in binary form must reproduce the above copyright
11458bf4e8S[email protected]  *    notice, this list of conditions and the following disclaimer in the
12458bf4e8S[email protected]  *    documentation and/or other materials provided with the distribution.
13458bf4e8S[email protected]  * 3. Neither the name of the copyright holders nor the names of
14458bf4e8S[email protected]  *    contributors may be used to endorse or promote products derived
15458bf4e8S[email protected]  *    from this software without specific prior written permission.
16458bf4e8S[email protected]  * 4. Any redistribution, use, or modification is done solely for
17458bf4e8S[email protected]  *    personal benefit and not for any commercial purpose or for
18458bf4e8S[email protected]  *    monetary gain.
19458bf4e8S[email protected]  *
20a0c35809S[email protected]  * THIS SOFTWARE IS PROVIDED BY BLUEKITCHEN GMBH AND CONTRIBUTORS
21458bf4e8S[email protected]  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22458bf4e8S[email protected]  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
232fca4dadSMilanka Ringwald  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BLUEKITCHEN
242fca4dadSMilanka Ringwald  * GMBH OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
25458bf4e8S[email protected]  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
26458bf4e8S[email protected]  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
27458bf4e8S[email protected]  * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
28458bf4e8S[email protected]  * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
29458bf4e8S[email protected]  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
30458bf4e8S[email protected]  * THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31458bf4e8S[email protected]  * SUCH DAMAGE.
32458bf4e8S[email protected]  *
33a0c35809S[email protected]  * Please inquire about commercial licensing options at
34a0c35809S[email protected]  * [email protected]
35458bf4e8S[email protected]  *
36458bf4e8S[email protected]  */
37458bf4e8S[email protected] 
38fe5a6c4eSMilanka Ringwald /**
39fe5a6c4eSMilanka Ringwald  * @title Genral Access Profile (GAP)
40fe5a6c4eSMilanka Ringwald  *
41fe5a6c4eSMilanka Ringwald  */
42fe5a6c4eSMilanka Ringwald 
4380e33422SMatthias Ringwald #ifndef GAP_H
4480e33422SMatthias Ringwald #define GAP_H
45458bf4e8S[email protected] 
46458bf4e8S[email protected] #if defined __cplusplus
47458bf4e8S[email protected] extern "C" {
48458bf4e8S[email protected] #endif
49458bf4e8S[email protected] 
50f7a05cdaSMatthias Ringwald #include "btstack_defines.h"
51eb886013SMatthias Ringwald #include "btstack_util.h"
52e6d6524dSMatthias Ringwald 
53e6d6524dSMatthias Ringwald #ifdef ENABLE_CLASSIC
541b6fb31bSMatthias Ringwald #include "classic/btstack_link_key_db.h"
55e6d6524dSMatthias Ringwald #endif
56f7a05cdaSMatthias Ringwald 
577aa35f6aSMatthias Ringwald // BIG has up to 2 BIS (stereo)
587aa35f6aSMatthias Ringwald #ifndef MAX_NR_BIS
597aa35f6aSMatthias Ringwald #define MAX_NR_BIS 2
607aa35f6aSMatthias Ringwald #endif
617aa35f6aSMatthias Ringwald 
625c1e56ddSMatthias Ringwald // CIG usually has up to 2 CIS (stereo)
635c1e56ddSMatthias Ringwald #ifndef MAX_NR_CIS
645c1e56ddSMatthias Ringwald #define MAX_NR_CIS 2
655c1e56ddSMatthias Ringwald #endif
665c1e56ddSMatthias Ringwald 
67cb230b9dS[email protected] typedef enum {
68cb230b9dS[email protected] 
69cb230b9dS[email protected] 	// MITM protection not required
70cb230b9dS[email protected] 	// No encryption required
71cb230b9dS[email protected] 	// No user interaction required
72cb230b9dS[email protected] 	LEVEL_0 = 0,
73cb230b9dS[email protected] 
74cb230b9dS[email protected] 	// MITM protection not required
75cb230b9dS[email protected] 	// No encryption required
76cb230b9dS[email protected] 	// Minimal user interaction desired
77cb230b9dS[email protected] 	LEVEL_1,
78cb230b9dS[email protected] 
79cb230b9dS[email protected] 	// MITM protection not required
80cb230b9dS[email protected] 	// Encryption required
81cb230b9dS[email protected] 	LEVEL_2,
82cb230b9dS[email protected] 
83cb230b9dS[email protected] 	// MITM protection required
84cb230b9dS[email protected] 	// Encryption required
85cb230b9dS[email protected] 	// User interaction acceptable
86cb230b9dS[email protected] 	LEVEL_3,
87cb230b9dS[email protected] 
88cb230b9dS[email protected] 	// MITM protection required
89cb230b9dS[email protected] 	// Encryption required
903c68dfa9S[email protected] 	// 128-bit equivalent strength for link and encryption keys required (P-192 is not enough)
91cb230b9dS[email protected] 	// User interaction acceptable
92cb230b9dS[email protected] 	LEVEL_4,
93cb230b9dS[email protected] } gap_security_level_t;
94cb230b9dS[email protected] 
955dbec6b3SMatthias Ringwald 
965dbec6b3SMatthias Ringwald typedef enum {
975dbec6b3SMatthias Ringwald     // non-secure
985dbec6b3SMatthias Ringwald     GAP_SECURITY_MODE_1 = 1,
995dbec6b3SMatthias Ringwald 
1005dbec6b3SMatthias Ringwald     // service level enforced security
1015dbec6b3SMatthias Ringwald     GAP_SECURITY_MODE_2,
1025dbec6b3SMatthias Ringwald 
1035dbec6b3SMatthias Ringwald     // link level enforced security
1045dbec6b3SMatthias Ringwald     GAP_SECURITY_MODE_3,
1055dbec6b3SMatthias Ringwald 
1065dbec6b3SMatthias Ringwald     // service level enforced security
1075dbec6b3SMatthias Ringwald     GAP_SECURITY_MODE_4
1085dbec6b3SMatthias Ringwald } gap_security_mode_t;
1095dbec6b3SMatthias Ringwald 
11034f9eab8S[email protected] typedef enum {
11134f9eab8S[email protected] 	GAP_SECURITY_NONE,
1125dbec6b3SMatthias Ringwald 	GAP_SECURITY_ENCRYPTED,		// SSP: JUST WORKS
11334f9eab8S[email protected] 	GAP_SECURITY_AUTHENTICATED, // SSP: numeric comparison, passkey, OOB
11434f9eab8S[email protected] 	// GAP_SECURITY_AUTHORIZED
1153c68dfa9S[email protected] } gap_security_state;
11634f9eab8S[email protected] 
117a1bf5ae7SMatthias Ringwald typedef enum {
118a1bf5ae7SMatthias Ringwald 	GAP_CONNECTION_INVALID,
119a1bf5ae7SMatthias Ringwald 	GAP_CONNECTION_ACL,
120a1bf5ae7SMatthias Ringwald 	GAP_CONNECTION_SCO,
121a1bf5ae7SMatthias Ringwald 	GAP_CONNECTION_LE
122a1bf5ae7SMatthias Ringwald } gap_connection_type_t;
123a1bf5ae7SMatthias Ringwald 
1246e364deaSMatthias Ringwald typedef struct le_connection_parameter_range{
1256e364deaSMatthias Ringwald     uint16_t le_conn_interval_min;
1266e364deaSMatthias Ringwald     uint16_t le_conn_interval_max;
1276e364deaSMatthias Ringwald     uint16_t le_conn_latency_min;
1286e364deaSMatthias Ringwald     uint16_t le_conn_latency_max;
1296e364deaSMatthias Ringwald     uint16_t le_supervision_timeout_min;
1306e364deaSMatthias Ringwald     uint16_t le_supervision_timeout_max;
1316e364deaSMatthias Ringwald } le_connection_parameter_range_t;
1326e364deaSMatthias Ringwald 
1336e364deaSMatthias Ringwald typedef enum {
1346e364deaSMatthias Ringwald     GAP_RANDOM_ADDRESS_TYPE_OFF = 0,
1358f57b085SMatthias Ringwald     GAP_RANDOM_ADDRESS_TYPE_STATIC,
1366e364deaSMatthias Ringwald     GAP_RANDOM_ADDRESS_NON_RESOLVABLE,
1376e364deaSMatthias Ringwald     GAP_RANDOM_ADDRESS_RESOLVABLE,
1386e364deaSMatthias Ringwald } gap_random_address_type_t;
1396e364deaSMatthias Ringwald 
1409c6e867eSMatthias Ringwald // Authorization state
1419c6e867eSMatthias Ringwald typedef enum {
1429c6e867eSMatthias Ringwald     AUTHORIZATION_UNKNOWN,
1439c6e867eSMatthias Ringwald     AUTHORIZATION_PENDING,
1449c6e867eSMatthias Ringwald     AUTHORIZATION_DECLINED,
1459c6e867eSMatthias Ringwald     AUTHORIZATION_GRANTED
1469c6e867eSMatthias Ringwald } authorization_state_t;
1479c6e867eSMatthias Ringwald 
148b56957b7SMatthias Ringwald // Extended Advertising Parameters
149b56957b7SMatthias Ringwald typedef struct {
150b56957b7SMatthias Ringwald     uint16_t        advertising_event_properties;
151b56957b7SMatthias Ringwald     uint16_t        primary_advertising_interval_min;
152b56957b7SMatthias Ringwald     uint16_t        primary_advertising_interval_max;
153b56957b7SMatthias Ringwald     uint8_t         primary_advertising_channel_map;
154b56957b7SMatthias Ringwald     bd_addr_type_t  own_address_type;
155b56957b7SMatthias Ringwald     bd_addr_type_t  peer_address_type;
156b56957b7SMatthias Ringwald     bd_addr_t       peer_address;
157b56957b7SMatthias Ringwald     uint8_t         advertising_filter_policy;
158b56957b7SMatthias Ringwald     int8_t          advertising_tx_power;
159b56957b7SMatthias Ringwald     uint8_t         primary_advertising_phy;
160b56957b7SMatthias Ringwald     uint8_t         secondary_advertising_max_skip;
161b56957b7SMatthias Ringwald     uint8_t         secondary_advertising_phy;
162b56957b7SMatthias Ringwald     uint8_t         advertising_sid;
163b56957b7SMatthias Ringwald     uint8_t         scan_request_notification_enable;
164b56957b7SMatthias Ringwald } le_extended_advertising_parameters_t;
165b56957b7SMatthias Ringwald 
16653f240c0SMatthias Ringwald typedef struct {
16753f240c0SMatthias Ringwald     uint16_t  periodic_advertising_interval_min;
16853f240c0SMatthias Ringwald     uint16_t  periodic_advertising_interval_max;
16953f240c0SMatthias Ringwald     uint16_t  periodic_advertising_properties;
17053f240c0SMatthias Ringwald } le_periodic_advertising_parameters_t;
17153f240c0SMatthias Ringwald 
172b56957b7SMatthias Ringwald // Extended Advertising Set State
173b56957b7SMatthias Ringwald typedef struct {
174b56957b7SMatthias Ringwald     btstack_linked_item_t item;
17557a04237SMatthias Ringwald     le_extended_advertising_parameters_t extended_params;
17653f240c0SMatthias Ringwald     le_periodic_advertising_parameters_t periodic_params;
177b56957b7SMatthias Ringwald     bd_addr_t random_address;
1782e4aaf70SMatthias Ringwald     const uint8_t * adv_data;
1792e4aaf70SMatthias Ringwald     const uint8_t * scan_data;
1802e4aaf70SMatthias Ringwald     const uint8_t * periodic_data;
181b56957b7SMatthias Ringwald     uint16_t  adv_data_len;
182b56957b7SMatthias Ringwald     uint16_t  scan_data_len;
18353f240c0SMatthias Ringwald     uint16_t  periodic_data_len;
184be7ef9d8SMatthias Ringwald     uint16_t  adv_data_pos;
185be7ef9d8SMatthias Ringwald     uint16_t  scan_data_pos;
1860cbe4690SMatthias Ringwald     uint16_t  periodic_data_pos;
187b56957b7SMatthias Ringwald     uint16_t  enable_timeout;
188b56957b7SMatthias Ringwald     uint8_t   advertising_handle;
189b56957b7SMatthias Ringwald     uint8_t   enable_max_scan_events;
19053f240c0SMatthias Ringwald     bool      periodic_include_adi;
191b56957b7SMatthias Ringwald     uint8_t   state;
192b56957b7SMatthias Ringwald     uint8_t   tasks;
193b56957b7SMatthias Ringwald } le_advertising_set_t;
1949c6e867eSMatthias Ringwald 
1957aa35f6aSMatthias Ringwald // Isochronous Streams
1967aa35f6aSMatthias Ringwald 
1977aa35f6aSMatthias Ringwald // -- Broadcast Isochronous Group BIG
1987aa35f6aSMatthias Ringwald 
1997aa35f6aSMatthias Ringwald typedef struct {
2007aa35f6aSMatthias Ringwald     uint8_t  big_handle;
2017aa35f6aSMatthias Ringwald     uint8_t  advertising_handle;
2027aa35f6aSMatthias Ringwald     uint8_t  num_bis;
2037aa35f6aSMatthias Ringwald     uint32_t sdu_interval_us;
2047aa35f6aSMatthias Ringwald     uint16_t max_sdu;
2057aa35f6aSMatthias Ringwald     uint16_t max_transport_latency_ms;
2067aa35f6aSMatthias Ringwald     uint8_t  rtn;
2077aa35f6aSMatthias Ringwald     uint8_t  phy;
2087aa35f6aSMatthias Ringwald     uint8_t  packing;
2097aa35f6aSMatthias Ringwald     uint8_t  framing;
2107aa35f6aSMatthias Ringwald     uint8_t  encryption;
2117aa35f6aSMatthias Ringwald     uint8_t  broadcast_code[16];
2127aa35f6aSMatthias Ringwald } le_audio_big_params_t;
2137aa35f6aSMatthias Ringwald 
2142a6c0f82SMatthias Ringwald typedef struct {
2152a6c0f82SMatthias Ringwald     uint8_t  big_handle;
2162a6c0f82SMatthias Ringwald     uint8_t  sync_handle;
2172a6c0f82SMatthias Ringwald     uint8_t  encryption;
2182a6c0f82SMatthias Ringwald     uint8_t  broadcast_code[16];
2192a6c0f82SMatthias Ringwald     uint8_t  mse;
2202a6c0f82SMatthias Ringwald     uint16_t big_sync_timeout_10ms;
2212a6c0f82SMatthias Ringwald     uint8_t  num_bis;
2226d432d08SBjoern Hartmann     uint8_t bis_indices[MAX_NR_BIS];
2232a6c0f82SMatthias Ringwald } le_audio_big_sync_params_t;
2242a6c0f82SMatthias Ringwald 
2257aa35f6aSMatthias Ringwald typedef enum {
2267aa35f6aSMatthias Ringwald     LE_AUDIO_BIG_STATE_CREATE,
2277aa35f6aSMatthias Ringwald     LE_AUDIO_BIG_STATE_W4_ESTABLISHED,
2287aa35f6aSMatthias Ringwald     LE_AUDIO_BIG_STATE_SETUP_ISO_PATH,
2297aa35f6aSMatthias Ringwald     LE_AUDIO_BIG_STATE_W4_SETUP_ISO_PATH,
2307aa35f6aSMatthias Ringwald     LE_AUDIO_BIG_STATE_W4_SETUP_ISO_PATH_THEN_TERMINATE,
2317aa35f6aSMatthias Ringwald     LE_AUDIO_BIG_STATE_SETUP_ISO_PATHS_FAILED,
2322a6c0f82SMatthias Ringwald     LE_AUDIO_BIG_STATE_ACTIVE,
2337aa35f6aSMatthias Ringwald     LE_AUDIO_BIG_STATE_TERMINATE,
2342a6c0f82SMatthias Ringwald     LE_AUDIO_BIG_STATE_W4_TERMINATED_AFTER_SETUP_FAILED,
2357aa35f6aSMatthias Ringwald     LE_AUDIO_BIG_STATE_W4_TERMINATED,
2367aa35f6aSMatthias Ringwald } le_audio_big_state_t;
2377aa35f6aSMatthias Ringwald 
2387aa35f6aSMatthias Ringwald typedef struct {
2397aa35f6aSMatthias Ringwald 	btstack_linked_item_t item;
2407aa35f6aSMatthias Ringwald     uint8_t big_handle;
2417aa35f6aSMatthias Ringwald     le_audio_big_state_t state;
2427aa35f6aSMatthias Ringwald     union {
2437aa35f6aSMatthias Ringwald         uint8_t next_bis;
2447aa35f6aSMatthias Ringwald         uint8_t status;
2457aa35f6aSMatthias Ringwald     } state_vars;
2467aa35f6aSMatthias Ringwald     uint8_t num_bis;
2477aa35f6aSMatthias Ringwald     hci_con_handle_t bis_con_handles[MAX_NR_BIS];
2487aa35f6aSMatthias Ringwald     const le_audio_big_params_t * params;
2495ade6657SMatthias Ringwald     // request to send
2505ade6657SMatthias Ringwald     bool can_send_now_requested;
251fe977b37SMatthias Ringwald     // previous and current timestamp of number completed event to track ISO intervals
252aacb1081SMatthias Ringwald     bool     num_completed_timestamp_previous_valid;
253fe977b37SMatthias Ringwald     bool     num_completed_timestamp_current_valid;
254aacb1081SMatthias Ringwald     uint32_t num_completed_timestamp_previous_ms;
255fe977b37SMatthias Ringwald     uint32_t num_completed_timestamp_current_ms;
256aacb1081SMatthias Ringwald 
2577aa35f6aSMatthias Ringwald } le_audio_big_t;
2587aa35f6aSMatthias Ringwald 
2592a6c0f82SMatthias Ringwald typedef struct {
2602a6c0f82SMatthias Ringwald     btstack_linked_item_t  item;
2612a6c0f82SMatthias Ringwald     uint8_t big_handle;
2622a6c0f82SMatthias Ringwald     le_audio_big_state_t   state;
2632a6c0f82SMatthias Ringwald     union {
2642a6c0f82SMatthias Ringwald         uint8_t next_bis;
2652a6c0f82SMatthias Ringwald         uint8_t status;
2662a6c0f82SMatthias Ringwald     } state_vars;
2672a6c0f82SMatthias Ringwald     uint8_t num_bis;
2682a6c0f82SMatthias Ringwald     hci_con_handle_t bis_con_handles[MAX_NR_BIS];
2692a6c0f82SMatthias Ringwald     const le_audio_big_sync_params_t * params;
2702a6c0f82SMatthias Ringwald } le_audio_big_sync_t;
2712a6c0f82SMatthias Ringwald 
272a3a7e585SMatthias Ringwald // -- Connected Isochronuous Group CIG
273a3a7e585SMatthias Ringwald 
274a3a7e585SMatthias Ringwald typedef enum {
275a3a7e585SMatthias Ringwald     LE_AUDIO_CIG_STATE_CREATE,
276a3a7e585SMatthias Ringwald     LE_AUDIO_CIG_STATE_W4_ESTABLISHED,
277444e371eSMatthias Ringwald     LE_AUDIO_CIG_STATE_W4_CIS_REQUEST,
278444e371eSMatthias Ringwald     LE_AUDIO_CIG_STATE_CREATE_CIS,
279444e371eSMatthias Ringwald     LE_AUDIO_CIG_STATE_W4_CREATE_CIS,
280444e371eSMatthias Ringwald     LE_AUDIO_CIG_STATE_SETUP_ISO_PATH,
281444e371eSMatthias Ringwald     LE_AUDIO_CIG_STATE_W4_SETUP_ISO_PATH,
282a3a7e585SMatthias Ringwald     LE_AUDIO_CIG_STATE_ACTIVE,
283444e371eSMatthias Ringwald     LE_AUDIO_CIG_STATE_REMOVE,
284a3a7e585SMatthias Ringwald } le_audio_cig_state_t;
285a3a7e585SMatthias Ringwald 
286a3a7e585SMatthias Ringwald typedef struct {
287a3a7e585SMatthias Ringwald     uint8_t  cis_id;
288a3a7e585SMatthias Ringwald     uint16_t max_sdu_c_to_p;
289a3a7e585SMatthias Ringwald     uint16_t max_sdu_p_to_c;
290a3a7e585SMatthias Ringwald     uint8_t phy_c_to_p;
291a3a7e585SMatthias Ringwald     uint8_t phy_p_to_c;
292a3a7e585SMatthias Ringwald     uint8_t rtn_c_to_p;
293a3a7e585SMatthias Ringwald     uint8_t rtn_p_to_c;
294a3a7e585SMatthias Ringwald } le_audio_cis_params_t;
295a3a7e585SMatthias Ringwald 
296a3a7e585SMatthias Ringwald typedef struct {
297a3a7e585SMatthias Ringwald     uint8_t  cig_id;
298a3a7e585SMatthias Ringwald     uint32_t sdu_interval_c_to_p;
299a3a7e585SMatthias Ringwald     uint32_t sdu_interval_p_to_c;
300a3a7e585SMatthias Ringwald     uint8_t worst_case_sca;
301a3a7e585SMatthias Ringwald     uint8_t packing;
302a3a7e585SMatthias Ringwald     uint8_t framing;
303a3a7e585SMatthias Ringwald     uint16_t max_transport_latency_c_to_p;
304a3a7e585SMatthias Ringwald     uint16_t max_transport_latency_p_to_c;
305a3a7e585SMatthias Ringwald     uint8_t num_cis;
306a3a7e585SMatthias Ringwald     le_audio_cis_params_t cis_params[MAX_NR_CIS];
307a3a7e585SMatthias Ringwald } le_audio_cig_params_t;
308a3a7e585SMatthias Ringwald 
309a3a7e585SMatthias Ringwald typedef struct {
310a3a7e585SMatthias Ringwald     btstack_linked_item_t item;
311a3a7e585SMatthias Ringwald     uint8_t cig_id;
312a3a7e585SMatthias Ringwald     le_audio_cig_params_t * params;
313a3a7e585SMatthias Ringwald     le_audio_cig_state_t state;
314a3a7e585SMatthias Ringwald     union {
315a3a7e585SMatthias Ringwald         uint8_t next_cis;
316a3a7e585SMatthias Ringwald         uint8_t status;
317a3a7e585SMatthias Ringwald     } state_vars;
318a3a7e585SMatthias Ringwald     uint8_t num_cis;
319a3a7e585SMatthias Ringwald     hci_con_handle_t cis_con_handles[MAX_NR_CIS];
320444e371eSMatthias Ringwald     hci_con_handle_t acl_con_handles[MAX_NR_CIS];
3213abcd16cSMatthias Ringwald     bool cis_setup_active[MAX_NR_CIS];
322f9306a1aSMatthias Ringwald     bool cis_established[MAX_NR_CIS];
323a3a7e585SMatthias Ringwald     // request to send
324a3a7e585SMatthias Ringwald     bool can_send_now_requested;
325a3a7e585SMatthias Ringwald } le_audio_cig_t;
326a3a7e585SMatthias Ringwald 
3273de95307SMilanka Ringwald /* API_START */
3283de95307SMilanka Ringwald 
329d8e8f12aSMatthias Ringwald // Classic + LE
330d8e8f12aSMatthias Ringwald 
331d8e8f12aSMatthias Ringwald /**
332e6d6524dSMatthias Ringwald  * @brief Read RSSI
333e6d6524dSMatthias Ringwald  * @param con_handle
334e6d6524dSMatthias Ringwald  * @events: GAP_EVENT_RSSI_MEASUREMENT
335e6d6524dSMatthias Ringwald  */
336e6d6524dSMatthias Ringwald int gap_read_rssi(hci_con_handle_t con_handle);
337e6d6524dSMatthias Ringwald 
338e6d6524dSMatthias Ringwald 
339e6d6524dSMatthias Ringwald /**
340e6d6524dSMatthias Ringwald  * @brief Gets local address.
341e6d6524dSMatthias Ringwald  */
342e6d6524dSMatthias Ringwald void gap_local_bd_addr(bd_addr_t address_buffer);
343e6d6524dSMatthias Ringwald 
344e6d6524dSMatthias Ringwald /**
345d8e8f12aSMatthias Ringwald  * @brief Disconnect connection with handle
346d8e8f12aSMatthias Ringwald  * @param handle
3479c096ccdSMatthias Ringwald  * @return status
348d8e8f12aSMatthias Ringwald  */
349d8e8f12aSMatthias Ringwald uint8_t gap_disconnect(hci_con_handle_t handle);
350d8e8f12aSMatthias Ringwald 
351d8e8f12aSMatthias Ringwald /**
352d8e8f12aSMatthias Ringwald  * @brief Get connection type
353d8e8f12aSMatthias Ringwald  * @param con_handle
354d8e8f12aSMatthias Ringwald  * @result connection_type
355d8e8f12aSMatthias Ringwald  */
356d8e8f12aSMatthias Ringwald gap_connection_type_t gap_get_connection_type(hci_con_handle_t connection_handle);
357d8e8f12aSMatthias Ringwald 
3582dceb1d6SMatthias Ringwald /**
3592dceb1d6SMatthias Ringwald  * @brief Get HCI connection role
3602dceb1d6SMatthias Ringwald  * @param con_handle
3612dceb1d6SMatthias Ringwald  * @result hci_role_t HCI_ROLE_MASTER / HCI_ROLE_SLAVE / HCI_ROLE_INVALID (if connection does not exist)
3622dceb1d6SMatthias Ringwald  */
3632dceb1d6SMatthias Ringwald hci_role_t gap_get_role(hci_con_handle_t connection_handle);
3642dceb1d6SMatthias Ringwald 
365d8e8f12aSMatthias Ringwald // Classic
366d8e8f12aSMatthias Ringwald 
367d8e8f12aSMatthias Ringwald /**
36888a03c8dSMatthias Ringwald  * @brief Request role switch
36988a03c8dSMatthias Ringwald  * @note this only requests the role switch. A HCI_EVENT_ROLE_CHANGE is emitted and its status field will indicate if the switch was succesful
37088a03c8dSMatthias Ringwald  * @param addr
37188a03c8dSMatthias Ringwald  * @param hci_role_t HCI_ROLE_MASTER / HCI_ROLE_SLAVE
37288a03c8dSMatthias Ringwald  * @result status
37388a03c8dSMatthias Ringwald  */
374667ba9d1SMatthias Ringwald uint8_t gap_request_role(const bd_addr_t addr, hci_role_t role);
37588a03c8dSMatthias Ringwald 
37688a03c8dSMatthias Ringwald /**
377d8e8f12aSMatthias Ringwald  * @brief Sets local name.
378ad0d1108SMatthias Ringwald  * @note Default name is 'BTstack 00:00:00:00:00:00'
379f868b059SMatthias Ringwald  * @note '00:00:00:00:00:00' in local_name will be replaced with actual bd addr
38059d59ecfSMatthias Ringwald  * @param name is not copied, make sure memory stays valid
381d8e8f12aSMatthias Ringwald  */
382d8e8f12aSMatthias Ringwald void gap_set_local_name(const char * local_name);
383d8e8f12aSMatthias Ringwald 
384458bf4e8S[email protected] /**
385ff00ed1cSMatthias Ringwald  * @brief Set Extended Inquiry Response data
386ad0d1108SMatthias Ringwald  * @note If not set, local name will be used for EIR data (see gap_set_local_name)
387f868b059SMatthias Ringwald  * @note '00:00:00:00:00:00' in local_name will be replaced with actual bd addr
38859d59ecfSMatthias Ringwald  * @param eir_data size HCI_EXTENDED_INQUIRY_RESPONSE_DATA_LEN (240) bytes, is not copied make sure memory stays valid
389ff00ed1cSMatthias Ringwald  */
390ff00ed1cSMatthias Ringwald void gap_set_extended_inquiry_response(const uint8_t * data);
391ff00ed1cSMatthias Ringwald 
392ff00ed1cSMatthias Ringwald /**
39359d59ecfSMatthias Ringwald  * @brief Set class of device
39460b9e82fSMatthias Ringwald  */
39560b9e82fSMatthias Ringwald void gap_set_class_of_device(uint32_t class_of_device);
39660b9e82fSMatthias Ringwald 
39760b9e82fSMatthias Ringwald /**
398c33e56d3SMatthias Ringwald  * @brief Set default link policy settings for all classic ACL links
399c33e56d3SMatthias Ringwald  * @param default_link_policy_settings - see LM_LINK_POLICY_* in bluetooth.h
400c33e56d3SMatthias Ringwald  * @note common value: LM_LINK_POLICY_ENABLE_ROLE_SWITCH | LM_LINK_POLICY_ENABLE_SNIFF_MODE to enable role switch and sniff mode
401c33e56d3SMatthias Ringwald  */
402c33e56d3SMatthias Ringwald void gap_set_default_link_policy_settings(uint16_t default_link_policy_settings);
403c33e56d3SMatthias Ringwald 
404c33e56d3SMatthias Ringwald /**
405b4eb4420SMatthias Ringwald  * @brief Set Allow Role Switch param for outgoing classic ACL links
406b4eb4420SMatthias Ringwald  * @param allow_role_switch - true: allow remote device to request role switch, false: stay master
407b4eb4420SMatthias Ringwald  */
408b4eb4420SMatthias Ringwald void gap_set_allow_role_switch(bool allow_role_switch);
409b4eb4420SMatthias Ringwald 
410b4eb4420SMatthias Ringwald /**
411e6c51921SMatthias Ringwald  * @brief Set  link supervision timeout for outgoing classic ACL links
412d821984bSMatthias Ringwald  * @param default_link_supervision_timeout * 0.625 ms, default 0x7d00 = 20 seconds, 0 = no link supervision timeout
4130c3eb48dSMatthias Ringwald  */
4140c3eb48dSMatthias Ringwald void gap_set_link_supervision_timeout(uint16_t link_supervision_timeout);
4150c3eb48dSMatthias Ringwald 
4160c3eb48dSMatthias Ringwald /**
4179afaa4d4SMatthias Ringwald  * @brief Enable link watchdog. If no ACL packet is sent within timeout_ms, the link will get disconnected
4189afaa4d4SMatthias Ringwald  * note: current implementation uses the automatic flush timeout controller feature with a max timeout of 1.28s
4199afaa4d4SMatthias Ringwald  * @param timeout_ms
4209afaa4d4SMatthias Ringwald  */
4219afaa4d4SMatthias Ringwald void gap_enable_link_watchdog(uint16_t timeout_ms);
4229afaa4d4SMatthias Ringwald 
4239afaa4d4SMatthias Ringwald /**
4243de95307SMilanka Ringwald  * @brief Enable/disable bonding. Default is enabled.
4253de95307SMilanka Ringwald  * @param enabled
426458bf4e8S[email protected]  */
427458bf4e8S[email protected] void gap_set_bondable_mode(int enabled);
42834d2123cS[email protected] 
429ad83dc6aS[email protected] /**
430671d15e6SMatthias Ringwald  * @brief Get bondable mode.
431671d15e6SMatthias Ringwald  * @return 1 if bondable
432671d15e6SMatthias Ringwald  */
433671d15e6SMatthias Ringwald int gap_get_bondable_mode(void);
434671d15e6SMatthias Ringwald 
43507e010b6SMilanka Ringwald /**
4365dbec6b3SMatthias Ringwald  * @brief Set security mode for all outgoing and incoming connections. Default: GAP_SECURITY_MODE_4
4375dbec6b3SMatthias Ringwald  * @param security_mode is GAP_SECURITY_MODE_2 or GAP_SECURITY_MODE_4
438137715ebSMatthias Ringwald  * @return status ERROR_CODE_SUCCESS or ERROR_CODE_UNSUPPORTED_FEATURE_OR_PARAMETER_VALUE
4395dbec6b3SMatthias Ringwald  */
440137715ebSMatthias Ringwald uint8_t gap_set_security_mode(gap_security_mode_t security_mode);
4415dbec6b3SMatthias Ringwald 
4425dbec6b3SMatthias Ringwald /**
4435dbec6b3SMatthias Ringwald  * @brief Get security mode
4445dbec6b3SMatthias Ringwald  * @return security_mode
4455dbec6b3SMatthias Ringwald  */
4465dbec6b3SMatthias Ringwald gap_security_mode_t gap_get_security_mode(void);
4475dbec6b3SMatthias Ringwald 
4485dbec6b3SMatthias Ringwald /**
44978315a58SMatthias Ringwald  * @brief Set security level for all outgoing and incoming connections. Default: LEVEL_2
45078315a58SMatthias Ringwald  * @param security_level
45178315a58SMatthias Ringwald  * @note has to be called before services or profiles are initialized
45278315a58SMatthias Ringwald  */
45378315a58SMatthias Ringwald void gap_set_security_level(gap_security_level_t security_level);
45478315a58SMatthias Ringwald 
45578315a58SMatthias Ringwald /**
45678315a58SMatthias Ringwald  * @brief Get security level
45778315a58SMatthias Ringwald  * @return security_level
45878315a58SMatthias Ringwald  */
45978315a58SMatthias Ringwald gap_security_level_t gap_get_security_level(void);
46078315a58SMatthias Ringwald 
46178315a58SMatthias Ringwald /**
46230cdf3c6SMatthias Ringwald  * @brief Set Secure Connections Only Mode for BR/EDR (Classic) Default: false
46330cdf3c6SMatthias Ringwald  * @param enable
46430cdf3c6SMatthias Ringwald  */
46530cdf3c6SMatthias Ringwald void gap_set_secure_connections_only_mode(bool enable);
46630cdf3c6SMatthias Ringwald 
46730cdf3c6SMatthias Ringwald /**
46830cdf3c6SMatthias Ringwald  * @breif Get Secure Connections Only Mode
46930cdf3c6SMatthias Ringwald  * @param enabled
47030cdf3c6SMatthias Ringwald  */
47130cdf3c6SMatthias Ringwald bool gap_get_secure_connections_only_mode(void);
47230cdf3c6SMatthias Ringwald 
47330cdf3c6SMatthias Ringwald /**
4748ad4dfffSMatthias Ringwald  * @brief Set minimal security level for registered services
4758ad4dfffSMatthias Ringwald  * @param security_level
4768ad4dfffSMatthias Ringwald  * @note Called by L2CAP based on registered services
4778ad4dfffSMatthias Ringwald  */
4788ad4dfffSMatthias Ringwald void gap_set_minimal_service_security_level(gap_security_level_t security_level);
4798ad4dfffSMatthias Ringwald 
4808ad4dfffSMatthias Ringwald /**
48107e010b6SMilanka Ringwald  * @brief Register filter for rejecting classic connections. Callback will return 1 accept connection, 0 on reject.
48207e010b6SMilanka Ringwald  */
4835e91d96cSMatthias Ringwald void gap_register_classic_connection_filter(int (*accept_callback)(bd_addr_t addr, hci_link_type_t link_type));
48407e010b6SMilanka Ringwald 
48515a95bd5SMatthias Ringwald /* Configure Secure Simple Pairing */
48615a95bd5SMatthias Ringwald 
48715a95bd5SMatthias Ringwald /**
4885d23aae8SMatthias Ringwald  * @brief Enable will enable SSP during init. Default: true
48915a95bd5SMatthias Ringwald  */
49015a95bd5SMatthias Ringwald void gap_ssp_set_enable(int enable);
49115a95bd5SMatthias Ringwald 
49215a95bd5SMatthias Ringwald /**
49315a95bd5SMatthias Ringwald  * @brief Set IO Capability. BTstack will return capability to SSP requests
49415a95bd5SMatthias Ringwald  */
49515a95bd5SMatthias Ringwald void gap_ssp_set_io_capability(int ssp_io_capability);
49615a95bd5SMatthias Ringwald 
49715a95bd5SMatthias Ringwald /**
49815a95bd5SMatthias Ringwald  * @brief Set Authentication Requirements using during SSP
49915a95bd5SMatthias Ringwald  */
50015a95bd5SMatthias Ringwald void gap_ssp_set_authentication_requirement(int authentication_requirement);
50115a95bd5SMatthias Ringwald 
50215a95bd5SMatthias Ringwald /**
5035d23aae8SMatthias Ringwald  * @brief Enable/disable Secure Connections. Default: true if supported by Controller
5045d23aae8SMatthias Ringwald  */
5055d23aae8SMatthias Ringwald void gap_secure_connections_enable(bool enable);
5065d23aae8SMatthias Ringwald 
5075d23aae8SMatthias Ringwald /**
50822d445d8SMatthias Ringwald  * @brief Query if Secure Connections can be used for Classic connections.
50922d445d8SMatthias Ringwald  * @note Requires gap_secure_connections_enable == true and Controller to support it
51022d445d8SMatthias Ringwald  */
51122d445d8SMatthias Ringwald bool gap_secure_connections_active(void);
51222d445d8SMatthias Ringwald 
51322d445d8SMatthias Ringwald /**
51415a95bd5SMatthias Ringwald  * @brief If set, BTstack will confirm a numeric comparison and enter '000000' if requested.
51515a95bd5SMatthias Ringwald  */
51615a95bd5SMatthias Ringwald void gap_ssp_set_auto_accept(int auto_accept);
51715a95bd5SMatthias Ringwald 
518671d15e6SMatthias Ringwald /**
519170fafaeSMatthias Ringwald  * @brief Set required encryption key size for GAP Levels 1-3 on ccassic connections. Default: 16 bytes
520170fafaeSMatthias Ringwald  * @param encryption_key_size in bytes. Valid 7..16
521170fafaeSMatthias Ringwald  */
522170fafaeSMatthias Ringwald void gap_set_required_encryption_key_size(uint8_t encryption_key_size);
523170fafaeSMatthias Ringwald 
524170fafaeSMatthias Ringwald /**
5253de95307SMilanka Ringwald  * @brief Start dedicated bonding with device. Disconnect after bonding.
526ad83dc6aS[email protected]  * @param device
527ad83dc6aS[email protected]  * @param request MITM protection
5283de95307SMilanka Ringwald  * @return error, if max num acl connections active
529ad83dc6aS[email protected]  * @result GAP_DEDICATED_BONDING_COMPLETE
530ad83dc6aS[email protected]  */
531ad83dc6aS[email protected] int gap_dedicated_bonding(bd_addr_t device, int mitm_protection_required);
532ad83dc6aS[email protected] 
53334d2123cS[email protected] gap_security_level_t gap_security_level_for_link_key_type(link_key_type_t link_key_type);
5348b35e16aSMatthias Ringwald 
5358b35e16aSMatthias Ringwald /**
5368b35e16aSMatthias Ringwald  * @brief map link keys to secure connection yes/no
5378b35e16aSMatthias Ringwald  */
53836c3546bSMatthias Ringwald bool gap_secure_connection_for_link_key_type(link_key_type_t link_key_type);
5398b35e16aSMatthias Ringwald 
5408b35e16aSMatthias Ringwald /**
5418b35e16aSMatthias Ringwald  * @brief map link keys to authenticated
5428b35e16aSMatthias Ringwald  */
5437040ba26SMatthias Ringwald bool gap_authenticated_for_link_key_type(link_key_type_t link_key_type);
5448b35e16aSMatthias Ringwald 
545ad671560S[email protected] gap_security_level_t gap_security_level(hci_con_handle_t con_handle);
54634d2123cS[email protected] 
547ad671560S[email protected] void gap_request_security_level(hci_con_handle_t con_handle, gap_security_level_t level);
548d8e8f12aSMatthias Ringwald 
549552b9260SMatthias Ringwald bool gap_mitm_protection_required_for_security_level(gap_security_level_t level);
550458bf4e8S[email protected] 
551bea424a5SMatthias Ringwald /**
552bea424a5SMatthias Ringwald  * @brief Set Page Scan Type
553bea424a5SMatthias Ringwald  * @param page_scan_interval * 0.625 ms, range: 0x0012..0x1000, default: 0x0800
554bea424a5SMatthias Ringwald  * @param page_scan_windows  * 0.625 ms, range: 0x0011..page_scan_interval, default: 0x0012
555bea424a5SMatthias Ringwald  */
556bea424a5SMatthias Ringwald void gap_set_page_scan_activity(uint16_t page_scan_interval, uint16_t page_scan_window);
557bea424a5SMatthias Ringwald 
558bea424a5SMatthias Ringwald /**
559bea424a5SMatthias Ringwald  * @brief Set Page Scan Type
560bea424a5SMatthias Ringwald  * @param page_scan_mode
561bea424a5SMatthias Ringwald  */
562bea424a5SMatthias Ringwald void gap_set_page_scan_type(page_scan_type_t page_scan_type);
563bea424a5SMatthias Ringwald 
56432a12730SMatthias Ringwald /**
56532a12730SMatthias Ringwald  * @brief Set Page Timeout
56632a12730SMatthias Ringwald  * @param page_timeout * 0.625 ms, range: 0x0001..0xffff, default: 0x6000 (ca 15 seconds)
56732a12730SMatthias Ringwald  */
56832a12730SMatthias Ringwald void gap_set_page_timeout(uint16_t page_timeout);
56932a12730SMatthias Ringwald 
570d8e8f12aSMatthias Ringwald // LE
5718e618f72S[email protected] 
572a1bf5ae7SMatthias Ringwald /**
573d8e8f12aSMatthias Ringwald  * @brief Set parameters for LE Scan
5745a1ca52eSMatthias Ringwald  * @param scan_type 0 = passive, 1 = active
5755a1ca52eSMatthias Ringwald  * @param scan_interval range 0x0004..0x4000, unit 0.625 ms
5765a1ca52eSMatthias Ringwald  * @param scan_window range 0x0004..0x4000, unit 0.625 ms
5775a1ca52eSMatthias Ringwald  * @param scanning_filter_policy 0 = all devices, 1 = all from whitelist
5785a1ca52eSMatthias Ringwald  */
5795a1ca52eSMatthias Ringwald void gap_set_scan_params(uint8_t scan_type, uint16_t scan_interval, uint16_t scan_window, uint8_t scanning_filter_policy);
5805a1ca52eSMatthias Ringwald 
5815a1ca52eSMatthias Ringwald /**
5825a1ca52eSMatthias Ringwald  * @brief Set parameters for LE Scan
5835a1ca52eSMatthias Ringwald  * @deprecated Use gap_set_scan_params instead
584a1bf5ae7SMatthias Ringwald  */
585d8e8f12aSMatthias Ringwald void gap_set_scan_parameters(uint8_t scan_type, uint16_t scan_interval, uint16_t scan_window);
586d8e8f12aSMatthias Ringwald 
587d8e8f12aSMatthias Ringwald /**
5884856283bSMatthias Ringwald  * @brief Set duplicate filter for LE Scan
5894856283bSMatthias Ringwald  * @param enabled if enabled, only one advertisements per BD_ADDR is reported, default: false
5904856283bSMatthias Ringwald  */
5914856283bSMatthias Ringwald void gap_set_scan_duplicate_filter(bool enabled);
5924856283bSMatthias Ringwald 
5934856283bSMatthias Ringwald /**
5947eb5b27eSMatthias Ringwald  * @brief Set PHYs for LE Scan
5957eb5b27eSMatthias Ringwald  * @param phy bitmask: 1 = LE 1M PHY, 4 = LE Coded PHY
5967eb5b27eSMatthias Ringwald  */
5977eb5b27eSMatthias Ringwald void gap_set_scan_phys(uint8_t phys);
5987eb5b27eSMatthias Ringwald 
5997eb5b27eSMatthias Ringwald /**
600d8e8f12aSMatthias Ringwald  * @brief Start LE Scan
601d8e8f12aSMatthias Ringwald  */
602d8e8f12aSMatthias Ringwald void gap_start_scan(void);
603d8e8f12aSMatthias Ringwald 
604d8e8f12aSMatthias Ringwald /**
605d8e8f12aSMatthias Ringwald  * @brief Stop LE Scan
606d8e8f12aSMatthias Ringwald  */
607d8e8f12aSMatthias Ringwald void gap_stop_scan(void);
608a1bf5ae7SMatthias Ringwald 
609f7a05cdaSMatthias Ringwald /**
610f7a05cdaSMatthias Ringwald  * @brief Enable privacy by using random addresses
611f7a05cdaSMatthias Ringwald  * @param random_address_type to use (incl. OFF)
612f7a05cdaSMatthias Ringwald  */
613f7a05cdaSMatthias Ringwald void gap_random_address_set_mode(gap_random_address_type_t random_address_type);
614f7a05cdaSMatthias Ringwald 
615f7a05cdaSMatthias Ringwald /**
616f7a05cdaSMatthias Ringwald  * @brief Get privacy mode
617f7a05cdaSMatthias Ringwald  */
618f7a05cdaSMatthias Ringwald gap_random_address_type_t gap_random_address_get_mode(void);
619f7a05cdaSMatthias Ringwald 
620f7a05cdaSMatthias Ringwald /**
621f7a05cdaSMatthias Ringwald  * @brief Sets update period for random address
622f7a05cdaSMatthias Ringwald  * @param period_ms in ms
623f7a05cdaSMatthias Ringwald  */
624f7a05cdaSMatthias Ringwald  void gap_random_address_set_update_period(int period_ms);
625f7a05cdaSMatthias Ringwald 
626f7a05cdaSMatthias Ringwald /**
6277e252622SMatthias Ringwald  * @brief Sets a fixed random address for advertising
6287e252622SMatthias Ringwald  * @param addr
629fb8d2cd3SDavid Lechner  * @note Sets random address mode to type static
6307e252622SMatthias Ringwald  */
631667ba9d1SMatthias Ringwald void gap_random_address_set(const bd_addr_t addr);
6327e252622SMatthias Ringwald 
6337e252622SMatthias Ringwald /**
634f7a05cdaSMatthias Ringwald  * @brief Set Advertisement Data
635f7a05cdaSMatthias Ringwald  * @param advertising_data_length
636f7a05cdaSMatthias Ringwald  * @param advertising_data (max 31 octets)
637f7a05cdaSMatthias Ringwald  * @note data is not copied, pointer has to stay valid
638f868b059SMatthias Ringwald  * @note '00:00:00:00:00:00' in advertising_data will be replaced with actual bd addr
639f7a05cdaSMatthias Ringwald  */
640f7a05cdaSMatthias Ringwald void gap_advertisements_set_data(uint8_t advertising_data_length, uint8_t * advertising_data);
641f7a05cdaSMatthias Ringwald 
642f7a05cdaSMatthias Ringwald /**
643b56957b7SMatthias Ringwald  * @brief Set Advertisement Parameters
644f7a05cdaSMatthias Ringwald  * @param adv_int_min
645f7a05cdaSMatthias Ringwald  * @param adv_int_max
646f7a05cdaSMatthias Ringwald  * @param adv_type
647f7a05cdaSMatthias Ringwald  * @param direct_address_type
648f7a05cdaSMatthias Ringwald  * @param direct_address
649f7a05cdaSMatthias Ringwald  * @param channel_map
650f7a05cdaSMatthias Ringwald  * @param filter_policy
651f7a05cdaSMatthias Ringwald  * @note own_address_type is used from gap_random_address_set_mode
652f7a05cdaSMatthias Ringwald  */
653f7a05cdaSMatthias Ringwald void gap_advertisements_set_params(uint16_t adv_int_min, uint16_t adv_int_max, uint8_t adv_type,
654f7a05cdaSMatthias Ringwald 	uint8_t direct_address_typ, bd_addr_t direct_address, uint8_t channel_map, uint8_t filter_policy);
655f7a05cdaSMatthias Ringwald 
656f7a05cdaSMatthias Ringwald /**
657cb264910SMatthias Ringwald  * @brief Enable/Disable Advertisements. OFF by default.
658f7a05cdaSMatthias Ringwald  * @param enabled
659f7a05cdaSMatthias Ringwald  */
660f7a05cdaSMatthias Ringwald void gap_advertisements_enable(int enabled);
661501f56b3SMatthias Ringwald 
662501f56b3SMatthias Ringwald /**
663501f56b3SMatthias Ringwald  * @brief Set Scan Response Data
664501f56b3SMatthias Ringwald  *
665501f56b3SMatthias Ringwald  * @note For scan response data, scannable undirected advertising (ADV_SCAN_IND) need to be used
666501f56b3SMatthias Ringwald  *
667501f56b3SMatthias Ringwald  * @param advertising_data_length
668501f56b3SMatthias Ringwald  * @param advertising_data (max 31 octets)
669501f56b3SMatthias Ringwald  * @note data is not copied, pointer has to stay valid
670f868b059SMatthias Ringwald  * @note '00:00:00:00:00:00' in scan_response_data will be replaced with actual bd addr
671501f56b3SMatthias Ringwald  */
672501f56b3SMatthias Ringwald void gap_scan_response_set_data(uint8_t scan_response_data_length, uint8_t * scan_response_data);
673501f56b3SMatthias Ringwald 
6742052d96cSMatthias Ringwald 
6752052d96cSMatthias Ringwald /**
6762052d96cSMatthias Ringwald  * @brief Set update interval for resolvable private addresses generated by the Controller
6772052d96cSMatthias Ringwald  * @param update_s timeout for updates in seconds
6782052d96cSMatthias Ringwald  * @return status
6792052d96cSMatthias Ringwald  */
6802052d96cSMatthias Ringwald uint8_t gap_extended_advertising_set_resolvable_private_address_update(uint16_t update_s);
6812052d96cSMatthias Ringwald 
682d8e8f12aSMatthias Ringwald /**
683b56957b7SMatthias Ringwald  * @brief Provide storage for new advertising set and setup on Controller
684b56957b7SMatthias Ringwald  * @param storage to use by stack, needs to stay valid until adv set is removed with gap_extended_advertising_remove
685b56957b7SMatthias Ringwald  * @param advertising_parameters
686b56957b7SMatthias Ringwald  * @param out_advertising_handle to use with other adv config commands
687b56957b7SMatthias Ringwald  * @return status
688b56957b7SMatthias Ringwald  * @events: GAP_SUBEVENT_ADVERTISING_SET_INSTALLED
689b56957b7SMatthias Ringwald  */
690b56957b7SMatthias Ringwald uint8_t gap_extended_advertising_setup(le_advertising_set_t * storage, const le_extended_advertising_parameters_t * advertising_parameters, uint8_t * out_advertising_handle);
691b56957b7SMatthias Ringwald 
692b56957b7SMatthias Ringwald /**
693b56957b7SMatthias Ringwald  * @param Set advertising params for advertising set
694b56957b7SMatthias Ringwald  * @param advertising_handle
695b56957b7SMatthias Ringwald  * @param advertising_parameters
696b56957b7SMatthias Ringwald  * @return status
697b56957b7SMatthias Ringwald  */
698b56957b7SMatthias Ringwald uint8_t gap_extended_advertising_set_params(uint8_t advertising_handle, const le_extended_advertising_parameters_t * advertising_parameters);
699b56957b7SMatthias Ringwald 
700b56957b7SMatthias Ringwald /**
701b56957b7SMatthias Ringwald  * @param Get advertising params for advertising set, e.g. to update params
702b56957b7SMatthias Ringwald  * @param advertising_handle
703b56957b7SMatthias Ringwald  * @param advertising_parameters
704b56957b7SMatthias Ringwald  * @return status
705b56957b7SMatthias Ringwald  */
706b56957b7SMatthias Ringwald uint8_t gap_extended_advertising_get_params(uint8_t advertising_handle, le_extended_advertising_parameters_t * advertising_parameters);
707b56957b7SMatthias Ringwald 
708b56957b7SMatthias Ringwald /**
70953f240c0SMatthias Ringwald  * @param Set periodic advertising params for advertising set
71053f240c0SMatthias Ringwald  * @param advertising_handle
71153f240c0SMatthias Ringwald  * @param advertising_parameters
71253f240c0SMatthias Ringwald  * @return status
71353f240c0SMatthias Ringwald  */
71453f240c0SMatthias Ringwald uint8_t gap_periodic_advertising_set_params(uint8_t advertising_handle, const le_periodic_advertising_parameters_t * advertising_parameters);
71553f240c0SMatthias Ringwald 
71653f240c0SMatthias Ringwald /**
71753f240c0SMatthias Ringwald  * @param Get params for periodic advertising set, e.g. to update params
71853f240c0SMatthias Ringwald  * @param advertising_handle
71953f240c0SMatthias Ringwald  * @param advertising_parameters
72053f240c0SMatthias Ringwald  * @return status
72153f240c0SMatthias Ringwald  */
72253f240c0SMatthias Ringwald uint8_t gap_periodic_advertising_get_params(uint8_t advertising_handle, le_periodic_advertising_parameters_t * advertising_parameters);
72353f240c0SMatthias Ringwald 
72453f240c0SMatthias Ringwald /**
725b56957b7SMatthias Ringwald  * @param Set random addrress for advertising set
726b56957b7SMatthias Ringwald  * @param advertising_handle
727b56957b7SMatthias Ringwald  * @param random_address
728b56957b7SMatthias Ringwald  * @return status
729b56957b7SMatthias Ringwald  */
730b56957b7SMatthias Ringwald uint8_t gap_extended_advertising_set_random_address(uint8_t advertising_handle, bd_addr_t random_address);
731b56957b7SMatthias Ringwald 
732b56957b7SMatthias Ringwald /**
733b56957b7SMatthias Ringwald  * @brief Set Advertising Data for a advertisement set
734b56957b7SMatthias Ringwald  * @param advertising_handle
735b56957b7SMatthias Ringwald  * @param advertising_data_length
736b56957b7SMatthias Ringwald  * @param advertising_data
737b56957b7SMatthias Ringwald  * @return status
738b56957b7SMatthias Ringwald  */
7392e4aaf70SMatthias Ringwald uint8_t gap_extended_advertising_set_adv_data(uint8_t advertising_handle, uint16_t advertising_data_length, const uint8_t * advertising_data);
740b56957b7SMatthias Ringwald 
741b56957b7SMatthias Ringwald /**
742b56957b7SMatthias Ringwald  * @brief Set Scan Response Data for a advertisement set
743b56957b7SMatthias Ringwald  * @param advertising_handle
744b56957b7SMatthias Ringwald  * @param scan_response_data_length
745b56957b7SMatthias Ringwald  * @param scan_response_data
746b56957b7SMatthias Ringwald  * @return status
747b56957b7SMatthias Ringwald  */
7482e4aaf70SMatthias Ringwald uint8_t gap_extended_advertising_set_scan_response_data(uint8_t advertising_handle, uint16_t scan_response_data_length, const uint8_t * scan_response_data);
749b56957b7SMatthias Ringwald 
750b56957b7SMatthias Ringwald /**
75153f240c0SMatthias Ringwald  * @brief Set data for periodic advertisement set
75253f240c0SMatthias Ringwald  * @param advertising_handle
75353f240c0SMatthias Ringwald  * @param periodic_data_length
75453f240c0SMatthias Ringwald  * @param periodic_data
75553f240c0SMatthias Ringwald  * @return status
75653f240c0SMatthias Ringwald  */
7572e4aaf70SMatthias Ringwald uint8_t gap_periodic_advertising_set_data(uint8_t advertising_handle, uint16_t periodic_data_length, const uint8_t * periodic_data);
75853f240c0SMatthias Ringwald 
75953f240c0SMatthias Ringwald /**
760b56957b7SMatthias Ringwald  * @brief Start advertising advertising set
761b56957b7SMatthias Ringwald  * @param advertising_handle
762b56957b7SMatthias Ringwald  * @param timeout in 10ms, or 0 == no timeout
763b56957b7SMatthias Ringwald  * @param num_extended_advertising_events Controller shall send, or 0 == no max number
764b56957b7SMatthias Ringwald  * @return status
765b56957b7SMatthias Ringwald  */
766b56957b7SMatthias Ringwald uint8_t gap_extended_advertising_start(uint8_t advertising_handle, uint16_t timeout, uint8_t num_extended_advertising_events);
767b56957b7SMatthias Ringwald 
768b56957b7SMatthias Ringwald /**
769b56957b7SMatthias Ringwald  * @brief Stop advertising
770b56957b7SMatthias Ringwald  * @param advertising_handle
771b56957b7SMatthias Ringwald  * @return status
772b56957b7SMatthias Ringwald  */
773b56957b7SMatthias Ringwald uint8_t gap_extended_advertising_stop(uint8_t advertising_handle);
774b56957b7SMatthias Ringwald 
775b56957b7SMatthias Ringwald /**
77653f240c0SMatthias Ringwald  * @brief Start periodic advertising for given advertising set
77753f240c0SMatthias Ringwald  * @param advertising_handle
77853f240c0SMatthias Ringwald  * @param include_adi
77953f240c0SMatthias Ringwald  * @return status
78053f240c0SMatthias Ringwald  */
78153f240c0SMatthias Ringwald uint8_t gap_periodic_advertising_start(uint8_t advertising_handle, bool include_adi);
78253f240c0SMatthias Ringwald 
78353f240c0SMatthias Ringwald /**
78453f240c0SMatthias Ringwald  * @brief Stop periodic advertising for given advertising set
78553f240c0SMatthias Ringwald  * @param advertising_handle
78653f240c0SMatthias Ringwald  * @return status
78753f240c0SMatthias Ringwald  */
78853f240c0SMatthias Ringwald uint8_t gap_periodic_advertising_stop(uint8_t advertising_handle);
78953f240c0SMatthias Ringwald 
79053f240c0SMatthias Ringwald /**
79198aa715fSMatthias Ringwald  * @brief Set Default Periodic Advertising Sync Transfer Parameters
79298aa715fSMatthias Ringwald  * @note The parameters are used for all subsequent connections over the LE transport.
79398aa715fSMatthias Ringwald  *       If mode != 0, an HCI_LE_Periodic_Advertising_Sync_Transfer_Received event will be emitted by the Controller
79498aa715fSMatthias Ringwald  * @param mode 0 = ignore (default), 1 = periodic advertising events disabled
79598aa715fSMatthias Ringwald  *             2 = periodic advertising events enabled with duplicate filtering
79698aa715fSMatthias Ringwald  *             3 = periodic advertising events enabled with duplicate filtering
79798aa715fSMatthias Ringwald  * @param skip The number of periodic advertising packets that can be skipped after a successful receive
79898aa715fSMatthias Ringwald  * @param sync_timeout Range: 0x000A to 0x4000, Time = N*10 ms, Time Range: 100 ms to 163.84 s
79998aa715fSMatthias Ringwald  * @param cte_type  bit 0 = Do not sync to packets with an AoA Constant Tone Extension
80098aa715fSMatthias Ringwald  *                  bit 1 = Do not sync to packets with an AoD Constant Tone Extension with 1 μs slots
80198aa715fSMatthias Ringwald  *                  bit 2 = Do not sync to packets with an AoD Constant Tone Extension with 2 μs slots
80298aa715fSMatthias Ringwald  *                  bit 3 = Do not sync to packets without a Constant Tone Extension
8039c096ccdSMatthias Ringwald  * @return status
80498aa715fSMatthias Ringwald  */
80598aa715fSMatthias Ringwald uint8_t gap_periodic_advertising_sync_transfer_set_default_parameters(uint8_t mode, uint16_t skip, uint16_t sync_timeout, uint8_t cte_type);
80698aa715fSMatthias Ringwald 
80798aa715fSMatthias Ringwald /**
8083bd96807SMatthias Ringwald  * @brief Send Periodic Advertising Sync Transfer to connected device
8093bd96807SMatthias Ringwald  * @param con_handle of connected device
810027f4677SMatthias Ringwald  * @param service_data 16-bit data to transfer to remote host
811027f4677SMatthias Ringwald  * @param sync_handle of synchronized periodic advertising train to transfer
8129c096ccdSMatthias Ringwald  * @return status
8133bd96807SMatthias Ringwald  */
8143bd96807SMatthias Ringwald uint8_t gap_periodic_advertising_sync_transfer_send(hci_con_handle_t con_handle, uint16_t service_data, hci_con_handle_t sync_handle);
8153bd96807SMatthias Ringwald 
8163bd96807SMatthias Ringwald /**
817027f4677SMatthias Ringwald  * @brief Send Periodic Advertising Set Info Transfer to connected device
818027f4677SMatthias Ringwald  * @param con_handle of connected device
819027f4677SMatthias Ringwald  * @param service_data 16-bit data to transfer to remote host
820027f4677SMatthias Ringwald  * @param advertising_handle of local periodic advertising train to transfer
8219c096ccdSMatthias Ringwald  * @return status
822027f4677SMatthias Ringwald  */
823027f4677SMatthias Ringwald uint8_t gap_periodic_advertising_set_info_transfer_send(hci_con_handle_t con_handle, uint16_t service_data, uint8_t advertising_handle);
824027f4677SMatthias Ringwald 
825027f4677SMatthias Ringwald /**
826b56957b7SMatthias Ringwald  * @brief Remove advertising set from Controller
827b56957b7SMatthias Ringwald  * @param advertising_handle
828b56957b7SMatthias Ringwald  * @return status
8292a6c0f82SMatthias Ringwald  * @events GAP_SUBEVENT_ADVERTISING_SET_REMOVED
830b56957b7SMatthias Ringwald  */
831b56957b7SMatthias Ringwald uint8_t gap_extended_advertising_remove(uint8_t advertising_handle);
832b56957b7SMatthias Ringwald 
833b56957b7SMatthias Ringwald /**
8347aa35f6aSMatthias Ringwald  * @brief Create Broadcast Isochronous Group (BIG)
8357aa35f6aSMatthias Ringwald  * @param storage to use by stack, needs to stay valid until adv set is removed with gap_big_terminate
8367aa35f6aSMatthias Ringwald  * @param big_params
8377aa35f6aSMatthias Ringwald  * @return status
8382a6c0f82SMatthias Ringwald  * @events GAP_SUBEVENT_BIG_CREATED unless interrupted by call to gap_big_terminate
8397aa35f6aSMatthias Ringwald  */
8407aa35f6aSMatthias Ringwald uint8_t gap_big_create(le_audio_big_t * storage, le_audio_big_params_t * big_params);
8417aa35f6aSMatthias Ringwald 
8427aa35f6aSMatthias Ringwald /**
8437aa35f6aSMatthias Ringwald  * @brief Terminate Broadcast Isochronous Group (BIG)
8447aa35f6aSMatthias Ringwald  * @param big_handle
8457aa35f6aSMatthias Ringwald  * @return status
8469c096ccdSMatthias Ringwald  * @events GAP_SUBEVENT_BIG_TERMINATED
8477aa35f6aSMatthias Ringwald  */
8487aa35f6aSMatthias Ringwald uint8_t gap_big_terminate(uint8_t big_handle);
8497aa35f6aSMatthias Ringwald 
8507aa35f6aSMatthias Ringwald /**
8512a6c0f82SMatthias Ringwald  * @brief Synchronize to Broadcast Isochronous Group (BIG)
8522a6c0f82SMatthias Ringwald  * @param storage to use by stack, needs to stay valid until adv set is removed with gap_big_terminate
8532a6c0f82SMatthias Ringwald  * @param big_sync_params
8542a6c0f82SMatthias Ringwald  * @return status
8552a6c0f82SMatthias Ringwald  * @events GAP_SUBEVENT_BIG_SYNC_CREATED unless interrupted by call to gap_big_sync_terminate
8562a6c0f82SMatthias Ringwald  */
8572a6c0f82SMatthias Ringwald uint8_t gap_big_sync_create(le_audio_big_sync_t * storage, le_audio_big_sync_params_t * big_sync_params);
8582a6c0f82SMatthias Ringwald 
8592a6c0f82SMatthias Ringwald /**
8602a6c0f82SMatthias Ringwald  * @brief Stop synchronizing to Broadcast Isochronous Group (BIG). Triggers GAP_SUBEVENT_BIG_SYNC_STOPPED
8612a6c0f82SMatthias Ringwald  * @note Also used to stop synchronizing before BIG Sync was established
8622a6c0f82SMatthias Ringwald  * @param big_handle
8632a6c0f82SMatthias Ringwald  * @return status
8642a6c0f82SMatthias Ringwald  * @events GAP_SUBEVENT_BIG_SYNC_STOPPED
8652a6c0f82SMatthias Ringwald  */
8662a6c0f82SMatthias Ringwald uint8_t gap_big_sync_terminate(uint8_t big_handle);
8672a6c0f82SMatthias Ringwald 
8682a6c0f82SMatthias Ringwald /**
8695c1e56ddSMatthias Ringwald  * @brief Create Connected Isochronous Group (CIG)
8705c1e56ddSMatthias Ringwald  * @param storage to use by stack, needs to stay valid until CIG removed with gap_cig_remove
8715c1e56ddSMatthias Ringwald  * @param cig_params
8725c1e56ddSMatthias Ringwald  * @return status
8735c1e56ddSMatthias Ringwald  * @events GAP_SUBEVENT_CIG_CREATED unless interrupted by call to gap_cig_remove
8745c1e56ddSMatthias Ringwald  */
8755c1e56ddSMatthias Ringwald uint8_t gap_cig_create(le_audio_cig_t * storage, le_audio_cig_params_t * cig_params);
8765c1e56ddSMatthias Ringwald 
8775c1e56ddSMatthias Ringwald /**
8785c1e56ddSMatthias Ringwald  * @brief Remove Connected Isochronous Group (CIG)
8795c1e56ddSMatthias Ringwald  * @param cig_handle
8805c1e56ddSMatthias Ringwald  * @return status
8815c1e56ddSMatthias Ringwald  * @events GAP_SUBEVENT_CIG_TERMINATED
8825c1e56ddSMatthias Ringwald  */
8835c1e56ddSMatthias Ringwald uint8_t gap_cig_remove(uint8_t cig_handle);
8845c1e56ddSMatthias Ringwald 
8855c1e56ddSMatthias Ringwald /**
886444e371eSMatthias Ringwald  * @brief Create Connected Isochronous Streams (CIS)
887444e371eSMatthias Ringwald  * @note number of CIS from cig_params in gap_cig_create is used
888444e371eSMatthias Ringwald  * @param cig_handle
889444e371eSMatthias Ringwald  * @param cis_con_handles array of CIS Connection Handles
890444e371eSMatthias Ringwald  * @param acl_con_handles array of ACL Connection Handles
891444e371eSMatthias Ringwald  * @return status
892444e371eSMatthias Ringwald  * @events GAP_SUBEVENT_CIS_CREATED unless interrupted by call to gap_cig_remove
893444e371eSMatthias Ringwald  */
894444e371eSMatthias Ringwald uint8_t gap_cis_create(uint8_t cig_handle, hci_con_handle_t cis_con_handles [], hci_con_handle_t acl_con_handles []);
895444e371eSMatthias Ringwald 
896444e371eSMatthias Ringwald /**
89726b93350SMatthias Ringwald  * @brief Accept Connected Isochronous Stream (CIS)
89826b93350SMatthias Ringwald  * @param cis_con_handle
89926b93350SMatthias Ringwald  * @return status
90026b93350SMatthias Ringwald  * @events GAP_SUBEVENT_CIS_CREATED
90126b93350SMatthias Ringwald  */
90226b93350SMatthias Ringwald uint8_t gap_cis_accept(hci_con_handle_t cis_con_handle);
90326b93350SMatthias Ringwald 
90426b93350SMatthias Ringwald /**
90526b93350SMatthias Ringwald  * @brief Reject Connected Isochronous Stream (CIS)
90626b93350SMatthias Ringwald  * @param cis_con_handle
90726b93350SMatthias Ringwald  * @return status
90826b93350SMatthias Ringwald  * @events GAP_SUBEVENT_CIS_CREATED
90926b93350SMatthias Ringwald  */
91026b93350SMatthias Ringwald uint8_t gap_cis_reject(hci_con_handle_t cis_con_handle);
91126b93350SMatthias Ringwald 
91226b93350SMatthias Ringwald /**
9130c2c5f79SMatthias Ringwald  * @brief Set connection parameters for outgoing connections and connection parameter updates
914cbe54ab2SJakob Krantz  * @param conn_scan_interval (unit: 0.625 msec), default: 60 ms
915cbe54ab2SJakob Krantz  * @param conn_scan_window (unit: 0.625 msec), default: 30 ms
9166012052bSMatthias Ringwald  * @param conn_interval_min (unit: 1.25ms), default: 10 ms
9176012052bSMatthias Ringwald  * @param conn_interval_max (unit: 1.25ms), default: 30 ms
9186012052bSMatthias Ringwald  * @param conn_latency, default: 4
9196012052bSMatthias Ringwald  * @param supervision_timeout (unit: 10ms), default: 720 ms
9206012052bSMatthias Ringwald  * @param min_ce_length (unit: 0.625ms), default: 10 ms
9216012052bSMatthias Ringwald  * @param max_ce_length (unit: 0.625ms), default: 30 ms
9226012052bSMatthias Ringwald  */
923cbe54ab2SJakob Krantz void gap_set_connection_parameters(uint16_t conn_scan_interval, uint16_t conn_scan_window,
924cbe54ab2SJakob Krantz     uint16_t conn_interval_min, uint16_t conn_interval_max, uint16_t conn_latency,
925cbe54ab2SJakob Krantz     uint16_t supervision_timeout, uint16_t min_ce_length, uint16_t max_ce_length);
9266012052bSMatthias Ringwald 
9276012052bSMatthias Ringwald /**
9287eb5b27eSMatthias Ringwald  * @brief Set initiating PHYs for outgoing connections
9297eb5b27eSMatthias Ringwald  * @param phy bitmask: 1 = LE 1M PHY, 2 = LE 2M PHY, 4 = LE Coded PHY
9307eb5b27eSMatthias Ringwald  */
9317eb5b27eSMatthias Ringwald void gap_set_connection_phys(uint8_t phys);
9327eb5b27eSMatthias Ringwald 
9337eb5b27eSMatthias Ringwald /**
934d8e8f12aSMatthias Ringwald  * @brief Request an update of the connection parameter for a given LE connection
935d8e8f12aSMatthias Ringwald  * @param handle
936d8e8f12aSMatthias Ringwald  * @param conn_interval_min (unit: 1.25ms)
937d8e8f12aSMatthias Ringwald  * @param conn_interval_max (unit: 1.25ms)
938d8e8f12aSMatthias Ringwald  * @param conn_latency
939d8e8f12aSMatthias Ringwald  * @param supervision_timeout (unit: 10ms)
9406b65794dSMilanka Ringwald  * @return 0 if ok
941d8e8f12aSMatthias Ringwald  */
942d8e8f12aSMatthias Ringwald int gap_request_connection_parameter_update(hci_con_handle_t con_handle, uint16_t conn_interval_min,
943d8e8f12aSMatthias Ringwald 	uint16_t conn_interval_max, uint16_t conn_latency, uint16_t supervision_timeout);
944d8e8f12aSMatthias Ringwald 
945d8e8f12aSMatthias Ringwald /**
946d8e8f12aSMatthias Ringwald  * @brief Updates the connection parameters for a given LE connection
947d8e8f12aSMatthias Ringwald  * @param handle
948d8e8f12aSMatthias Ringwald  * @param conn_interval_min (unit: 1.25ms)
949d8e8f12aSMatthias Ringwald  * @param conn_interval_max (unit: 1.25ms)
950d8e8f12aSMatthias Ringwald  * @param conn_latency
951d8e8f12aSMatthias Ringwald  * @param supervision_timeout (unit: 10ms)
9526b65794dSMilanka Ringwald  * @return 0 if ok
953d8e8f12aSMatthias Ringwald  */
954d8e8f12aSMatthias Ringwald int gap_update_connection_parameters(hci_con_handle_t con_handle, uint16_t conn_interval_min,
955d8e8f12aSMatthias Ringwald 	uint16_t conn_interval_max, uint16_t conn_latency, uint16_t supervision_timeout);
956d8e8f12aSMatthias Ringwald 
957d8e8f12aSMatthias Ringwald /**
958d8e8f12aSMatthias Ringwald  * @brief Set accepted connection parameter range
959d8e8f12aSMatthias Ringwald  * @param range
960d8e8f12aSMatthias Ringwald  */
9614ced4e8cSMatthias Ringwald void gap_get_connection_parameter_range(le_connection_parameter_range_t * range);
962d8e8f12aSMatthias Ringwald 
963d8e8f12aSMatthias Ringwald /**
964d8e8f12aSMatthias Ringwald  * @brief Get accepted connection parameter range
965d8e8f12aSMatthias Ringwald  * @param range
966d8e8f12aSMatthias Ringwald  */
9674ced4e8cSMatthias Ringwald void gap_set_connection_parameter_range(le_connection_parameter_range_t * range);
968d8e8f12aSMatthias Ringwald 
969d8e8f12aSMatthias Ringwald /**
97073cd8a2aSMatthias Ringwald  * @brief Test if connection parameters are inside in existing rage
97173cd8a2aSMatthias Ringwald  * @param conn_interval_min (unit: 1.25ms)
97273cd8a2aSMatthias Ringwald  * @param conn_interval_max (unit: 1.25ms)
97373cd8a2aSMatthias Ringwald  * @param conn_latency
97473cd8a2aSMatthias Ringwald  * @param supervision_timeout (unit: 10ms)
9756b65794dSMilanka Ringwald  * @return 1 if included
97673cd8a2aSMatthias Ringwald  */
97773cd8a2aSMatthias Ringwald int gap_connection_parameter_range_included(le_connection_parameter_range_t * existing_range, uint16_t le_conn_interval_min, uint16_t le_conn_interval_max, uint16_t le_conn_latency, uint16_t le_supervision_timeout);
97873cd8a2aSMatthias Ringwald 
97973cd8a2aSMatthias Ringwald /**
9802b6ab3e6SMatthias Ringwald  * @brief Set max number of connections in LE Peripheral role (if Bluetooth Controller supports it)
9812b6ab3e6SMatthias Ringwald  * @note: default: 1
9822b6ab3e6SMatthias Ringwald  * @param max_peripheral_connections
9832b6ab3e6SMatthias Ringwald  */
9842b6ab3e6SMatthias Ringwald void gap_set_max_number_peripheral_connections(int max_peripheral_connections);
9852b6ab3e6SMatthias Ringwald 
9862b6ab3e6SMatthias Ringwald /**
987a3b69fdeSMatthias Ringwald  * @brief Add Device to Whitelist
988a3b69fdeSMatthias Ringwald  * @param address_typ
989a3b69fdeSMatthias Ringwald  * @param address
9909c096ccdSMatthias Ringwald  * @return status
991a3b69fdeSMatthias Ringwald  */
992667ba9d1SMatthias Ringwald uint8_t gap_whitelist_add(bd_addr_type_t address_type, const bd_addr_t address);
993a3b69fdeSMatthias Ringwald 
994a3b69fdeSMatthias Ringwald /**
995a3b69fdeSMatthias Ringwald  * @brief Remove Device from Whitelist
996a3b69fdeSMatthias Ringwald  * @param address_typ
997a3b69fdeSMatthias Ringwald  * @param address
9989c096ccdSMatthias Ringwald  * @return status
999a3b69fdeSMatthias Ringwald  */
1000667ba9d1SMatthias Ringwald uint8_t gap_whitelist_remove(bd_addr_type_t address_type, const bd_addr_t address);
1001a3b69fdeSMatthias Ringwald 
1002a3b69fdeSMatthias Ringwald /**
1003a3b69fdeSMatthias Ringwald  * @brief Clear Whitelist
10049c096ccdSMatthias Ringwald  * @return status
1005a3b69fdeSMatthias Ringwald  */
1006a3b69fdeSMatthias Ringwald uint8_t gap_whitelist_clear(void);
1007a3b69fdeSMatthias Ringwald 
1008a3b69fdeSMatthias Ringwald /**
1009d8e8f12aSMatthias Ringwald  * @brief Connect to remote LE device
10109c096ccdSMatthias Ringwald  * @return status
1011d8e8f12aSMatthias Ringwald  */
1012667ba9d1SMatthias Ringwald uint8_t gap_connect(const bd_addr_t addr, bd_addr_type_t addr_type);
1013d8e8f12aSMatthias Ringwald 
1014d8e8f12aSMatthias Ringwald /**
101595e257d9SMatthias Ringwald  * @brief Connect with Whitelist
101695e257d9SMatthias Ringwald  * @note Explicit whitelist management and this connect with whitelist replace deprecated gap_auto_connection_* functions
10179c096ccdSMatthias Ringwald  * @return status
101895e257d9SMatthias Ringwald  */
101995e257d9SMatthias Ringwald uint8_t gap_connect_with_whitelist(void);
102095e257d9SMatthias Ringwald 
102195e257d9SMatthias Ringwald /**
1022d8e8f12aSMatthias Ringwald  * @brief Cancel connection process initiated by gap_connect
10239c096ccdSMatthias Ringwald  * @return status
1024d8e8f12aSMatthias Ringwald  */
1025d8e8f12aSMatthias Ringwald uint8_t gap_connect_cancel(void);
1026f7a05cdaSMatthias Ringwald 
1027f7a05cdaSMatthias Ringwald /**
1028f7a05cdaSMatthias Ringwald  * @brief Auto Connection Establishment - Start Connecting to device
1029a3b69fdeSMatthias Ringwald  * @deprecated Please setup Whitelist with gap_whitelist_* and start connecting with gap_connect_with_whitelist
1030b45b7749SMilanka Ringwald  * @param address_type
1031f7a05cdaSMatthias Ringwald  * @param address
10329c096ccdSMatthias Ringwald  * @return status
1033f7a05cdaSMatthias Ringwald  */
1034b45b7749SMilanka Ringwald uint8_t gap_auto_connection_start(bd_addr_type_t address_type, const bd_addr_t address);
1035f7a05cdaSMatthias Ringwald 
1036f7a05cdaSMatthias Ringwald /**
1037f7a05cdaSMatthias Ringwald  * @brief Auto Connection Establishment - Stop Connecting to device
1038a3b69fdeSMatthias Ringwald  * @deprecated Please setup Whitelist with gap_whitelist_* and start connecting with gap_connect_with_whitelist
1039b45b7749SMilanka Ringwald  * @param address_type
1040f7a05cdaSMatthias Ringwald  * @param address
10419c096ccdSMatthias Ringwald  * @return status
1042f7a05cdaSMatthias Ringwald  */
1043b45b7749SMilanka Ringwald uint8_t gap_auto_connection_stop(bd_addr_type_t address_type, const bd_addr_t address);
1044f7a05cdaSMatthias Ringwald 
1045f7a05cdaSMatthias Ringwald /**
1046f7a05cdaSMatthias Ringwald  * @brief Auto Connection Establishment - Stop everything
1047a3b69fdeSMatthias Ringwald  * @deprecated Please setup Whitelist with gap_whitelist_* and start connecting with gap_connect_with_whitelist
1048f7a05cdaSMatthias Ringwald  * @note  Convenience function to stop all active auto connection attempts
10499c096ccdSMatthias Ringwald  * @return status
1050f7a05cdaSMatthias Ringwald  */
105195e257d9SMatthias Ringwald uint8_t gap_auto_connection_stop_all(void);
1052f7a05cdaSMatthias Ringwald 
10539c6e867eSMatthias Ringwald /**
1054b90f6e0aSMatthias Ringwald  * @brief Set LE PHY
1055b90f6e0aSMatthias Ringwald  * @param con_handle
1056b90f6e0aSMatthias Ringwald  * @param all_phys 0 = set rx/tx, 1 = set only rx, 2 = set only tx
1057b90f6e0aSMatthias Ringwald  * @param tx_phys 1 = 1M, 2 = 2M, 4 = Coded
1058b90f6e0aSMatthias Ringwald  * @param rx_phys 1 = 1M, 2 = 2M, 4 = Coded
1059b90f6e0aSMatthias Ringwald  * @param phy_options 0 = no preferred coding for Coded, 1 = S=2 coding (500 kbit), 2 = S=8 coding (125 kbit)
10609c096ccdSMatthias Ringwald  * @return status
1061b90f6e0aSMatthias Ringwald  */
10629d8be771SMatthias Ringwald uint8_t gap_le_set_phy(hci_con_handle_t con_handle, uint8_t all_phys, uint8_t tx_phys, uint8_t rx_phys, uint16_t phy_options);
1063b90f6e0aSMatthias Ringwald 
1064b90f6e0aSMatthias Ringwald /**
1065c9db5c21SMilanka Ringwald  * @brief Get connection interval
1066b45b7749SMilanka Ringwald  * @param con_handle
1067c9db5c21SMilanka Ringwald  * @return connection interval, otherwise 0 if error
1068c9db5c21SMilanka Ringwald  */
1069b45b7749SMilanka Ringwald uint16_t gap_le_connection_interval(hci_con_handle_t con_handle);
1070c9db5c21SMilanka Ringwald 
1071c9db5c21SMilanka Ringwald /**
10729c6e867eSMatthias Ringwald  *
10739c6e867eSMatthias Ringwald  * @brief Get encryption key size.
10749c6e867eSMatthias Ringwald  * @param con_handle
10759c6e867eSMatthias Ringwald  * @return 0 if not encrypted, 7-16 otherwise
10769c6e867eSMatthias Ringwald  */
10776d105c71SMatthias Ringwald uint8_t gap_encryption_key_size(hci_con_handle_t con_handle);
10789c6e867eSMatthias Ringwald 
10799c6e867eSMatthias Ringwald /**
10809c6e867eSMatthias Ringwald  * @brief Get authentication property.
10819c6e867eSMatthias Ringwald  * @param con_handle
10829c096ccdSMatthias Ringwald  * @return true if bonded with OOB/Passkey (AND MITM protection)
10839c6e867eSMatthias Ringwald  */
1084ff3f1026SMatthias Ringwald bool gap_authenticated(hci_con_handle_t con_handle);
10859c6e867eSMatthias Ringwald 
10869c6e867eSMatthias Ringwald /**
1087f1dfbe18SMatthias Ringwald  * @brief Get secure connection property
1088f1dfbe18SMatthias Ringwald  * @param con_handle
10899c096ccdSMatthias Ringwald  * @return true if bonded usiung LE Secure Connections
1090f1dfbe18SMatthias Ringwald  */
1091f461b3dfSMatthias Ringwald bool gap_secure_connection(hci_con_handle_t con_handle);
1092f1dfbe18SMatthias Ringwald 
1093f1dfbe18SMatthias Ringwald /**
10949c6e867eSMatthias Ringwald  * @brief Queries authorization state.
10959c6e867eSMatthias Ringwald  * @param con_handle
10969c6e867eSMatthias Ringwald  * @return authorization_state for the current session
10979c6e867eSMatthias Ringwald  */
10989c6e867eSMatthias Ringwald authorization_state_t gap_authorization_state(hci_con_handle_t con_handle);
10999c6e867eSMatthias Ringwald 
11001e122704SMatthias Ringwald /**
11011e122704SMatthias Ringwald  * @brief Get bonded property (BR/EDR/LE)
11021e122704SMatthias Ringwald  * @note LE: has to be called after identity resolving is complete
11031e122704SMatthias Ringwald  * @param con_handle
11041e122704SMatthias Ringwald  * @return true if bonded
11051e122704SMatthias Ringwald  */
11061e122704SMatthias Ringwald bool gap_bonded(hci_con_handle_t con_handle);
11071e122704SMatthias Ringwald 
110815a95bd5SMatthias Ringwald // Classic
1109e6d6524dSMatthias Ringwald #ifdef ENABLE_CLASSIC
111015a95bd5SMatthias Ringwald 
111115a95bd5SMatthias Ringwald /**
111215a95bd5SMatthias Ringwald  * @brief Override page scan mode. Page scan mode enabled by l2cap when services are registered
111315a95bd5SMatthias Ringwald  * @note Might be used to reduce power consumption while Bluetooth module stays powered but no (new)
111415a95bd5SMatthias Ringwald  *       connections are expected
111515a95bd5SMatthias Ringwald  */
111615a95bd5SMatthias Ringwald void gap_connectable_control(uint8_t enable);
111715a95bd5SMatthias Ringwald 
111815a95bd5SMatthias Ringwald /**
111915a95bd5SMatthias Ringwald  * @brief Allows to control if device is discoverable. OFF by default.
112015a95bd5SMatthias Ringwald  */
112115a95bd5SMatthias Ringwald void gap_discoverable_control(uint8_t enable);
112215a95bd5SMatthias Ringwald 
112315a95bd5SMatthias Ringwald /**
112415a95bd5SMatthias Ringwald  * @brief Deletes link key for remote device with baseband address.
112555597469SMatthias Ringwald  * @param addr
1126c7710378SMatthias Ringwald  * @note On most desktop ports, the Link Key DB uses a TLV and there is one TLV storage per
1127c7710378SMatthias Ringwald  *       Controller resp. its Bluetooth Address. As the Bluetooth Address is retrieved during
1128c7710378SMatthias Ringwald  *       power up, this function only works, when the stack is in working state for these ports.
112915a95bd5SMatthias Ringwald  */
113015a95bd5SMatthias Ringwald void gap_drop_link_key_for_bd_addr(bd_addr_t addr);
113115a95bd5SMatthias Ringwald 
113255597469SMatthias Ringwald /**
1133ceecb9d9SMatthias Ringwald  * @brief Delete all stored link keys
1134c7710378SMatthias Ringwald  * @note On most desktop ports, the Link Key DB uses a TLV and there is one TLV storage per
1135c7710378SMatthias Ringwald  *       Controller resp. its Bluetooth Address. As the Bluetooth Address is retrieved during
1136c7710378SMatthias Ringwald  *       power up, this function only works, when the stack is in working state for these ports.
1137ceecb9d9SMatthias Ringwald  */
1138ceecb9d9SMatthias Ringwald void gap_delete_all_link_keys(void);
1139ceecb9d9SMatthias Ringwald 
1140ceecb9d9SMatthias Ringwald /**
114155597469SMatthias Ringwald  * @brief Store link key for remote device with baseband address
114255597469SMatthias Ringwald  * @param addr
114355597469SMatthias Ringwald  * @param link_key
114455597469SMatthias Ringwald  * @param link_key_type
1145c7710378SMatthias Ringwald  * @note On most desktop ports, the Link Key DB uses a TLV and there is one TLV storage per
1146c7710378SMatthias Ringwald  *       Controller resp. its Bluetooth Address. As the Bluetooth Address is retrieved during
1147c7710378SMatthias Ringwald  *       power up, this function only works, when the stack is in working state for these ports.
114855597469SMatthias Ringwald  */
114955597469SMatthias Ringwald void gap_store_link_key_for_bd_addr(bd_addr_t addr, link_key_t link_key, link_key_type_t type);
115055597469SMatthias Ringwald 
1151f5875de5SMatthias Ringwald /**
1152e8ad470fSMatthias Ringwald  * @brief Get link for remote device with basband address
1153e8ad470fSMatthias Ringwald  * @param addr
1154e8ad470fSMatthias Ringwald  * @param link_key (out) is stored here
1155e8ad470fSMatthias Ringwald  * @param link_key_type (out) is stored here
1156e8ad470fSMatthias Ringwald  * @note On most desktop ports, the Link Key DB uses a TLV and there is one TLV storage per
1157e8ad470fSMatthias Ringwald  *       Controller resp. its Bluetooth Address. As the Bluetooth Address is retrieved during
1158e8ad470fSMatthias Ringwald  *       power up, this function only works, when the stack is in working state for these ports.
1159e8ad470fSMatthias Ringwald  */
1160e8ad470fSMatthias Ringwald bool gap_get_link_key_for_bd_addr(bd_addr_t addr, link_key_t link_key, link_key_type_t * type);
1161e8ad470fSMatthias Ringwald 
1162e8ad470fSMatthias Ringwald /**
11631b6fb31bSMatthias Ringwald  * @brief Setup Link Key iterator
11641b6fb31bSMatthias Ringwald  * @param it
11656b65794dSMilanka Ringwald  * @return 1 on success
1166c7710378SMatthias Ringwald  * @note On most desktop ports, the Link Key DB uses a TLV and there is one TLV storage per
1167c7710378SMatthias Ringwald  *       Controller resp. its Bluetooth Address. As the Bluetooth Address is retrieved during
1168c7710378SMatthias Ringwald  *       power up, this function only works, when the stack is in working state for these ports.
11691b6fb31bSMatthias Ringwald  */
11701b6fb31bSMatthias Ringwald int gap_link_key_iterator_init(btstack_link_key_iterator_t * it);
11711b6fb31bSMatthias Ringwald 
11721b6fb31bSMatthias Ringwald /**
11731b6fb31bSMatthias Ringwald  * @brief Get next Link Key
11741b6fb31bSMatthias Ringwald  * @param it
11751b6fb31bSMatthias Ringwald  * @brief addr
11761b6fb31bSMatthias Ringwald  * @brief link_key
11771b6fb31bSMatthias Ringwald  * @brief type of link key
11786b65794dSMilanka Ringwald  * @return 1, if valid link key found
1179c7710378SMatthias Ringwald  * @see note on gap_link_key_iterator_init
11801b6fb31bSMatthias Ringwald  */
11811b6fb31bSMatthias Ringwald int gap_link_key_iterator_get_next(btstack_link_key_iterator_t * it, bd_addr_t bd_addr, link_key_t link_key, link_key_type_t * type);
11821b6fb31bSMatthias Ringwald 
11831b6fb31bSMatthias Ringwald /**
11841b6fb31bSMatthias Ringwald  * @brief Frees resources allocated by iterator_init
11851b6fb31bSMatthias Ringwald  * @note Must be called after iteration to free resources
11861b6fb31bSMatthias Ringwald  * @param it
1187c7710378SMatthias Ringwald  * @see note on gap_link_key_iterator_init
11881b6fb31bSMatthias Ringwald  */
11891b6fb31bSMatthias Ringwald void gap_link_key_iterator_done(btstack_link_key_iterator_t * it);
11901b6fb31bSMatthias Ringwald 
11911b6fb31bSMatthias Ringwald /**
1192f5875de5SMatthias Ringwald  * @brief Start GAP Classic Inquiry
1193f5875de5SMatthias Ringwald  * @param duration in 1.28s units
11949c096ccdSMatthias Ringwald  * @return status
1195f5875de5SMatthias Ringwald  * @events: GAP_EVENT_INQUIRY_RESULT, GAP_EVENT_INQUIRY_COMPLETE
1196f5875de5SMatthias Ringwald  */
1197f5875de5SMatthias Ringwald int gap_inquiry_start(uint8_t duration_in_1280ms_units);
1198f5875de5SMatthias Ringwald 
1199f5875de5SMatthias Ringwald /**
120030199e24SMatthias Ringwald  * @brief Start GAP Classic Periodic Inquiry
120130199e24SMatthias Ringwald  * @param duration in 1.28s units
120230199e24SMatthias Ringwald  * @param max_period_length between consecutive inquiries in 1.28s units
120330199e24SMatthias Ringwald  * @param min_period_length between consecutive inquiries in 1.28s units
12049c096ccdSMatthias Ringwald  * @return status
120530199e24SMatthias Ringwald  * @events: GAP_EVENT_INQUIRY_RESULT, GAP_EVENT_INQUIRY_COMPLETE
120630199e24SMatthias Ringwald  */
120730199e24SMatthias Ringwald uint8_t gap_inquiry_periodic_start(uint8_t duration, uint16_t max_period_length, uint16_t min_period_length);
120830199e24SMatthias Ringwald 
120930199e24SMatthias Ringwald /**
121030199e24SMatthias Ringwald  * @brief Stop GAP Classic Inquiry (regular or periodic)
12116b65794dSMilanka Ringwald  * @return 0 if ok
12129c096ccdSMatthias Ringwald  * @events GAP_EVENT_INQUIRY_COMPLETE
1213f5875de5SMatthias Ringwald  */
1214f5875de5SMatthias Ringwald int gap_inquiry_stop(void);
1215f5875de5SMatthias Ringwald 
1216b7f1ee76SMatthias Ringwald /**
1217496bb884SMatthias Ringwald  * @brief Set LAP for GAP Classic Inquiry
1218496bb884SMatthias Ringwald  * @param lap GAP_IAC_GENERAL_INQUIRY (default), GAP_IAC_LIMITED_INQUIRY
1219496bb884SMatthias Ringwald  */
1220496bb884SMatthias Ringwald void gap_inquiry_set_lap(uint32_t lap);
1221496bb884SMatthias Ringwald 
1222496bb884SMatthias Ringwald /**
1223c0c8a829SMatthias Ringwald  * @brief Set Inquiry Scan Activity
1224c0c8a829SMatthias Ringwald  * @param inquiry_scan_interval range: 0x0012 to 0x1000; only even values are valid, Time = N * 0.625 ms
1225c0c8a829SMatthias Ringwald  * @param inquiry_scan_window range: 0x0011 to 0x1000; Time = N * 0.625 ms
1226c0c8a829SMatthias Ringwald  */
12271dc973e7SMatthias Ringwald void gap_inquiry_set_scan_activity(uint16_t inquiry_scan_interval, uint16_t inquiry_scan_window);
1228c0c8a829SMatthias Ringwald 
1229c0c8a829SMatthias Ringwald /**
1230f50ed5acSAndrey Fominykh  * @brief Set Inquiry Transmit Power Level
1231f50ed5acSAndrey Fominykh  * @param tx_power range: -70 to 20 dBm
1232f50ed5acSAndrey Fominykh  */
1233f50ed5acSAndrey Fominykh void gap_inquiry_set_transmit_power_level(int8_t tx_power);
1234f50ed5acSAndrey Fominykh 
1235f50ed5acSAndrey Fominykh /**
1236b7f1ee76SMatthias Ringwald  * @brief Remote Name Request
1237b7f1ee76SMatthias Ringwald  * @param addr
1238b7f1ee76SMatthias Ringwald  * @param page_scan_repetition_mode
1239b7f1ee76SMatthias Ringwald  * @param clock_offset only used when bit 15 is set - pass 0 if not known
12409c096ccdSMatthias Ringwald  * @events HCI_EVENT_REMOTE_NAME_REQUEST_COMPLETE
1241b7f1ee76SMatthias Ringwald  */
1242667ba9d1SMatthias Ringwald int gap_remote_name_request(const bd_addr_t addr, uint8_t page_scan_repetition_mode, uint16_t clock_offset);
1243b7f1ee76SMatthias Ringwald 
12440a51f88bSMatthias Ringwald /**
12450a51f88bSMatthias Ringwald  * @brief Legacy Pairing Pin Code Response
1246aad97216SMatthias Ringwald  * @note data is not copied, pointer has to stay valid
12470a51f88bSMatthias Ringwald  * @param addr
12480a51f88bSMatthias Ringwald  * @param pin
12490a51f88bSMatthias Ringwald  * @return 0 if ok
12500a51f88bSMatthias Ringwald  */
1251667ba9d1SMatthias Ringwald int gap_pin_code_response(const bd_addr_t addr, const char * pin);
12520a51f88bSMatthias Ringwald 
12530a51f88bSMatthias Ringwald /**
1254aad97216SMatthias Ringwald  * @brief Legacy Pairing Pin Code Response for binary data / non-strings
1255aad97216SMatthias Ringwald  * @note data is not copied, pointer has to stay valid
1256aad97216SMatthias Ringwald  * @param addr
1257aad97216SMatthias Ringwald  * @param pin_data
1258aad97216SMatthias Ringwald  * @param pin_len
1259aad97216SMatthias Ringwald  * @return 0 if ok
1260aad97216SMatthias Ringwald  */
1261667ba9d1SMatthias Ringwald int gap_pin_code_response_binary(const bd_addr_t addr, const uint8_t * pin_data, uint8_t pin_len);
1262aad97216SMatthias Ringwald 
1263aad97216SMatthias Ringwald /**
12640a51f88bSMatthias Ringwald  * @brief Abort Legacy Pairing
12650a51f88bSMatthias Ringwald  * @param addr
12660a51f88bSMatthias Ringwald  * @param pin
12670a51f88bSMatthias Ringwald  * @return 0 if ok
12680a51f88bSMatthias Ringwald  */
12690a51f88bSMatthias Ringwald int gap_pin_code_negative(bd_addr_t addr);
12700a51f88bSMatthias Ringwald 
12710a51f88bSMatthias Ringwald /**
12720a51f88bSMatthias Ringwald  * @brief SSP Passkey Response
12730a51f88bSMatthias Ringwald  * @param addr
12740a51f88bSMatthias Ringwald  * @param passkey [0..999999]
12750a51f88bSMatthias Ringwald  * @return 0 if ok
12760a51f88bSMatthias Ringwald  */
1277667ba9d1SMatthias Ringwald int gap_ssp_passkey_response(const bd_addr_t addr, uint32_t passkey);
12780a51f88bSMatthias Ringwald 
12790a51f88bSMatthias Ringwald /**
12800a51f88bSMatthias Ringwald  * @brief Abort SSP Passkey Entry/Pairing
12810a51f88bSMatthias Ringwald  * @param addr
12820a51f88bSMatthias Ringwald  * @param pin
12830a51f88bSMatthias Ringwald  * @return 0 if ok
12840a51f88bSMatthias Ringwald  */
1285667ba9d1SMatthias Ringwald int gap_ssp_passkey_negative(const bd_addr_t addr);
12860a51f88bSMatthias Ringwald 
12870a51f88bSMatthias Ringwald /**
12880a51f88bSMatthias Ringwald  * @brief Accept SSP Numeric Comparison
12890a51f88bSMatthias Ringwald  * @param addr
12900a51f88bSMatthias Ringwald  * @param passkey
12910a51f88bSMatthias Ringwald  * @return 0 if ok
12920a51f88bSMatthias Ringwald  */
1293667ba9d1SMatthias Ringwald int gap_ssp_confirmation_response(const bd_addr_t addr);
12940a51f88bSMatthias Ringwald 
12950a51f88bSMatthias Ringwald /**
12960a51f88bSMatthias Ringwald  * @brief Abort SSP Numeric Comparison/Pairing
12970a51f88bSMatthias Ringwald  * @param addr
12980a51f88bSMatthias Ringwald  * @param pin
12990a51f88bSMatthias Ringwald  * @return 0 if ok
13000a51f88bSMatthias Ringwald  */
1301667ba9d1SMatthias Ringwald int gap_ssp_confirmation_negative(const bd_addr_t addr);
13020a51f88bSMatthias Ringwald 
1303f8ee3071SMatthias Ringwald /**
1304cf01e888SMatthias Ringwald  * @brief Generate new OOB data
1305cf01e888SMatthias Ringwald  * @note OOB data will be provided in GAP_EVENT_LOCAL_OOB_DATA and be used in future pairing procedures
1306cf01e888SMatthias Ringwald  */
1307cf01e888SMatthias Ringwald void gap_ssp_generate_oob_data(void);
1308cf01e888SMatthias Ringwald 
1309cf01e888SMatthias Ringwald /**
13101849becdSMatthias Ringwald  * @brief Report Remote OOB Data
13114f9a3f7eSMatthias Ringwald  * @note Pairing Hash and Randomizer are expected in big-endian byte format
13121849becdSMatthias Ringwald  * @param bd_addr
13131849becdSMatthias Ringwald  * @param c_192 Simple Pairing Hash C derived from P-192 public key
13141849becdSMatthias Ringwald  * @param r_192 Simple Pairing Randomizer derived from P-192 public key
13151849becdSMatthias Ringwald  * @param c_256 Simple Pairing Hash C derived from P-256 public key
13161849becdSMatthias Ringwald  * @param r_256 Simple Pairing Randomizer derived from P-256 public key
13179c096ccdSMatthias Ringwald  * @return status
13181849becdSMatthias Ringwald  */
13191849becdSMatthias Ringwald uint8_t gap_ssp_remote_oob_data(const bd_addr_t addr, const uint8_t * c_192, const uint8_t * r_192, const uint8_t * c_256, const uint8_t * r_256);
13201849becdSMatthias Ringwald 
13211849becdSMatthias Ringwald /**
132244565b0cSMatthias Ringwald  * Send SSP IO Capabilities Reply
132344565b0cSMatthias Ringwald  * @note IO Capabilities (Negative) Reply is sent automatically unless ENABLE_EXPLICIT_IO_CAPABILITIES_REPLY
132444565b0cSMatthias Ringwald  * @param addr
13259c096ccdSMatthias Ringwald  * @return status
132644565b0cSMatthias Ringwald  */
132744565b0cSMatthias Ringwald uint8_t gap_ssp_io_capabilities_response(const bd_addr_t addr);
132844565b0cSMatthias Ringwald 
132944565b0cSMatthias Ringwald /**
133044565b0cSMatthias Ringwald  * Send SSP IO Capabilities Negative Reply
133144565b0cSMatthias Ringwald  * @note IO Capabilities (Negative) Reply is sent automatically unless ENABLE_EXPLICIT_IO_CAPABILITIES_REPLY
133244565b0cSMatthias Ringwald  * @param addr
13339c096ccdSMatthias Ringwald  * @return status
133444565b0cSMatthias Ringwald  */
133544565b0cSMatthias Ringwald uint8_t gap_ssp_io_capabilities_negative(const bd_addr_t addr);
133644565b0cSMatthias Ringwald 
133744565b0cSMatthias Ringwald /**
1338308eeaffSMatthias Ringwald  * Send Link Key Reponse
13399afaa4d4SMatthias Ringwald  * @note Link Key (Negative) Reply is sent automatically unless ENABLE_EXPLICIT_LINK_KEY_RESPONSE
1340308eeaffSMatthias Ringwald  * @param addr
1341308eeaffSMatthias Ringwald  * @param link_key
1342308eeaffSMatthias Ringwald  * @param type or INVALID_LINK_KEY if link key not available
13439c096ccdSMatthias Ringwald  * @return status
1344308eeaffSMatthias Ringwald  */
1345308eeaffSMatthias Ringwald  uint8_t gap_send_link_key_response(const bd_addr_t addr, link_key_t link_key, link_key_type_t type);
1346308eeaffSMatthias Ringwald 
1347308eeaffSMatthias Ringwald /**
1348f8ee3071SMatthias Ringwald  * @brief Enter Sniff mode
1349f8ee3071SMatthias Ringwald  * @param con_handle
1350f8ee3071SMatthias Ringwald  * @param sniff_min_interval range: 0x0002 to 0xFFFE; only even values are valid, Time = N * 0.625 ms
1351f8ee3071SMatthias Ringwald  * @param sniff_max_interval range: 0x0002 to 0xFFFE; only even values are valid, Time = N * 0.625 ms
1352f8ee3071SMatthias Ringwald  * @param sniff_attempt Number of Baseband receive slots for sniff attempt.
1353f8ee3071SMatthias Ringwald  * @param sniff_timeout Number of Baseband receive slots for sniff timeout.
13549c096ccdSMatthias Ringwald  * @return status
1355f8ee3071SMatthias Ringwald  */
1356f8ee3071SMatthias Ringwald uint8_t gap_sniff_mode_enter(hci_con_handle_t con_handle, uint16_t sniff_min_interval, uint16_t sniff_max_interval, uint16_t sniff_attempt, uint16_t sniff_timeout);
13570a51f88bSMatthias Ringwald 
1358f8ee3071SMatthias Ringwald /**
1359f8ee3071SMatthias Ringwald  * @brief Exit Sniff mode
1360f8ee3071SMatthias Ringwald  * @param con_handle
13619c096ccdSMatthias Ringwald  * @return status
1362f8ee3071SMatthias Ringwald  */
1363f8ee3071SMatthias Ringwald uint8_t gap_sniff_mode_exit(hci_con_handle_t con_handle);
13640a51f88bSMatthias Ringwald 
1365140c0557SMatthias Ringwald /**
1366140c0557SMatthias Ringwald  * @brief Configure Sniff Subrating
1367140c0557SMatthias Ringwald  * @param con_handle
1368140c0557SMatthias Ringwald  * @param max_latency range: 0x0002 to 0xFFFE; Time = N * 0.625 ms
1369140c0557SMatthias Ringwald  * @param min_remote_timeout range:  0x0002 to 0xFFFE; Time = N * 0.625 ms
1370140c0557SMatthias Ringwald  * @param min_local_timeout range:  0x0002 to 0xFFFE; Time = N * 0.625 ms
13719c096ccdSMatthias Ringwald  * @return status
1372140c0557SMatthias Ringwald  */
1373140c0557SMatthias Ringwald uint8_t gap_sniff_subrating_configure(hci_con_handle_t con_handle, uint16_t max_latency, uint16_t min_remote_timeout, uint16_t min_local_timeout);
1374140c0557SMatthias Ringwald 
1375278ff8a9SMatthias Ringwald /**
1376278ff8a9SMatthias Ringwald  * @Brief Set QoS
1377278ff8a9SMatthias Ringwald  * @param con_handle
1378278ff8a9SMatthias Ringwald  * @param service_type
1379278ff8a9SMatthias Ringwald  * @param token_rate
1380278ff8a9SMatthias Ringwald  * @param peak_bandwidth
1381278ff8a9SMatthias Ringwald  * @param latency
1382278ff8a9SMatthias Ringwald  * @param delay_variation
13839c096ccdSMatthias Ringwald  * @return status
1384278ff8a9SMatthias Ringwald  */
1385278ff8a9SMatthias Ringwald uint8_t gap_qos_set(hci_con_handle_t con_handle, hci_service_type_t service_type, uint32_t token_rate, uint32_t peak_bandwidth, uint32_t latency, uint32_t delay_variation);
1386278ff8a9SMatthias Ringwald 
1387e6d6524dSMatthias Ringwald #endif
1388e6d6524dSMatthias Ringwald 
138915a95bd5SMatthias Ringwald // LE
139015a95bd5SMatthias Ringwald 
139115a95bd5SMatthias Ringwald /**
13926bcfa632SMatthias Ringwald  * @brief Get own addr type and address used for LE for next scan/advertisement/connect operation
139315a95bd5SMatthias Ringwald  */
1394b95a5a35SMatthias Ringwald void gap_le_get_own_address(uint8_t * addr_type, bd_addr_t addr);
139515a95bd5SMatthias Ringwald 
13966bcfa632SMatthias Ringwald /**
13976bcfa632SMatthias Ringwald  * @brief Get own addr type and address used for LE advertisements (Peripheral)
13986bcfa632SMatthias Ringwald  */
13996bcfa632SMatthias Ringwald void gap_le_get_own_advertisements_address(uint8_t * addr_type, bd_addr_t addr);
14006bcfa632SMatthias Ringwald 
14016bcfa632SMatthias Ringwald /**
1402*efc77985SMatthias Ringwald  * @brief Get own addr type and address used for LE Extended Advertisiing (Peripheral)
1403*efc77985SMatthias Ringwald  */
1404*efc77985SMatthias Ringwald void gap_le_get_own_advertising_set_address(uint8_t * addr_type, bd_addr_t addr, uint8_t advertising_handle);
1405*efc77985SMatthias Ringwald 
1406*efc77985SMatthias Ringwald /**
14076bcfa632SMatthias Ringwald  * @brief Get own addr type and address used for LE connections (Central)
14086bcfa632SMatthias Ringwald  */
14096bcfa632SMatthias Ringwald void gap_le_get_own_connection_address(uint8_t * addr_type, bd_addr_t addr);
14106e364deaSMatthias Ringwald 
1411dcd6c9b5SMatthias Ringwald /**
141288a03c8dSMatthias Ringwald  * @brief Get state of connection re-encryption for bonded devices when in central role
1413dcd6c9b5SMatthias Ringwald  * @note used by gatt_client and att_server to wait for re-encryption
1414dcd6c9b5SMatthias Ringwald  * @param con_handle
1415dcd6c9b5SMatthias Ringwald  * @return 1 if security setup is active
1416dcd6c9b5SMatthias Ringwald  */
1417c7ceba59SMatthias Ringwald bool gap_reconnect_security_setup_active(hci_con_handle_t con_handle);
1418dcd6c9b5SMatthias Ringwald 
141921debf25SMatthias Ringwald /**
14204f384501SMatthias Ringwald  * @brief Delete bonding information for remote device
14214f384501SMatthias Ringwald  * @note On most desktop ports, the LE Device DB uses a TLV and there is one TLV storage per
14224f384501SMatthias Ringwald  *       Controller resp. its Bluetooth Address. As the Bluetooth Address is retrieved during
14234f384501SMatthias Ringwald  *       power up, this function only works, when the stack is in working state for these ports.
14244f384501SMatthias Ringwald  * @param address_type
14254f384501SMatthias Ringwald  * @param address
14264f384501SMatthias Ringwald  */
14274f384501SMatthias Ringwald void gap_delete_bonding(bd_addr_type_t address_type, bd_addr_t address);
14284f384501SMatthias Ringwald 
14294f384501SMatthias Ringwald /**
143021debf25SMatthias Ringwald  * LE Privacy 1.2 - requires support by Controller and ENABLE_LE_RESOLVING_LIST to be defined
143121debf25SMatthias Ringwald  */
143221debf25SMatthias Ringwald 
143321debf25SMatthias Ringwald /**
1434c3d19a30SMatthias Ringwald  * Set Privacy Mode for use in Resolving List. Default: LE_PRIVACY_MODE_DEVICE
1435c3d19a30SMatthias Ringwald  * @note Only applies for new devices added to resolving list, please call before startup
1436c3d19a30SMatthias Ringwald  * @param privacy_mode
1437c3d19a30SMatthias Ringwald  */
1438c3d19a30SMatthias Ringwald void gap_set_peer_privacy_mode(le_privacy_mode_t privacy_mode );
1439c3d19a30SMatthias Ringwald 
1440c3d19a30SMatthias Ringwald /**
144121debf25SMatthias Ringwald  * @brief Load LE Device DB entries into Controller Resolving List to allow filtering on
144221debf25SMatthias Ringwald  *        bonded devies with resolvable private addresses
144321debf25SMatthias Ringwald  * @return EROOR_CODE_SUCCESS if supported by Controller
144421debf25SMatthias Ringwald  */
144521debf25SMatthias Ringwald uint8_t gap_load_resolving_list_from_le_device_db(void);
1446dcd6c9b5SMatthias Ringwald 
1447052bbdc5SMatthias Ringwald /**
1448052bbdc5SMatthias Ringwald  * @brief Get local persistent IRK
1449052bbdc5SMatthias Ringwald  */
1450052bbdc5SMatthias Ringwald const uint8_t * gap_get_persistent_irk(void);
1451052bbdc5SMatthias Ringwald 
1452d8e8f12aSMatthias Ringwald /* API_END*/
14536e364deaSMatthias Ringwald 
1454458bf4e8S[email protected] #if defined __cplusplus
1455458bf4e8S[email protected] }
1456458bf4e8S[email protected] #endif
1457458bf4e8S[email protected] 
145880e33422SMatthias Ringwald #endif // GAP_H
1459