2 * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
8 * http://www.apache.org/licenses/LICENSE-2.0
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
18 #ifndef _BLUETOOTH_API_H_
19 #define _BLUETOOTH_API_H_
28 #endif /* __cplusplus */
31 * @defgroup BLUETOOTHFW BluetoothFW
33 * A base library for bluetooth framework
35 * @addtogroup BLUETOOTHFW
39 #define BLUETOOTH_ADDRESS_STRING_LENGTH 17 /**< This specifies bluetooth device address length (AA:BB:CC:DD:EE:FF) */
40 #define BLUETOOTH_ADDRESS_LENGTH 6 /**< This specifies bluetooth device address length */
41 #define BLUETOOTH_VERSION_LENGTH_MAX 30 /**< This specifies bluetooth device version length */
42 #define BLUETOOTH_INTERFACE_NAME_LENGTH 16
43 #define BLUETOOTH_DEVICE_NAME_LENGTH_MAX 248 /**< This specifies maximum device name length */
44 #define BLUETOOTH_DEVICE_PASSKEY_LENGTH_MAX 50 /**< This specifies maximum length of the passkey */
45 #define BLUETOOTH_ADVERTISING_DATA_LENGTH_MAX 31 /**< This specifies maximum AD data length */
46 #define BLUETOOTH_SCAN_RESP_DATA_LENGTH_MAX 31 /**< This specifies maximum LE Scan response data length */
47 #define BLUETOOTH_MANUFACTURER_DATA_LENGTH_MAX 240 /**< This specifies maximum manufacturer data length */
49 #define BLUETOOTH_MAX_SERVICES_FOR_DEVICE 40 /**< This specifies maximum number of services
50 a device can support */
52 #define BLUETOOTH_MAX_ATT_MTU 512 /**< This specifies the maximum ATT MTU Value*/
54 #define BLUETOOTH_UUID_STRING_MAX 50
55 #define BLUETOOTH_PATH_STRING 50
57 #define BLUETOOTH_OOB_DATA_LENGTH 16
59 #define BLUETOOTH_PIN_CODE_MAX_LENGTH 16
62 * This is Bluetooth Connected event role
64 #define RFCOMM_ROLE_SERVER 1
65 #define RFCOMM_ROLE_CLIENT 2
68 * This is RFCOMM default Channel Value
70 #define RFCOMM_DEFAULT_PROFILE_CHANNEL 0
73 * This is maximum length for search value string for PBAP Phonebook Search
75 #define BLUETOOTH_PBAP_MAX_SEARCH_VALUE_LENGTH 100
78 #define BLUETOOTH_MAX_DPM_LIST 20 /**< This specifies maximum number of devices/uuids
81 #define BLUETOOTH_TDS_DATA_LENGTH_MAX 239 /**< This specifies maximum AD data length: 0xEF */
82 #define BLUETOOTH_TDS_CONTROL_POINT_PARAM_LENGTH_MAX 500 /**< TDS Control Point parameter Max length */
85 * < This defines the maximum size of OTP server directory name
87 #define BLUETOOTH_MAX_OTP_SERVER_DIR_NAME 100
89 #define BLUETOOTH_OTP_CHARC_VAL_MAX_LENGTH 500 /**< OTP Characteristics Value Max length */
92 * This is Bluetooth error code
94 #define BLUETOOTH_ERROR_BASE ((int)0) /**< Error code base */
96 #define BLUETOOTH_ERROR_NONE ((int)0) /**< No error #0 */
97 #define BLUETOOTH_ERROR_CANCEL ((int)BLUETOOTH_ERROR_BASE - 0x01)
99 #define BLUETOOTH_ERROR_INVALID_CALLBACK ((int)BLUETOOTH_ERROR_BASE - 0x02)
100 /**< Callback error */
101 #define BLUETOOTH_ERROR_INVALID_PARAM ((int)BLUETOOTH_ERROR_BASE - 0x03)
102 /**< invalid paramerror */
103 #define BLUETOOTH_ERROR_INVALID_DATA ((int)BLUETOOTH_ERROR_BASE - 0x04)
104 /**< invalid data error */
105 #define BLUETOOTH_ERROR_MEMORY_ALLOCATION ((int)BLUETOOTH_ERROR_BASE - 0x05)
106 /**< Memory allocation error */
107 #define BLUETOOTH_ERROR_OUT_OF_MEMORY ((int)BLUETOOTH_ERROR_BASE - 0x06)
108 /**< out of memory error */
109 #define BLUETOOTH_ERROR_TIMEOUT ((int)BLUETOOTH_ERROR_BASE - 0x07)
110 /**< timeout error */
111 #define BLUETOOTH_ERROR_NO_RESOURCES ((int)BLUETOOTH_ERROR_BASE - 0x08)
112 /**< No resource error */
113 #define BLUETOOTH_ERROR_INTERNAL ((int)BLUETOOTH_ERROR_BASE - 0x09)
114 /**< internal error */
115 #define BLUETOOTH_ERROR_NOT_SUPPORT ((int)BLUETOOTH_ERROR_BASE - 0x0a)
116 /**< Not supported error */
117 #define BLUETOOTH_ERROR_DEVICE_NOT_ENABLED ((int)BLUETOOTH_ERROR_BASE - 0x0b)
118 /**< Operation is failed because
119 of not enabled BT Adapter */
120 #define BLUETOOTH_ERROR_DEVICE_ALREADY_ENABLED ((int)BLUETOOTH_ERROR_BASE - 0x0c)
121 /**< Enabling is failed because of
122 already enabled BT Adapter */
123 #define BLUETOOTH_ERROR_DEVICE_BUSY ((int)BLUETOOTH_ERROR_BASE - 0x0d)
124 /**< Operation is failed because of
125 other on going operation */
126 #define BLUETOOTH_ERROR_ACCESS_DENIED ((int)BLUETOOTH_ERROR_BASE - 0x0e)
127 /**< access denied error */
128 #define BLUETOOTH_ERROR_MAX_CLIENT ((int)BLUETOOTH_ERROR_BASE - 0x0f)
129 /**< max client error */
130 #define BLUETOOTH_ERROR_NOT_FOUND ((int)BLUETOOTH_ERROR_BASE - 0x10)
131 /**< not found error */
132 #define BLUETOOTH_ERROR_SERVICE_SEARCH_ERROR ((int)BLUETOOTH_ERROR_BASE - 0x11)
133 /**< service search fail */
134 #define BLUETOOTH_ERROR_PARING_FAILED ((int)BLUETOOTH_ERROR_BASE - 0x12)
135 /**< pairing failed error */
136 #define BLUETOOTH_ERROR_NOT_PAIRED ((int)BLUETOOTH_ERROR_BASE - 0x13)
137 /**< Not paired error */
138 #define BLUETOOTH_ERROR_SERVICE_NOT_FOUND ((int)BLUETOOTH_ERROR_BASE - 0x14)
139 /**< no service error */
140 #define BLUETOOTH_ERROR_NOT_CONNECTED ((int)BLUETOOTH_ERROR_BASE - 0x15)
141 /**< no connection error */
142 #define BLUETOOTH_ERROR_ALREADY_CONNECT ((int)BLUETOOTH_ERROR_BASE - 0x16)
143 /**< alread connected error */
144 #define BLUETOOTH_ERROR_CONNECTION_BUSY ((int)BLUETOOTH_ERROR_BASE - 0x17)
145 /**< connection busy error */
146 #define BLUETOOTH_ERROR_CONNECTION_ERROR ((int)BLUETOOTH_ERROR_BASE - 0x18)
147 /**< connection error */
148 #define BLUETOOTH_ERROR_MAX_CONNECTION ((int)BLUETOOTH_ERROR_BASE - 0x19)
149 /**< max connection error*/
150 #define BLUETOOTH_ERROR_NOT_IN_OPERATION ((int)BLUETOOTH_ERROR_BASE - 0x1a)
151 /**< Not in operation */
152 #define BLUETOOTH_ERROR_CANCEL_BY_USER ((int)BLUETOOTH_ERROR_BASE - 0x1b)
153 /**< Cancelled by user */
154 #define BLUETOOTH_ERROR_REGISTRATION_FAILED ((int)BLUETOOTH_ERROR_BASE - 0x1c)
155 /**< Service record registration failed */
156 #define BLUETOOTH_ERROR_IN_PROGRESS ((int)BLUETOOTH_ERROR_BASE - 0x1d)
157 /**< Operation in progress */
158 #define BLUETOOTH_ERROR_AUTHENTICATION_FAILED ((int)BLUETOOTH_ERROR_BASE - 0x1e)
159 /**< authentication failed error when paring*/
160 #define BLUETOOTH_ERROR_HOST_DOWN ((int)BLUETOOTH_ERROR_BASE - 0x1f)
161 /**< Remote host is down */
162 #define BLUETOOTH_ERROR_END_OF_DEVICE_LIST ((int)BLUETOOTH_ERROR_BASE - 0x20)
163 /**< End of device list */
165 #define BLUETOOTH_ERROR_AGENT_ALREADY_EXIST ((int)BLUETOOTH_ERROR_BASE - 0x21)
166 /**< Obex agent already exists */
167 #define BLUETOOTH_ERROR_AGENT_DOES_NOT_EXIST ((int)BLUETOOTH_ERROR_BASE - 0x22)
168 /**< Obex agent does not exist */
170 #define BLUETOOTH_ERROR_ALREADY_INITIALIZED ((int)BLUETOOTH_ERROR_BASE - 0x23)
171 /**< Already initialized */
173 #define BLUETOOTH_ERROR_PERMISSION_DEINED ((int)BLUETOOTH_ERROR_BASE - 0x24)
174 /**< Permission deined */
176 #define BLUETOOTH_ERROR_ALREADY_DEACTIVATED ((int)BLUETOOTH_ERROR_BASE - 0x25)
177 /**< Nap already done */
179 #define BLUETOOTH_ERROR_NOT_INITIALIZED ((int)BLUETOOTH_ERROR_BASE - 0x26)
180 /**< Not initialized */
182 #define BLUETOOTH_ERROR_AUTHENTICATION_REJECTED ((int)BLUETOOTH_ERROR_BASE - 0x27)
183 /**< Authentication rejected */
185 #define BLUETOOTH_ERROR_DEVICE_POLICY_RESTRICTION ((int)BLUETOOTH_ERROR_BASE - 0x28)
186 /**< Device Policy Restricted */
188 * Error codes for ATT Error response *
190 #define BLUETOOTH_ATT_ERROR_INTERNAL -1
191 #define BLUETOOTH_ATT_ERROR_NONE 0x00
192 #define BLUETOOTH_ATT_ERROR_INVALID_HANDLE 0x01
193 #define BLUETOOTH_ATT_ERROR_READ_NOT_PERMITTED 0x02
194 #define BLUETOOTH_ATT_ERROR_WRITE_NOT_PERMITTED 0x03
195 #define BLUETOOTH_ATT_ERROR_INVALID_PDU 0x04
196 #define BLUETOOTH_ATT_ERROR_AUTHENTICATION 0x05
197 #define BLUETOOTH_ATT_ERROR_REQUEST_NOT_SUPPORTED 0x06
198 #define BLUETOOTH_ATT_ERROR_INVALID_OFFSET 0x07
199 #define BLUETOOTH_ATT_ERROR_AUTHORIZATION 0x08
200 #define BLUETOOTH_ATT_ERROR_PREPARE_QUEUE_FULL 0x09
201 #define BLUETOOTH_ATT_ERROR_ATTRIBUTE_NOT_FOUND 0x0A
202 #define BLUETOOTH_ATT_ERROR_ATTRIBUTE_NOT_LONG 0x0B
203 #define BLUETOOTH_ATT_ERROR_INSUFFICIENT_ENCRYPTION_KEY_SIZE 0x0C
204 #define BLUETOOTH_ATT_ERROR_INVALID_ATTRIBUTE_VALUE_LEN 0x0D
205 #define BLUETOOTH_ATT_ERROR_UNLIKELY 0x0E
206 #define BLUETOOTH_ATT_ERROR_INSUFFICIENT_ENCRYPTION 0x0F
207 #define BLUETOOTH_ATT_ERROR_UNSUPPORTED_GROUP_TYPE 0x10
208 #define BLUETOOTH_ATT_ERROR_INSUFFICIENT_RESOURCES 0x11
209 /* Common profile error codes */
210 #define BLUETOOTH_ATT_ERROR_WRITE_REQUEST_REJECTED 0xFC
211 #define BLUETOOTH_ATT_ERROR_CCCD_IMPROPERLY_CONFIGURED 0xFD
212 #define BLUETOOTH_ATT_ERROR_PROCEDURE_ALREADY_IN_PROGRESS 0xFE
213 #define BLUETOOTH_ATT_ERROR_OUT_OF_RANGE 0xFF
216 * Bluetooth ATT error codes specific to OTP
218 #define BLUETOOTH_OTP_ERROR_WRITE_REQUEST_REJECTED 0x80
219 #define BLUETOOTH_OTP_ERROR_OBJECT_NOT_SELECTED 0x81
220 #define BLUETOOTH_OTP_ERROR_CONCURRENCY_LIMIT_EXCEEDED 0x82
221 #define BLUETOOTH_OTP_ERROR_OBJECT_NAME_EXISTS 0x83
224 * Bluetooth OTP error codes
225 * TODO: Check error code conflict
227 #define BLUETOOTH_ERROR_INVALID_DIRECTORY 0x01
228 #define BLUETOOTH_ERROR_NO_OBJECTS_FOUND 0x02
231 * Device disconnection reasons; received from stack
233 #define BLUETOOTH_ERROR_PAGE_TIMEOUT 0x04
234 #define BLUETOOTH_ERROR_AUTH_FAILURE 0x05
235 #define BLUETOOTH_ERROR_PIN_OR_KEY_MISSING 0x06
236 #define BLUETOOTH_ERROR_CONNECTION_TIMEOUT 0x08
237 #define BLUETOOTH_ERROR_REMOTE_USER_TERM 0x13
238 #define BLUETOOTH_ERROR_REMOTE_LOW_RESOURCES 0x14
239 #define BLUETOOTH_ERROR_REMOTE_POWER_OFF 0x15
240 #define BLUETOOTH_ERROR_LOCAL_HOST_TERM 0x16
241 #define BLUETOOTH_ERROR_REPEATED_ATTEMPTS 0x17
242 #define BLUETOOTH_ERROR_LMP_RESPONSE_TIMEOUT 0x22
243 #define BLUETOOTH_ERROR_LMP_TRANSACTION_COLLISION 0x23
244 #define BLUETOOTH_ERROR_INSTANT_PASSED 0x28
245 #define BLUETOOTH_ERROR_INSUFFICIENT_SECURITY 0x2f
246 #define BLUETOOTH_ERROR_CONNECTION_TERMINATED_DUE_TO_MIC_FAILURE 0x3d
247 #define BLUETOOTH_ERROR_CONNECTION_FAILED_TO_BE_ESTABLISHED 0x3e
250 * Device disconnect reason
253 BLUETOOTH_DEVICE_DISCONNECT_UNKNOWN,
254 BLUETOOTH_DEVICE_DISCONNECT_TIMEOUT,
255 BLUETOOTH_DEVICE_DISCONNECT_LOCAL_HOST,
256 BLUETOOTH_DEVICE_DISCONNECT_REMOTE,
257 } bluetooth_device_disconnect_reason_t;
260 * This is Bluetooth device address type, fixed to 6 bytes ##:##:##:##:##:##
263 unsigned char addr[BLUETOOTH_ADDRESS_LENGTH];
264 } bluetooth_device_address_t;
267 * This is Bluetooth device address type
270 BLUETOOTH_DEVICE_PUBLIC_ADDRESS = 0x00,
271 BLUETOOTH_DEVICE_RANDOM_ADDRESS
272 } bluetooth_device_address_type_t;
275 * This is BD Address type defined in kernel BT header
278 BLUETOOTH_BDADDR_BREDR = 0x00,
279 BLUETOOTH_BDADDR_LE_PUBLIC = 0x01,
280 BLUETOOTH_BDADDR_LE_RANDOM = 0x02
281 } bluetooth_bdaddr_type_e;
284 * This is Bluetooth version
287 char version[BLUETOOTH_VERSION_LENGTH_MAX + 1];
288 } bluetooth_version_t;
291 * This is Bluetooth device name type, maximum size of Bluetooth device name is 248 bytes
294 char name[BLUETOOTH_DEVICE_NAME_LENGTH_MAX + 1];
295 } bluetooth_device_name_t;
298 * This is Bluetooth manufacturer specific data, maximum size of data is 240 bytes
301 int data_len; /**< manafacturer specific data length */
302 char data[BLUETOOTH_MANUFACTURER_DATA_LENGTH_MAX];
303 } bluetooth_manufacturer_data_t;
306 char pin_code[BLUETOOTH_PIN_CODE_MAX_LENGTH + 1];
307 } bluetooth_device_pin_code_t;
313 BLUETOOTH_ADAPTER_DISABLED, /**< Bluetooth adapter is disabled */
314 BLUETOOTH_ADAPTER_ENABLED, /**< Bluetooth adapter is enabled */
315 BLUETOOTH_ADAPTER_CHANGING_ENABLE, /**< Bluetooth adapter is currently enabling */
316 BLUETOOTH_ADAPTER_CHANGING_DISABLE, /**< Bluetooth adapter is currently disabling */
317 } bluetooth_adapter_state_t;
323 BLUETOOTH_ADAPTER_LE_DISABLED, /**< Bluetooth adapter le is disabled */
324 BLUETOOTH_ADAPTER_LE_ENABLED, /**< Bluetooth adapter le is enabled */
325 BLUETOOTH_ADAPTER_LE_CHANGING_ENABLE, /**< Bluetooth adapter le is currently enabling */
326 BLUETOOTH_ADAPTER_LE_CHANGING_DISABLE, /**< Bluetooth adapter le is currently disabling */
327 } bluetooth_adapter_le_state_t;
333 BLUETOOTH_DISCOVERABLE_MODE_CONNECTABLE, /**< Non discoverable mode */
334 /*Changed the order to make it compatable with old method */
335 BLUETOOTH_DISCOVERABLE_MODE_GENERAL_DISCOVERABLE,/**< Discoverable mode */
336 BLUETOOTH_DISCOVERABLE_MODE_TIME_LIMITED_DISCOVERABLE,
337 /**< Discoverable mode with time limit
338 After specific timeout, it is changed
339 to non discoverable mode */
340 } bluetooth_discoverable_mode_t;
343 * Network connect mode
346 BLUETOOTH_NETWORK_PANU_ROLE,
348 BLUETOOTH_NETWORK_NAP_ROLE,/**< Network Access Point */
349 BLUETOOTH_NETWORK_GN_ROLE, /**< Group ad-hoc Network */
350 BLUETOOTH_NETWORK_CUSTOM_UUID, /**< Custom role */
351 } bluetooth_network_role_t;
355 * Service type matched to bt_profile_type_t of bt-service-common.h
358 BLUETOOTH_RFCOMM_SERVICE = 0x01,
359 BLUETOOTH_A2DP_SERVICE = 0x02,
360 BLUETOOTH_HSP_SERVICE = 0x04,
361 BLUETOOTH_HID_SERVICE = 0x08,
362 BLUETOOTH_NAP_SERVICE = 0x10,
363 BLUETOOTH_HFG_SERVICE = 0x20,
364 BLUETOOTH_GATT_SERVICE = 0x40,
365 BLUETOOTH_NAP_SERVER_SERVICE = 0x80,
366 BLUETOOTH_A2DP_SINK_SERVICE = 0x100,
367 BLUETOOTH_PBAP_SERVICE = 0x200,
368 } bluetooth_service_type_t;
374 BLUETOOTH_DEV_CONN_DEFAULT = 0xFF,
375 /* represents that connection
376 * type can both BR/EDR and LE */
377 BLUETOOTH_DEV_CONN_BREDR = 0x00,
378 BLUETOOTH_DEV_CONN_LE = 0x01,
379 } bluetooth_conn_type_t;
385 BLUETOOTH_CODEC_ID_CVSD = 0x01,
386 BLUETOOTH_CODEC_ID_MSBC = 0x02,
387 } bluetooth_codec_type_t;
393 BLUETOOTH_HF_AUDIO_DISCONNECTED = 0x00,
394 BLUETOOTH_HF_AUDIO_CONNECTED = 0x01,
395 } bluetooth_hf_audio_connected_type_t;
401 guint8 data[BLUETOOTH_ADVERTISING_DATA_LENGTH_MAX];
402 } bluetooth_advertising_data_t;
408 guint8 data[BLUETOOTH_SCAN_RESP_DATA_LENGTH_MAX];
409 } bluetooth_scan_resp_data_t;
412 * Advertising filter policy
415 BLUETOOTH_ALLOW_SCAN_CONN_ALL = 0x00,
416 BLUETOOTH_ALLOW_CONN_ALL_SCAN_WHITE_LIST = 0x01,
417 BLUETOOTH_ALLOW_SCAN_ALL_CONN_WHITE_LIST = 0x02,
418 BLUETOOTH_ALLOW_SCAN_CONN_WHITE_LIST = 0x03,
419 } bluetooth_advertising_filter_policy_t;
425 BLUETOOTH_ADV_CONNECTABLE = 0x00, /* ADV_IND */
426 BLUETOOTH_ADV_CONNECTABLE_DIRECT_HIGH = 0x01, /* ADV_DIRECT_IND, high duty cycle */
427 BLUETOOTH_ADV_SCANNABLE = 0x02, /* ADV_SCAN_IND */
428 BLUETOOTH_ADV_NON_CONNECTABLE = 0x03, /* ADV_NONCOND_IND */
429 BLUETOOTH_ADV_CONNECTABLE_DIRECT_LOW = 0x04, /* ADV_DIRECT_IND, low duty cycle */
430 } bluetooth_advertising_type_t;
433 BLUETOOTH_GATT_SERVICE_CHANGE_TYPE_ADD = 0x01,
434 BLUETOOTH_GATT_SERVICE_CHANGE_TYPE_REMOVE = 0x02,
435 } bluetooth_gatt_service_change_type_t;
438 BLUETOOTH_GATT_PERMISSION_READ = 0x01,
439 BLUETOOTH_GATT_PERMISSION_WRITE = 0x02,
440 BLUETOOTH_GATT_PERMISSION_ENCRYPT_READ = 0x04,
441 BLUETOOTH_GATT_PERMISSION_ENCRYPT_WRITE = 0x08,
442 BLUETOOTH_GATT_PERMISSION_ENCRYPT_AUTHENTICATED_READ = 0x10,
443 BLUETOOTH_GATT_PERMISSION_ENCRYPT_AUTHENTICATED_WRITE = 0x20,
444 } bt_gatt_permission_t;
447 BLUETOOTH_GATT_CHARACTERISTIC_PROPERTY_BROADCAST = 0x01,
448 BLUETOOTH_GATT_CHARACTERISTIC_PROPERTY_READ = 0x02,
449 BLUETOOTH_GATT_CHARACTERISTIC_PROPERTY_WRITE_NO_RESPONSE = 0x04,
450 BLUETOOTH_GATT_CHARACTERISTIC_PROPERTY_WRITE = 0x08,
451 BLUETOOTH_GATT_CHARACTERISTIC_PROPERTY_NOTIFY = 0x10,
452 BLUETOOTH_GATT_CHARACTERISTIC_PROPERTY_INDICATE = 0x20,
453 BLUETOOTH_GATT_CHARACTERISTIC_PROPERTY_SIGNED_WRITE = 0x40,
454 BLUETOOTH_GATT_CHARACTERISTIC_PROPERTY_RELIABLE_WRITE = 0x80,
455 BLUETOOTH_GATT_CHARACTERISTIC_PROPERTY_WRITABLE_AUXILIARIES = 0x100,
456 BLUETOOTH_GATT_CHARACTERISTIC_PROPERTY_ENCRYPT_READ = 0x200,
457 BLUETOOTH_GATT_CHARACTERISTIC_PROPERTY_ENCRYPT_WRITE = 0x400,
458 BLUETOOTH_GATT_CHARACTERISTIC_PROPERTY_ENCRYPT_AUTHENTICATED_READ = 0x800,
459 BLUETOOTH_GATT_CHARACTERISTIC_PROPERTY_ENCRYPT_AUTHENTICATED_WRITE = 0x1000,
460 BLUETOOTH_GATT_CHARACTERISTIC_PROPERTY_EXTENDED_PROPS = 0xffff,
461 } bt_gatt_characteristic_property_t;
464 * Remote device request types for attributes
467 BLUETOOTH_GATT_ATT_REQUEST_TYPE_READ = 0x00, /* Read Requested*/
468 BLUETOOTH_GATT_ATT_REQUEST_TYPE_WRITE = 0x01, /* Write Requested*/
469 } bluetooth_gatt_att_request_tyep_t;
472 * Proximity Property Type
475 BLUETOOTH_PXP_PROPERTY_LLS = 0x01, /* Link Loss Alert Proeprty */
476 BLUETOOTH_PXP_PROPERTY_IAS = 0x02, /* Immediate Alert Proeprty */
477 BLUETOOTH_PXP_PROPERTY_TX_POWER = 0x04, /* TX Power */
478 } bluetooth_pxp_poperty_t;
484 BLUETOOTH_TDS_TRANSPORT_BT = 0x01, /* Transport type BR-EDR */
485 BLUETOOTH_TDS_TRANSPORT_CUSTOM, /* Transport type custom */
487 BLUETOOTH_TDS_TRANSPORT_INVALID
488 } bluetooth_tds_transport_t;
491 * TDS transport state
494 BLUETOOTH_TDS_TRANSPORT_STATE_OFF = 0,
495 BLUETOOTH_TDS_TRANSPORT_STATE_ON,
496 BLUETOOTH_TDS_TRANSPORT_STATE_UNAVAILABLE,
497 BLUETOOTH_TDS_TRANSPORT_STATE_RESERVED
498 } bluetooth_tds_transport_state_t;
505 guint8 data[BLUETOOTH_TDS_DATA_LENGTH_MAX];
506 } bluetooth_tds_data_t;
509 * TDS activation request
512 bluetooth_device_address_t rem_addr;
513 bluetooth_tds_transport_t transport;
514 bluetooth_tds_data_t tds_data;
515 } bluetooth_tds_activation_req_t;
518 * TDS Control Point data
521 int length; /**< Control point data length */
522 guint8 data[BLUETOOTH_TDS_CONTROL_POINT_PARAM_LENGTH_MAX]; /**< Control pint param data */
523 } bluetooth_control_point_data_t;
526 * TDS Indication Response data
529 bluetooth_device_address_t rem_addr; /**< Device address */
530 bluetooth_control_point_data_t tds_data; /**< TDS Control Point Indication params */
531 } bluetooth_tds_indication_res_t;
534 * Structure to hold the TDS Complete data information which is read from remote TDS provider
537 bluetooth_device_address_t device_address; /**< Device address */
538 int data_length; /**< Data length */
539 char *data; /**< Complete Transport Specific data */
540 } bluetooth_tds_transport_data_info_t;
543 * OTP Characteristics Value
546 int length; /**< Characteristics value length */
547 guint8 data[BLUETOOTH_OTP_CHARC_VAL_MAX_LENGTH]; /**< Characteristics data */
548 } bluetooth_otp_charc_data_t;
551 * Structure to hold the OTP response data from remote OTP server
554 char *handle; /**< Handle */
555 int data_length; /**< Data length */
556 char *data; /**< Read data */
557 } bluetooth_otp_resp_info_t;
560 * Structure to hold the OTC Channel Info
563 gboolean connected; /**< Connection Status */
565 char *address; /**< Remote address */
566 } bluetooth_otc_info_t;
569 * Advertising parameters
574 guint8 filter_policy;
576 } bluetooth_advertising_params_t;
582 int type; /**< passive 0, active 1 */
583 float interval; /**< LE scan interval */
584 float window; /**< LE scan window */
585 } bluetooth_le_scan_params_t;
595 } bluetooth_le_connection_param_t;
598 LE Read Maximum Data Length
601 guint16 max_tx_octets;
603 guint16 max_rx_octets;
605 } bluetooth_le_read_maximum_data_length_t;
608 LE Read Host suggested default Data Length
611 guint16 def_tx_octets;
613 } bluetooth_le_read_host_suggested_data_length_t;
616 * Samsung XSAT Vendor dependent command
621 } bluetooth_vendor_dep_at_cmd_t;
627 BLUETOOTH_TRANSFER_INBOUND, /**< Inbound Transfer Type */
628 BLUETOOTH_TRANSFER_OUTBOUND, /**< Outbound Transfer Type */
629 } bluetooth_opp_transfer_type_t;
634 } bluetooth_hf_ciev_device_event_t;
636 #define BLUETOOTH_EVENT_BASE ((int)(0x0000)) /**< No event */
637 #define BLUETOOTH_EVENT_GAP_BASE ((int)(BLUETOOTH_EVENT_BASE + 0x0010))
638 /**< Base ID for GAP Event */
639 #define BLUETOOTH_EVENT_SDP_BASE ((int)(BLUETOOTH_EVENT_GAP_BASE + 0x0020))
640 /**< Base ID for SDP events */
641 #define BLUETOOTH_EVENT_RFCOMM_BASE ((int)(BLUETOOTH_EVENT_SDP_BASE + 0x0020))
642 /**< Base ID for RFCOMM events */
643 #define BLUETOOTH_EVENT_NETWORK_BASE ((int)(BLUETOOTH_EVENT_RFCOMM_BASE + 0x0020))
644 /**< Base ID for NETWORK events */
645 #define BLUETOOTH_EVENT_HDP_BASE ((int)(BLUETOOTH_EVENT_NETWORK_BASE + 0x0020))
646 /**< Base ID for HDP events */
647 #define BLUETOOTH_EVENT_OPC_BASE ((int)(BLUETOOTH_EVENT_HDP_BASE + 0x0020))
648 /**< Base ID for OPC events */
649 #define BLUETOOTH_EVENT_OBEX_SERVER_BASE ((int)(BLUETOOTH_EVENT_OPC_BASE + 0x0020))
650 /**< Base ID for Obex Server events */
651 #define BLUETOOTH_EVENT_GATT_BASE ((int)(BLUETOOTH_EVENT_OBEX_SERVER_BASE + 0x0020))
652 /**< Base ID for GATT events */
654 #define BLUETOOTH_EVENT_AUDIO_BASE ((int)(BLUETOOTH_EVENT_GATT_BASE + 0x0020))
655 /**< Base ID for Audio events */
656 #define BLUETOOTH_EVENT_HID_BASE ((int)(BLUETOOTH_EVENT_AUDIO_BASE + 0x0030))
657 /**< Base ID for HID events */
658 #define BLUETOOTH_EVENT_ADVERTISING_BASE ((int)(BLUETOOTH_EVENT_HID_BASE + 0x0020))
659 /**< Base ID for Advertising events */
660 #define BLUETOOTH_EVENT_PBAP_CLIENT_BASE ((int)(BLUETOOTH_EVENT_ADVERTISING_BASE + 0x0020))
661 /**< Base ID for PBAP Client events */
662 #define BLUETOOTH_EVENT_AVRCP_CONTROL_BASE ((int)(BLUETOOTH_EVENT_PBAP_CLIENT_BASE + 0x0020))
663 /**< Base ID for AVRCP events */
664 #define BLUETOOTH_EVENT_IPSP_BASE ((int)(BLUETOOTH_EVENT_AVRCP_CONTROL_BASE + 0x0020))
665 /**< Base ID for IPSP events */
666 #define BLUETOOTH_EVENT_MAP_BASE ((int)(BLUETOOTH_EVENT_IPSP_BASE + 0x0020))
667 /**< Base ID for MAP events */
670 * Bluetooth event type
673 BLUETOOTH_EVENT_NONE = BLUETOOTH_EVENT_BASE,/**< No event */
675 BLUETOOTH_EVENT_ENABLED, /**< Bluetooth event adpater enabled */
676 BLUETOOTH_EVENT_DISABLED, /**< Bluetooth event adpater disabled */
677 BLUETOOTH_EVENT_LE_ENABLED, /**< Bluetooth event adpater enabled */
678 BLUETOOTH_EVENT_LE_DISABLED, /**< Bluetooth event adpater disabled */
679 BLUETOOTH_EVENT_LOCAL_NAME_CHANGED, /**< Bluetooth event local name changed*/
680 BLUETOOTH_EVENT_DISCOVERABLE_TIMEOUT_REQUESTED,
681 /**< Bluetooth event Discoverable timeout requested*/
682 BLUETOOTH_EVENT_DISCOVERABLE_MODE_CHANGED, /**< Bluetooth event mode changed */
683 BLUETOOTH_EVENT_DISCOVERY_OPTION_REQUESTED, /**< Bluetooth event discovery option */
684 BLUETOOTH_EVENT_DISCOVERY_STARTED, /**< Bluetooth event discovery started */
685 BLUETOOTH_EVENT_DISCOVERY_FINISHED, /**< Bluetooth event discovery finished */
686 BLUETOOTH_EVENT_REMOTE_DEVICE_FOUND, /**< Bluetooth event remote deice found */
687 BLUETOOTH_EVENT_LE_DISCOVERY_STARTED, /**< Bluetooth event LE discovery started */
688 BLUETOOTH_EVENT_LE_DISCOVERY_FINISHED, /**< Bluetooth event LE discovery finished */
689 BLUETOOTH_EVENT_REMOTE_LE_DEVICE_FOUND, /**< Bluetooth event remote deice found (LE dev) */
690 BLUETOOTH_EVENT_REMOTE_DEVICE_NAME_UPDATED,/**< Bluetooth event remote device name updated*/
691 BLUETOOTH_EVENT_BONDING_FINISHED, /**< Bluetooth event bonding completed */
692 BLUETOOTH_EVENT_BONDED_DEVICE_REMOVED, /**< Bluetooth event bonding removed */
693 BLUETOOTH_EVENT_BONDED_DEVICE_FOUND, /**< Bluetooth event paired device found */
694 BLUETOOTH_EVENT_REMOTE_DEVICE_READ, /**< Bluetooth event read remote device */
695 BLUETOOTH_EVENT_DEVICE_AUTHORIZED, /**< Bluetooth event authorize device */
696 BLUETOOTH_EVENT_DEVICE_UNAUTHORIZED, /**< Bluetooth event unauthorize device */
697 BLUETOOTH_EVENT_DISCOVERABLE_TIMEOUT_CHANGED, /**< Bluetooth event mode changed */
698 BLUETOOTH_EVENT_KEYBOARD_PASSKEY_DISPLAY, /**Bluetooth event for displaying keyboard passkey to user*/
699 BLUETOOTH_EVENT_PIN_REQUEST, /**Bluetooth event for PIN input by user*/
700 BLUETOOTH_EVENT_PASSKEY_REQUEST, /**Bluetooth event for entering Passkey by user*/
701 BLUETOOTH_EVENT_PASSKEY_CONFIRM_REQUEST, /**Bluetooth event for Passkey confirmation by user*/
702 BLUETOOTH_EVENT_CONNECTABLE_CHANGED, /**< Bluetooth event connectable changed */
704 BLUETOOTH_EVENT_RSSI_ENABLED, /**< Bluetooth event RSSI monitoring enabled */
705 BLUETOOTH_EVENT_RSSI_ALERT, /**< Bluetooth event RSSI Alert */
706 BLUETOOTH_EVENT_RAW_RSSI, /**< Bluetooth event Raw RSSI */
707 BLUETOOTH_EVENT_SUPPORTED_PROFILE_TRUSTED, /**< Bluetooth event Supported Profile Trusted */
708 BLUETOOTH_EVENT_PASSKEY_NOTIFICATION, /**< Bluetooth event passkey notification */
710 BLUETOOTH_EVENT_SERVICE_SEARCHED = BLUETOOTH_EVENT_SDP_BASE,
711 /**< Bluetooth event serice search base id */
712 BLUETOOTH_EVENT_SERVICE_SEARCH_CANCELLED, /**< Bluetooth event service search cancelled */
713 BLUETOOTH_EVENT_RFCOMM_DATA_RECEIVED = BLUETOOTH_EVENT_RFCOMM_BASE,
714 /**< RFCOMM data receive event */
715 BLUETOOTH_EVENT_RFCOMM_CONNECTED, /**< Rfcomm server incomming connection */
716 BLUETOOTH_EVENT_RFCOMM_DISCONNECTED, /**< Rfcomm server/client disconnect */
718 BLUETOOTH_EVENT_RFCOMM_AUTHORIZE,
720 BLUETOOTH_EVENT_DEVICE_CONNECTED, /**< Bluetooth event device connected */
721 BLUETOOTH_EVENT_DEVICE_DISCONNECTED, /**< Bluetooth event device disconnected */
723 BLUETOOTH_EVENT_RFCOMM_SERVER_REMOVED,
725 BLUETOOTH_EVENT_NETWORK_SERVER_ACTIVATED = BLUETOOTH_EVENT_NETWORK_BASE,
726 /**< Bluetooth Network event */
727 BLUETOOTH_EVENT_NETWORK_SERVER_DEACTIVATED, /**< Network server deactivated */
728 BLUETOOTH_EVENT_NETWORK_SERVER_CONNECTED, /**< Network connected event in server */
729 BLUETOOTH_EVENT_NETWORK_SERVER_DISCONNECTED,
730 /**< Network disconnected evnet in server */
732 BLUETOOTH_EVENT_NETWORK_CONNECTED, /**< Network connected event in client*/
733 BLUETOOTH_EVENT_NETWORK_DISCONNECTED, /**< Network disconnected evnet in client*/
735 BLUETOOTH_EVENT_HDP_CONNECTED
736 = BLUETOOTH_EVENT_HDP_BASE, /**<HDP Connect>*/
737 BLUETOOTH_EVENT_HDP_DISCONNECTED, /**<HDP Disconnect>*/
738 BLUETOOTH_EVENT_HDP_DATA_RECEIVED, /**<HDP Data Indication>*/
740 BLUETOOTH_EVENT_OPC_CONNECTED = BLUETOOTH_EVENT_OPC_BASE,
741 /* OPC Connected event */
742 BLUETOOTH_EVENT_OPC_DISCONNECTED, /* OPC Disonnected event */
743 BLUETOOTH_EVENT_OPC_TRANSFER_STARTED, /* OPC Transfer started event */
744 BLUETOOTH_EVENT_OPC_TRANSFER_PROGRESS, /* OPC Transfer progress event */
745 BLUETOOTH_EVENT_OPC_TRANSFER_COMPLETE, /* OPC Transfer Complete event */
747 BLUETOOTH_EVENT_MAP_CONNECTED = BLUETOOTH_EVENT_MAP_BASE,
748 BLUETOOTH_EVENT_MAP_DISCONNECTED,
750 BLUETOOTH_EVENT_MAP_SET_FOLDER_COMPLETE,
751 BLUETOOTH_EVENT_MAP_SET_FOLDER_INVALID_ARGUMENTS,
752 BLUETOOTH_EVENT_MAP_SET_FOLDER_FAILED,
753 BLUETOOTH_EVENT_MAP_UPDATE_INBOX_COMPLETE,
754 BLUETOOTH_EVENT_MAP_UPDATE_INBOX_FAILED,
756 BLUETOOTH_EVENT_MAP_LIST_FOLDERS_COMPLETE,
757 BLUETOOTH_EVENT_MAP_LIST_FOLDERS_INVALID_ARGUMENTS,
758 BLUETOOTH_EVENT_MAP_LIST_FOLDERS_FAILED,
759 BLUETOOTH_EVENT_MAP_LIST_MESSAGES_COMPLETE,
760 BLUETOOTH_EVENT_MAP_LIST_MESSAGES_INVALID_ARGUMENTS,
761 BLUETOOTH_EVENT_MAP_LIST_MESSAGES_FAILED,
762 BLUETOOTH_EVENT_MAP_PUSH_MESSAGE_COMPLETE,
763 BLUETOOTH_EVENT_MAP_PUSH_MESSAGE_INVALID_ARGUMENTS,
764 BLUETOOTH_EVENT_MAP_PUSH_MESSAGE_FAILED,
765 BLUETOOTH_EVENT_MAP_GET_MESSAGE_COMPLETE,
766 BLUETOOTH_EVENT_MAP_GET_MESSAGE_INVALID_ARGUMENTS,
767 BLUETOOTH_EVENT_MAP_GET_MESSAGE_FAILED,
768 BLUETOOTH_EVENT_MAP_LIST_FILTER_FIELD_COMPLETE,
770 BLUETOOTH_EVENT_OBEX_SERVER_TRANSFER_AUTHORIZE = BLUETOOTH_EVENT_OBEX_SERVER_BASE,
771 /* Obex server authorize event*/
772 BLUETOOTH_EVENT_OBEX_SERVER_TRANSFER_STARTED, /* Obex Server transfer started event*/
773 BLUETOOTH_EVENT_OBEX_SERVER_TRANSFER_PROGRESS,/* Obex Server transfer progress event*/
774 BLUETOOTH_EVENT_OBEX_SERVER_TRANSFER_COMPLETED,/* Obex Server transfer complete event*/
775 BLUETOOTH_EVENT_OBEX_SERVER_CONNECTION_AUTHORIZE,
776 BLUETOOTH_EVENT_OBEX_SERVER_TRANSFER_CONNECTED, /* Obex Transfer connected event */
777 BLUETOOTH_EVENT_OBEX_SERVER_TRANSFER_DISCONNECTED, /* Obex Transfer disconnected event */
779 BLUETOOTH_EVENT_GATT_SVC_CHAR_DISCOVERED = BLUETOOTH_EVENT_GATT_BASE,
780 /**<Discovered GATT service characteristics event*/
781 BLUETOOTH_EVENT_GATT_CHAR_VAL_CHANGED,
782 /**<Remote GATT charateristic value changed event*/
783 BLUETOOTH_EVENT_GATT_GET_CHAR_FROM_UUID,
784 BLUETOOTH_EVENT_GATT_READ_CHAR, /**<Gatt Read Characteristic Value */
785 BLUETOOTH_EVENT_GATT_WRITE_CHAR, /**<Gatt Write Characteristic Value */
786 BLUETOOTH_EVENT_GATT_READ_DESC, /**<Gatt Read Characteristic Descriptor Value */
787 BLUETOOTH_EVENT_GATT_WRITE_DESC, /**<Gatt Write Characteristic Descriptor Value */
788 BLUETOOTH_EVENT_GATT_SVC_CHAR_DESC_DISCOVERED, /**<Gatt Char Descriptors Discovered Event*/
789 BLUETOOTH_EVENT_GATT_CONNECTED,/**<Gatt connected event */
790 BLUETOOTH_EVENT_GATT_DISCONNECTED, /**<Gatt Disconnected event */
791 BLUETOOTH_EVENT_GATT_ATT_MTU_CHANGED, /**<Attribute protocol MTU changed event */
792 BLUETOOTH_EVENT_GATT_SERVER_CHARACTERISTIC_VALUE_CHANGED, /**<Gatt Char write callback event */
793 BLUETOOTH_EVENT_GATT_SERVER_READ_REQUESTED, /** <GATT Characteristic/Descriptor Read Request event */
794 BLUETOOTH_EVENT_GATT_SERVER_VALUE_CHANGED, /** <GATT Characteristic/Descriptor Value change event */
795 BLUETOOTH_EVENT_GATT_SERVER_NOTIFICATION_STATE_CHANGED, /** <GATT Characteristic Notification change event */
796 BLUETOOTH_EVENT_GATT_SERVER_NOTIFICATION_COMPLETED, /** <GATT Characteristic Notification or Indication completed event */
797 BLUETOOTH_EVENT_GATT_CLIENT_SERVICE_CHANGED, /** <GATT Client service change event */
799 BLUETOOTH_EVENT_AG_CONNECTED = BLUETOOTH_EVENT_AUDIO_BASE, /**<AG service connected event*/
800 BLUETOOTH_EVENT_AG_DISCONNECTED, /**<AG service disconnected event*/
801 BLUETOOTH_EVENT_AG_SPEAKER_GAIN, /**<Speaker gain request event*/
802 BLUETOOTH_EVENT_AG_MIC_GAIN, /**<Mic gain request event*/
803 BLUETOOTH_EVENT_AG_AUDIO_CONNECTED, /**<AV & AG service connected event*/
804 BLUETOOTH_EVENT_AG_AUDIO_DISCONNECTED, /**<AV & AG service disconnected event*/
805 BLUETOOTH_EVENT_AV_CONNECTED, /**<AV service connected event*/
806 BLUETOOTH_EVENT_AV_DISCONNECTED, /**<AV service disconnected event*/
807 BLUETOOTH_EVENT_AV_SOURCE_CONNECTED, /**<AV Source device connected event */
808 BLUETOOTH_EVENT_AV_SOURCE_DISCONNECTED, /**<AV Source device disconnected event */
809 BLUETOOTH_EVENT_AVRCP_CONNECTED, /**<AVRCP service connected event*/
810 BLUETOOTH_EVENT_AVRCP_DISCONNECTED, /**<AVRCP service disconnected event*/
811 BLUETOOTH_EVENT_AVRCP_SETTING_SHUFFLE_STATUS, /**<AVRCP service player suffle status event*/
812 BLUETOOTH_EVENT_AVRCP_SETTING_EQUALIZER_STATUS, /**<AVRCP service player equalizer status event*/
813 BLUETOOTH_EVENT_AVRCP_SETTING_REPEAT_STATUS, /**<AVRCP service player repeat status event*/
814 BLUETOOTH_EVENT_AVRCP_SETTING_SCAN_STATUS, /**<AVRCP service player scan status event*/
815 BLUETOOTH_EVENT_HF_CONNECTED,
816 BLUETOOTH_EVENT_HF_DISCONNECTED,
817 BLUETOOTH_EVENT_HF_AUDIO_CONNECTED,
818 BLUETOOTH_EVENT_HF_AUDIO_DISCONNECTED,
819 BLUETOOTH_EVENT_HF_RING_INDICATOR,
820 BLUETOOTH_EVENT_HF_CALL_WAITING,
821 BLUETOOTH_EVENT_HF_CALL_TERMINATED,
822 BLUETOOTH_EVENT_HF_CALL_STARTED,
823 BLUETOOTH_EVENT_HF_CALL_ENDED,
824 BLUETOOTH_EVENT_HF_CALL_UNHOLD,
825 BLUETOOTH_EVENT_HF_CALL_SWAPPED,
826 BLUETOOTH_EVENT_HF_CALL_ON_HOLD,
827 BLUETOOTH_EVENT_HF_CALL_STATUS,
828 BLUETOOTH_EVENT_HF_VOICE_RECOGNITION_ENABLED,
829 BLUETOOTH_EVENT_HF_VOICE_RECOGNITION_DISABLED,
830 BLUETOOTH_EVENT_HF_VOLUME_SPEAKER,
831 BLUETOOTH_EVENT_HF_VENDOR_DEP_CMD,
832 BLUETOOTH_EVENT_HF_CALLSETUP_INCOMING,
833 BLUETOOTH_EVENT_HF_CALL_FAILED_TO_DIAL,
834 BLUETOOTH_EVENT_HF_CALL_IDLE,
835 BLUETOOTH_EVENT_HF_CALLSETUP_DIALING,
836 BLUETOOTH_EVENT_HF_CALLSETUP_ALERTING,
837 BLUETOOTH_EVENT_HF_CIEV_DEVICE_STATUS_CHANGED,
839 BLUETOOTH_HID_CONNECTED = BLUETOOTH_EVENT_HID_BASE, /**< Input connectd event*/
840 BLUETOOTH_HID_DISCONNECTED, /**< Input disconnectd event*/
841 BLUETOOTH_HID_DEVICE_CONNECTED, /**< HID Device connected event*/
842 BLUETOOTH_HID_DEVICE_DISCONNECTED, /**< HID Device disconnected event*/
843 BLUETOOTH_HID_DEVICE_DATA_RECEIVED, /**< HID Device data received event*/
845 BLUETOOTH_EVENT_ADVERTISING_STARTED = BLUETOOTH_EVENT_ADVERTISING_BASE, /**< Advertising started event */
846 BLUETOOTH_EVENT_ADVERTISING_STOPPED, /**< Advertising stopped event */
847 BLUETOOTH_EVENT_ADVERTISING_MANUFACTURER_DATA_CHANGED, /**< Advertising manufacturer data changed event */
848 BLUETOOTH_EVENT_SCAN_RESPONSE_MANUFACTURER_DATA_CHANGED, /**< Scan response manufacturer data changed event */
849 BLUETOOTH_EVENT_MANUFACTURER_DATA_CHANGED, /**< Manufacturer data changed event */
850 BLUETOOTH_EVENT_DEVICE_ERROR, /**< Hardware error */
851 BLUETOOTH_EVENT_TX_TIMEOUT_ERROR, /** TX Timeout Error*/
852 BLUETOOTH_EVENT_MAX, /**< Bluetooth event Max value */
854 BLUETOOTH_PBAP_CONNECTED = BLUETOOTH_EVENT_PBAP_CLIENT_BASE, /**< PBAP connected event*/
855 BLUETOOTH_PBAP_DISCONNECTED, /**< PBAP disconnectd event*/
856 BLUETOOTH_PBAP_PHONEBOOK_SIZE, /**< PBAP Phonebook Size event*/
857 BLUETOOTH_PBAP_PHONEBOOK_PULL, /**< PBAP Phonebook Pull event*/
858 BLUETOOTH_PBAP_VCARD_LIST, /**< PBAP vCard List event*/
859 BLUETOOTH_PBAP_VCARD_PULL, /**< PBAP vCard Pull event*/
860 BLUETOOTH_PBAP_PHONEBOOK_SEARCH, /**< PBAP Phonebook Search event*/
862 BLUETOOTH_EVENT_AVRCP_CONTROL_CONNECTED = BLUETOOTH_EVENT_AVRCP_CONTROL_BASE, /**<AVRCP service connected event*/
863 BLUETOOTH_EVENT_AVRCP_CONTROL_DISCONNECTED, /**<AVRCP service disconnected event*/
864 BLUETOOTH_EVENT_AVRCP_CONTROL_SHUFFLE_STATUS, /**<AVRCP control suffle status event*/
865 BLUETOOTH_EVENT_AVRCP_CONTROL_EQUALIZER_STATUS, /**<AVRCP control equalizer status event*/
866 BLUETOOTH_EVENT_AVRCP_CONTROL_REPEAT_STATUS, /**<AVRCP control repeat status event*/
867 BLUETOOTH_EVENT_AVRCP_CONTROL_SCAN_STATUS, /**<AVRCP control scan status event*/
868 BLUETOOTH_EVENT_AVRCP_SONG_POSITION_STATUS, /**<AVRCP control play Postion status event*/
869 BLUETOOTH_EVENT_AVRCP_PLAY_STATUS_CHANGED, /**<AVRCP control play status event*/
870 BLUETOOTH_EVENT_AVRCP_TRACK_CHANGED, /**<AVRCP control song metadata event*/
872 BLUETOOTH_EVENT_IPSP_INIT_STATE_CHANGED = BLUETOOTH_EVENT_IPSP_BASE, /**<IPSP init event*/
873 BLUETOOTH_EVENT_IPSP_CONNECTED, /**< IPSP connected event */
874 BLUETOOTH_EVENT_IPSP_DISCONNECTED, /**< IPSP Disconnected event */
875 BLUETOOTH_EVENT_IPSP_INTERFACE_INFO, /** IPSP BT Interface Info after connection */
876 BLUETOOTH_EVENT_LE_DATA_LENGTH_CHANGED, /** LE data length values changed */
877 BLUETOOTH_EVENT_PXP_PROPERTY_CHANGED, /** Proximity property changed */
878 BLUETOOTH_EVENT_TDS_ACTIVATION_REQUESTED, /** TDS activation requested */
879 BLUETOOTH_EVENT_TDS_TRANSPORT_DATA_RECEIVED, /** TDS Transport Data received */
880 BLUETOOTH_EVENT_TDS_ACTIVATION_RESULT, /** TDS Activation Result */
881 BLUETOOTH_EVENT_TDS_CONTROL_POINT_ENABLED, /** TDS CCCD enabled event */
882 BLUETOOTH_EVENT_TDS_ACTIVATION_INDICATION, /** TDS Activation Indication from Provider */
884 BLUETOOTH_EVENT_OTP_SERVER_STATE_CHANGED, /* OTP Server Status **/
885 BLUETOOTH_EVENT_OTP_READ_CHAR_VAL, /* OTP Read Value Response */
886 BLUETOOTH_EVENT_OTP_NOTIFICATION_ENABLED, /* OTP Notification Enabled Response */
887 BLUETOOTH_EVENT_OTP_WRITE_CHAR_VAL, /* OTP Write Value Response */
888 BLUETOOTH_EVENT_OTP_INDICATION, /* OTP Indication */
889 BLUETOOTH_EVENT_OTC_STATE_CHANGED, /* OTC Connection State Changed Event */
890 } bluetooth_event_type_t;
893 * This bt_service_uuid_list_t enum indicates service uuid list .
894 * This values is stored the service_list_array in bt_sdp_info_t and bluetooth_device_info_t.
898 BLUETOOTH_SPP_PROFILE_UUID = ((unsigned short)0x1101), /**<SPP*/
899 BLUETOOTH_LAP_PROFILE_UUID = ((unsigned short)0x1102), /**<LAP*/
900 BLUETOOTH_DUN_PROFILE_UUID = ((unsigned short)0x1103), /**<DUN*/
901 BLUETOOTH_OBEX_IR_MC_SYNC_SERVICE_UUID = ((unsigned short)0x1104), /**<OBEX IR MC SYNC*/
902 BLUETOOTH_OBEX_OBJECT_PUSH_SERVICE_UUID = ((unsigned short)0x1105), /**<OPP*/
903 BLUETOOTH_OBEX_MESSAGE_ACCESS_SERVICE_UUID = ((unsigned short)0x1134), /**<MAP*/
904 BLUETOOTH_OBEX_FILE_TRANSFER_UUID = ((unsigned short)0x1106), /**<FTP*/
905 BLUETOOTH_IRMC_SYNC_COMMAND_UUID = ((unsigned short)0x1107), /**<IRMC SYNC COMMAND*/
906 BLUETOOTH_HS_PROFILE_UUID = ((unsigned short)0x1108), /**<HS*/
907 BLUETOOTH_CTP_PROFILE_UUID = ((unsigned short)0x1109), /**<CTP*/
908 BLUETOOTH_AUDIO_SOURCE_UUID = ((unsigned short)0x110A), /**<AUDIO SOURCE*/
909 BLUETOOTH_AUDIO_SINK_UUID = ((unsigned short)0x110B), /**<AUDIO SINK*/
910 BLUETOOTH_AV_REMOTE_CONTROL_TARGET_UUID = ((unsigned short)0x110C), /**<AV REMOTE CONTROL
912 BLUETOOTH_ADVANCED_AUDIO_PROFILE_UUID = ((unsigned short)0x110D), /**<A2DP*/
913 BLUETOOTH_AV_REMOTE_CONTROL_UUID = ((unsigned short)0x110E), /**<AV REMOTE CONTROL UUID*/
914 BLUETOOTH_AV_REMOTE_CONTROL_CONTROLLER_UUID = ((unsigned short)0x110F), /**<AV REMOTE CONTROLLER UUID*/
915 BLUETOOTH_ICP_PROFILE_UUID = ((unsigned short)0x1110), /**<ICP*/
916 BLUETOOTH_FAX_PROFILE_UUID = ((unsigned short)0x1111), /**<FAX*/
917 BLUETOOTH_HEADSET_AG_SERVICE_UUID = ((unsigned short)0x1112), /**<HS AG */
918 BLUETOOTH_PAN_PANU_PROFILE_UUID = ((unsigned short)0x1115), /**<PAN*/
919 BLUETOOTH_PAN_NAP_PROFILE_UUID = ((unsigned short)0x1116), /**<PAN*/
920 BLUETOOTH_PAN_GN_PROFILE_UUID = ((unsigned short)0x1117), /**<PAN*/
921 BLUETOOTH_DIRECT_PRINTING = ((unsigned short)0x1118),
922 BLUETOOTH_OBEX_BPPS_PROFILE_UUID = ((unsigned short)0x1118), /**<OBEX BPPS*/ /* Will be removed */
923 BLUETOOTH_REFERENCE_PRINTING = ((unsigned short)0x1119),
924 BLUETOOTH_OBEX_IMAGING_UUID = ((unsigned short)0x111A), /**<OBEX_IMAGING*/
925 BLUETOOTH_OBEX_IMAGING_RESPONDER_UUID = ((unsigned short)0x111B), /**<OBEX_IMAGING
927 BLUETOOTH_IMAGING_AUTOMATIC_ARCHIVE_UUID = ((unsigned short)0x111C), /**<IMAGING AUTOMATIC ARCHIVE*/
928 BLUETOOTH_IMAGING_REFERENCED_OBJECTS_UUID = ((unsigned short)0x111D), /**<IMAGING REFERENCED OBJECTS*/
929 BLUETOOTH_HF_PROFILE_UUID = ((unsigned short)0x111E), /**<HF*/
930 BLUETOOTH_HFG_PROFILE_UUID = ((unsigned short)0x111F), /**<HFG*/
931 BLUETOOTH_DIRECT_PRINTING_REFERENCE_OBJ_UUID = ((unsigned short)0x1120),
932 /**<DIRECT PRINTING*/
933 BLUETOOTH_REFLECTED_UI = ((unsigned short)0x1121), /**<REFLECTED UI*/
934 BLUETOOTH_BASIC_PRINTING = ((unsigned short)0x1122), /**<BASIC PRINTING*/
935 BLUETOOTH_PRINTING_STATUS = ((unsigned short)0x1123), /**<PRINTING STATUS*/
936 BLUETOOTH_OBEX_PRINTING_STATUS_UUID = ((unsigned short)0x1123), /**<OBEX PRINTING STATUS*/ /* Will be removed */
937 BLUETOOTH_HID_PROFILE_UUID = ((unsigned short)0x1124), /**<HID*/
938 BLUETOOTH_HCR_PROFILE_UUID = ((unsigned short)0x1125), /**<HCRP*/
939 BLUETOOTH_HCR_PRINT_UUID = ((unsigned short)0x1126), /**<HCR PRINT*/
940 BLUETOOTH_HCR_SCAN_UUID = ((unsigned short)0x1127), /**<HCR SCAN*/
941 BLUETOOTH_SIM_ACCESS_PROFILE_UUID = ((unsigned short)0x112D), /**<SIM ACCESS PROFILE*/
942 BLUETOOTH_PBAP_PCE_UUID = ((unsigned short)0x112E), /**<PBAP - PCE*/
943 BLUETOOTH_PBAP_PSE_UUID = ((unsigned short)0x112F), /**<OBEX PBA*/
944 BLUETOOTH_OBEX_PBA_PROFILE_UUID = ((unsigned short)0x112F), /**<OBEX PBA*/ /* Will be removed */
945 BLUETOOTH_OBEX_PBAP_UUID = ((unsigned short)0x1130), /**<OBEX PBA*/
946 BLUETOOTH_HEADSET_HS_UUID = ((unsigned short)0x1131), /**<HEADSET HS*/
947 BLUETOOTH_MESSAGE_ACCESS_SERVER_UUID = ((unsigned short)0x1132),/**<MESSAGE ACCESS SERVER*/
948 BLUETOOTH_MESSAGE_NOTIFICATION_SERVER_UUID = ((unsigned short)0x1133),/**<MESSAGE NOTIFICATION SERVER*/
949 BLUETOOTH_MESSAGE_ACCESS_PROFILE_UUID = ((unsigned short)0x1134),/**<MESSAGE ACCESS PROFILE*/
950 BLUETOOTH_PNP_INFORMATION_UUID = ((unsigned short)0x1200), /**<PNP*/
951 BLUETOOTH_GENERIC_NETWORKING_UUID = ((unsigned short)0x1201), /**<GENERIC NETWORKING*/
952 BLUETOOTH_GENERIC_FILE_TRANSFER_UUID = ((unsigned short)0x1202),/**<GENERIC FILE TRANSFER*/
953 BLUETOOTH_GENERIC_AUDIO_UUID = ((unsigned short)0x1203), /**<GENERIC AUDIO*/
954 BLUETOOTH_GENERIC_TELEPHONY_UUID = ((unsigned short)0x1204), /**<GENERIC TELEPHONY*/
955 BLUETOOTH_VIDEO_SOURCE_UUID = ((unsigned short)0x1303), /**<VEDIO SOURCE*/
956 BLUETOOTH_VIDEO_SINK_UUID = ((unsigned short)0x1304), /**<VEDIO SINK*/
957 BLUETOOTH_VIDEO_DISTRIBUTION_UUID = ((unsigned short)0x1305), /**<VEDIO DISTRIBUTION*/
958 BLUETOOTH_HDP_UUID = ((unsigned short)0x1400), /**<HDP*/
959 BLUETOOTH_HDP_SOURCE_UUID = ((unsigned short)0x1401), /**<HDP SOURCE*/
960 BLUETOOTH_HDP_SINK_UUID = ((unsigned short)0x1402), /**<HDP SINK*/
961 BLUETOOTH_OBEX_SYNCML_TRANSFER_UUID = ((unsigned short)0x0000) /**<OBEX_SYNC*/ /* Will be removed */
962 } bluetooth_service_uuid_list_t;
965 * Service class part of class of device returned from device discovery
968 BLUETOOTH_DEVICE_SERVICE_CLASS_LIMITED_DISCOVERABLE_MODE = 0x002000,
969 BLUETOOTH_DEVICE_SERVICE_CLASS_POSITIONING = 0x010000, /**< */
970 BLUETOOTH_DEVICE_SERVICE_CLASS_NETWORKING = 0x020000, /**< */
971 BLUETOOTH_DEVICE_SERVICE_CLASS_RENDERING = 0x040000, /**< */
972 BLUETOOTH_DEVICE_SERVICE_CLASS_CAPTURING = 0x080000, /**< */
973 BLUETOOTH_DEVICE_SERVICE_CLASS_OBJECT_TRANSFER = 0x100000, /**< */
974 BLUETOOTH_DEVICE_SERVICE_CLASS_AUDIO = 0x200000, /**< */
975 BLUETOOTH_DEVICE_SERVICE_CLASS_TELEPHONY = 0x400000, /**< */
976 BLUETOOTH_DEVICE_SERVICE_CLASS_INFORMATION = 0x800000, /**< */
977 } bluetooth_device_service_class_t;
981 * Major device mask (For device discovery)
984 BLUETOOTH_DEVICE_MAJOR_MASK_MISC = 0x00,
985 BLUETOOTH_DEVICE_MAJOR_MASK_COMPUTER = 0x0001,
986 BLUETOOTH_DEVICE_MAJOR_MASK_PHONE = 0x0002,
987 BLUETOOTH_DEVICE_MAJOR_MASK_LAN_ACCESS_POINT = 0x0004,
988 BLUETOOTH_DEVICE_MAJOR_MASK_AUDIO = 0x0008,
989 BLUETOOTH_DEVICE_MAJOR_MASK_PERIPHERAL = 0x0010,
990 BLUETOOTH_DEVICE_MAJOR_MASK_IMAGING = 0x0020,
991 BLUETOOTH_DEVICE_MAJOR_MASK_WEARABLE = 0x0040,
992 BLUETOOTH_DEVICE_MAJOR_MASK_TOY = 0x0080,
993 BLUETOOTH_DEVICE_MAJOR_MASK_HEALTH = 0x0100,
994 } bluetooth_device_major_mask_t;
998 * Major device class (part of Class of Device)
1001 BLUETOOTH_DEVICE_MAJOR_CLASS_MISC = 0x00, /**< Miscellaneous major device class*/
1002 BLUETOOTH_DEVICE_MAJOR_CLASS_COMPUTER = 0x01, /**< Computer major device class*/
1003 BLUETOOTH_DEVICE_MAJOR_CLASS_PHONE = 0x02, /**< Phone major device class*/
1004 BLUETOOTH_DEVICE_MAJOR_CLASS_LAN_ACCESS_POINT = 0x03, /**< LAN major device class*/
1005 BLUETOOTH_DEVICE_MAJOR_CLASS_AUDIO = 0x04, /**< AUDIO major device class*/
1006 BLUETOOTH_DEVICE_MAJOR_CLASS_PERIPHERAL = 0x05, /**< Peripheral major device class*/
1007 BLUETOOTH_DEVICE_MAJOR_CLASS_IMAGING = 0x06, /**< Imaging major device class*/
1008 BLUETOOTH_DEVICE_MAJOR_CLASS_WEARABLE = 0x07, /**< Wearable device class*/
1009 BLUETOOTH_DEVICE_MAJOR_CLASS_TOY = 0x08, /**< Toy device class*/
1010 BLUETOOTH_DEVICE_MAJOR_CLASS_HEALTH = 0x09, /**< Health device class*/
1011 BLUETOOTH_DEVICE_MAJOR_CLASS_UNCLASSIFIED = 0x1F /**< Unknown major device class*/
1012 } bluetooth_device_major_class_t;
1015 BLUETOOTH_DEVICE_MINOR_CLASS_UNCLASSIFIED = 0x00, /**< unclassified minor class */
1017 /* About Computer Major class */
1018 BLUETOOTH_DEVICE_MINOR_CLASS_DESKTOP_WORKSTATION = 0x04, /**< desktop workstation
1020 BLUETOOTH_DEVICE_MINOR_CLASS_SERVER_CLASS_COMPUTER = 0x08, /**< server minor class */
1021 BLUETOOTH_DEVICE_MINOR_CLASS_LAPTOP = 0x0C, /**< laptop minor class */
1022 BLUETOOTH_DEVICE_MINOR_CLASS_HANDHELD_PC_OR_PDA = 0x10, /**< PDA minor class */
1023 BLUETOOTH_DEVICE_MINOR_CLASS_PALM_SIZED_PC_OR_PDA = 0x14, /**< PALM minor class */
1024 BLUETOOTH_DEVICE_MINOR_CLASS_WEARABLE_COMPUTER = 0x18, /**< Wearable PC minor class */
1026 /* About Phone Major class */
1027 BLUETOOTH_DEVICE_MINOR_CLASS_CELLULAR = 0x04, /**< Cellular minor class */
1028 BLUETOOTH_DEVICE_MINOR_CLASS_CORDLESS = 0x08, /**< cordless minor class */
1029 BLUETOOTH_DEVICE_MINOR_CLASS_SMART_PHONE = 0x0C, /**< smart phone minor class */
1030 BLUETOOTH_DEVICE_MINOR_CLASS_WIRED_MODEM_OR_VOICE_GATEWAY = 0x10,
1031 /**< voice gateway minor class */
1032 BLUETOOTH_DEVICE_MINOR_CLASS_COMMON_ISDN_ACCESS = 0x14, /**< ISDN minor class */
1034 /* About LAN/Network Access Point Major class */
1035 BLUETOOTH_DEVICE_MINOR_CLASS_FULLY_AVAILABLE = 0x04, /**< Fully available minor class */
1036 BLUETOOTH_DEVICE_MINOR_CLASS_1_TO_17_PERCENT_UTILIZED = 0x20, /**< 1-17% utilized minor class */
1037 BLUETOOTH_DEVICE_MINOR_CLASS_17_TO_33_PERCENT_UTILIZED = 0x40, /**< 17-33% utilized minor class */
1038 BLUETOOTH_DEVICE_MINOR_CLASS_33_TO_50_PERCENT_UTILIZED = 0x60, /**< 33-50% utilized minor class */
1039 BLUETOOTH_DEVICE_MINOR_CLASS_50_to_67_PERCENT_UTILIZED = 0x80, /**< 50-67% utilized minor class */
1040 BLUETOOTH_DEVICE_MINOR_CLASS_67_TO_83_PERCENT_UTILIZED = 0xA0, /**< 67-83% utilized minor class */
1041 BLUETOOTH_DEVICE_MINOR_CLASS_83_TO_99_PERCENT_UTILIZED = 0xC0, /**< 83-99% utilized minor class */
1042 BLUETOOTH_DEVICE_MINOR_CLASS_NO_SERVICE_AVAILABLE = 0xE0, /**< No service available minor class */
1044 /* About Audio/Video Major class */
1045 BLUETOOTH_DEVICE_MINOR_CLASS_HEADSET_PROFILE = 0x04, /**< Headset minor class */
1046 BLUETOOTH_DEVICE_MINOR_CLASS_HANDSFREE = 0x08, /**< Handsfree minor class*/
1048 BLUETOOTH_DEVICE_MINOR_CLASS_MICROPHONE = 0x10, /**< Microphone minor class */
1049 BLUETOOTH_DEVICE_MINOR_CLASS_LOUD_SPEAKER = 0x14, /**< Loud Speaker minor class */
1050 BLUETOOTH_DEVICE_MINOR_CLASS_HEADPHONES = 0x18, /**< Headphones minor class */
1051 BLUETOOTH_DEVICE_MINOR_CLASS_PORTABLE_AUDIO = 0x1C, /**< Portable Audio minor class */
1052 BLUETOOTH_DEVICE_MINOR_CLASS_CAR_AUDIO = 0x20, /**< Car Audio minor class */
1053 BLUETOOTH_DEVICE_MINOR_CLASS_SET_TOP_BOX = 0x24, /**< Set top box minor class */
1054 BLUETOOTH_DEVICE_MINOR_CLASS_HIFI_AUDIO_DEVICE = 0x28, /**< Hifi minor class */
1055 BLUETOOTH_DEVICE_MINOR_CLASS_VCR = 0x2C, /**< VCR minor class */
1056 BLUETOOTH_DEVICE_MINOR_CLASS_VIDEO_CAMERA = 0x30, /**< Video Camera minor class */
1057 BLUETOOTH_DEVICE_MINOR_CLASS_CAM_CORDER = 0x34, /**< CAM Corder minor class */
1058 BLUETOOTH_DEVICE_MINOR_CLASS_VIDEO_MONITOR = 0x38, /**<Video Monitor minor class */
1059 BLUETOOTH_DEVICE_MINOR_CLASS_VIDEO_DISPLAY_AND_LOUD_SPEAKER = 0x3C,
1060 /**< Video Display and Loud
1061 Speaker minor class */
1062 BLUETOOTH_DEVICE_MINOR_CLASS_VIDEO_CONFERENCING = 0x40, /**< Video Conferencing minor
1065 BLUETOOTH_DEVICE_MINOR_CLASS_GAMING_OR_TOY = 0x48, /**< Gaming or toy minor class */
1067 /* About Peripheral Major class */
1068 BLUETOOTH_DEVICE_MINOR_CLASS_KEY_BOARD = 0x40, /**< Key board minor class */
1069 BLUETOOTH_DEVICE_MINOR_CLASS_POINTING_DEVICE = 0x80, /**< Pointing Device minor class */
1070 BLUETOOTH_DEVICE_MINOR_CLASS_COMBO_KEYBOARD_OR_POINTING_DEVICE = 0xC0,
1071 /**< Combo Keyboard or pointing
1072 device minorclass */
1074 BLUETOOTH_DEVICE_MINOR_CLASS_JOYSTICK = 0x04, /**< JoyStick minor class */
1075 BLUETOOTH_DEVICE_MINOR_CLASS_GAME_PAD = 0x08, /**< Game Pad minor class */
1076 BLUETOOTH_DEVICE_MINOR_CLASS_REMOTE_CONTROL = 0x0C, /**< Remote Control minor class */
1077 BLUETOOTH_DEVICE_MINOR_CLASS_SENSING_DEVICE = 0x10, /**< Sensing Device minor class */
1078 BLUETOOTH_DEVICE_MINOR_CLASS_DIGITIZER_TABLET = 0x14, /**< Digitizer minor class */
1079 BLUETOOTH_DEVICE_MINOR_CLASS_CARD_READER = 0x18, /**< Card Reader minor class */
1080 BLUETOOTH_DEVICE_MINOR_CLASS_DIGITAL_PEN = 0x1C, /**< Digital pen minor class */
1081 BLUETOOTH_DEVICE_MINOR_CLASS_HANDHELD_SCANNER = 0x20, /**< Handheld scanner for bar-codes, RFID minor class */
1082 BLUETOOTH_DEVICE_MINOR_CLASS_HANDHELD_GESTURAL_INPUT_DEVICE = 0x24, /**< Handheld gestural input device minor class */
1084 /* About Imaging Major class */
1085 BLUETOOTH_DEVICE_MINOR_CLASS_DISPLAY = 0x10, /**< Display minor class */
1086 BLUETOOTH_DEVICE_MINOR_CLASS_CAMERA = 0x20, /**< Camera minor class */
1087 BLUETOOTH_DEVICE_MINOR_CLASS_SCANNER = 0x40, /**< Scanner minor class */
1088 BLUETOOTH_DEVICE_MINOR_CLASS_PRINTER = 0x80, /**< Printer minor class */
1090 /* About Wearable Major class */
1091 BLUETOOTH_DEVICE_MINOR_CLASS_WRIST_WATCH = 0x04, /**< Wrist watch minor class */
1092 BLUETOOTH_DEVICE_MINOR_CLASS_PAGER = 0x08, /**< Pager minor class */
1093 BLUETOOTH_DEVICE_MINOR_CLASS_JACKET = 0x0C, /**< Jacket minor class */
1094 BLUETOOTH_DEVICE_MINOR_CLASS_HELMET = 0x10, /**< Helmet minor class */
1095 BLUETOOTH_DEVICE_MINOR_CLASS_GLASSES = 0x14, /**< Glasses minor class */
1097 /* About Toy Major class */
1098 BLUETOOTH_DEVICE_MINOR_CLASS_ROBOT = 0x04, /**< Robot minor class */
1099 BLUETOOTH_DEVICE_MINOR_CLASS_VEHICLE = 0x08, /**< Vehicle minor class */
1100 BLUETOOTH_DEVICE_MINOR_CLASS_DOLL_OR_ACTION = 0x0C, /**< Doll or Action minor class */
1101 BLUETOOTH_DEVICE_MINOR_CLASS_CONTROLLER = 0x10, /**< Controller minor class */
1102 BLUETOOTH_DEVICE_MINOR_CLASS_GAME = 0x14, /**< Game minor class */
1104 /* About Health Major class */
1105 BLUETOOTH_DEVICE_MINOR_CLASS_BLOOD_PRESSURE_MONITOR = 0x04, /**< Blood Pressure minor class */
1106 BLUETOOTH_DEVICE_MINOR_CLASS_THERMOMETER = 0x08, /**< Thermometer minor class */
1107 BLUETOOTH_DEVICE_MINOR_CLASS_WEIGHING_SCALE = 0x0C, /**< Weighing Scale minor class */
1108 BLUETOOTH_DEVICE_MINOR_CLASS_GLUCOSE_METER = 0x10, /**< Glucose minor class */
1109 BLUETOOTH_DEVICE_MINOR_CLASS_PULSE_OXIMETER = 0x14, /**< Pulse Oximeter minor class */
1110 BLUETOOTH_DEVICE_MINOR_CLASS_HEART_OR_PULSE_RATE_MONITOR = 0x18,/**< Heart or pulse rate monitor minor class */
1111 BLUETOOTH_DEVICE_MINOR_CLASS_MEDICAL_DATA_DISPLAY = 0x1C, /**< Medical minor class */
1112 BLUETOOTH_DEVICE_MINOR_CLASS_STEP_COUNTER = 0x20, /**< Step Counter minor class */
1113 BLUETOOTH_DEVICE_MINOR_CLASS_BODY_COMPOSITION_ANALYZER = 0x24, /**< Body composition analyzer minor class */
1114 BLUETOOTH_DEVICE_MINOR_CLASS_PEAK_FLOW_MONITOR = 0x28, /**< Peak flow monitor minor class */
1115 BLUETOOTH_DEVICE_MINOR_CLASS_MEDICATION_MONITOR = 0x2C, /**< Medication monitor minor class */
1116 BLUETOOTH_DEVICE_MINOR_CLASS_KNEE_PROSTHESIS = 0x30, /**< Knee prosthesis minor class */
1117 BLUETOOTH_DEVICE_MINOR_CLASS_ANKLE_PROSTHESIS = 0x34, /**< Ankle prosthesis minor class */
1118 } bluetooth_device_minor_class_t;
1121 * structure to hold the device information
1124 bluetooth_device_major_class_t major_class; /**< major device class */
1125 bluetooth_device_minor_class_t minor_class; /**< minor device class */
1126 bluetooth_device_service_class_t service_class;
1127 /**< service device class */
1128 } bluetooth_device_class_t;
1131 * Discovery Role types
1134 DISCOVERY_ROLE_BREDR = 0x1,
1136 DISCOVERY_ROLE_LE_BREDR
1137 } bt_discovery_role_type_t;
1140 * Connected state types
1143 BLUETOOTH_CONNECTED_LINK_NONE = 0x00,
1144 BLUETOOTH_CONNECTED_LINK_BREDR = 0x01,
1145 BLUETOOTH_CONNECTED_LINK_LE = 0x02,
1146 BLUETOOTH_CONNECTED_LINK_BREDR_LE = 0x03,
1147 } bluetooth_connected_link_t;
1153 BLUETOOTH_LE_SCAN_FILTER_FEATURE_DEVICE_ADDRESS = 0x01, /**< device address */
1154 BLUETOOTH_LE_SCAN_FILTER_FEATURE_SERVICE_UUID = 0x04, /**< service uuid */
1155 BLUETOOTH_LE_SCAN_FILTER_FEATURE_SERVICE_SOLICITATION_UUID = 0x08, /**< service solicitation uuid */
1156 BLUETOOTH_LE_SCAN_FILTER_FEATURE_DEVICE_NAME = 0x10, /**< device name */
1157 BLUETOOTH_LE_SCAN_FILTER_FEATURE_MANUFACTURER_DATA = 0x20, /**< manufacturer data */
1158 BLUETOOTH_LE_SCAN_FILTER_FEATURE_SERVICE_DATA = 0x40, /**< service data */
1159 } bluetooth_le_scan_filter_feature_t;
1162 * LE connection mode
1165 BLUETOOTH_LE_CONNECTION_MODE_BALANCED,
1166 BLUETOOTH_LE_CONNECTION_MODE_LOW_LATENCY,
1167 BLUETOOTH_LE_CONNECTION_MODE_LOW_POWER
1168 } bluetooth_le_connection_mode_t;
1171 * structure to hold the device information
1174 bluetooth_device_address_t device_address; /**< device address */
1175 bluetooth_device_name_t device_name; /**< device name */
1176 bluetooth_device_class_t device_class; /**< device class */
1177 char uuids[BLUETOOTH_MAX_SERVICES_FOR_DEVICE][BLUETOOTH_UUID_STRING_MAX];
1178 unsigned int service_list_array[BLUETOOTH_MAX_SERVICES_FOR_DEVICE]; /**< Use enum values in bt_service_uuid_list_t */
1180 int rssi; /**< received strength signal*/
1181 gboolean paired; /**< paired flag */
1182 bluetooth_connected_link_t connected; /**< connected link type */
1183 gboolean trust; /**< trust flag */
1184 gboolean is_alias_set; /** is device alias set flag**/
1185 bluetooth_manufacturer_data_t manufacturer_data; /**< manafacturer specific class */
1186 } bluetooth_device_info_t;
1189 * structure to hold the LE device information
1192 int data_len; /**< manafacturer specific data length */
1193 bluetooth_advertising_data_t data; /**< manafacturer specific data */
1194 } bluetooth_le_advertising_data_t;
1197 bluetooth_device_address_t device_address; /**< device address */
1198 int addr_type; /**< address type*/
1199 int rssi; /**< received strength signal*/
1200 bluetooth_le_advertising_data_t adv_ind_data;
1201 bluetooth_le_advertising_data_t scan_resp_data;
1202 } bluetooth_le_device_info_t;
1206 bluetooth_le_scan_filter_feature_t added_features; /**< added features */
1207 bluetooth_device_address_t device_address; /**< device address */
1208 char device_name[BLUETOOTH_ADVERTISING_DATA_LENGTH_MAX]; /**< device name */
1209 bluetooth_le_advertising_data_t service_uuid; /**< service uuid */
1210 bluetooth_le_advertising_data_t service_uuid_mask; /**< service uuid mask */
1211 bluetooth_le_advertising_data_t service_solicitation_uuid; /**< service solicitation uuid */
1212 bluetooth_le_advertising_data_t service_solicitation_uuid_mask; /**< service solicitation uuid mask */
1213 bluetooth_le_advertising_data_t service_data; /**< service data */
1214 bluetooth_le_advertising_data_t service_data_mask; /**< service data mask */
1215 int manufacturer_id; /**< manufacturer ID */
1216 bluetooth_le_advertising_data_t manufacturer_data; /**< manufacturer data */
1217 bluetooth_le_advertising_data_t manufacturer_data_mask; /**< manufacturer data mask */
1218 } bluetooth_le_scan_filter_t;
1221 bluetooth_device_address_t device_address; /**< device address */
1222 unsigned int mtu; /** < MTU set for the ATT connection */
1223 unsigned int status; /** < status of the MTU exchange */
1224 } bluetooth_le_att_mtu_info_t;
1227 * structure to hold the paired device information
1230 bluetooth_device_address_t device_address; /**< paired device address */
1231 bluetooth_device_name_t device_name; /**< device name */
1232 bluetooth_device_class_t device_class; /**< device class */
1233 } bluetooth_paired_device_info_t;
1236 * structure to hold the paired device information
1239 bluetooth_device_address_t device_address;
1240 /**< device address */
1241 char interface_name[BLUETOOTH_INTERFACE_NAME_LENGTH + 1];
1242 /**< network interface name */
1243 } bluetooth_network_device_info_t;
1246 * Authentication event types
1250 BLUETOOTH_AUTH_KEYBOARD_PASSKEY_REQUEST = 0,
1251 BLUETOOTH_AUTH_PIN_REQUEST,
1252 BLUETOOTH_AUTH_PASSKEY_REQUEST,
1253 BLUETOOTH_AUTH_PASSKEY_CONFIRM_REQUEST,
1254 } bluetooth_auth_type_t;
1257 * structure to hold the pincode/pass-key req informations
1260 bluetooth_device_address_t device_address; /**< remote device address */
1261 bluetooth_device_name_t device_name; /**< device name */
1262 char str_passkey[BLUETOOTH_DEVICE_PASSKEY_LENGTH_MAX]; /**< pass-key string */
1263 } bluetooth_authentication_request_info_t;
1266 * Stucture to hold discovery option
1269 unsigned short max_response; /**< the number of maximum response */
1270 unsigned short discovery_duration;
1271 /**< duration of discovery (seconds) */
1272 unsigned int classOfDeviceMask; /**< mask for values of class of device. to be used with
1273 classOfDevice variable */
1274 } bluetooth_discovery_option_t;
1277 * Stucture to hold event information
1280 int event; /**< event type */
1281 int result; /**< Success or error value */
1283 /**<parameter data pointer */
1285 } bluetooth_event_param_t;
1288 bluetooth_device_address_t device_addr;
1289 char uuids[BLUETOOTH_MAX_SERVICES_FOR_DEVICE][BLUETOOTH_UUID_STRING_MAX];
1290 unsigned int service_list_array[BLUETOOTH_MAX_SERVICES_FOR_DEVICE]; /**< Use enum values in bt_service_uuid_list_t */
1291 unsigned int service_name_array[BLUETOOTH_MAX_SERVICES_FOR_DEVICE];
1296 bluetooth_device_address_t device_addr;
1297 unsigned char addr_type;
1299 } bt_connection_info_t;
1302 * Stucture to rfcomm receive data
1307 /**< the socket fd */
1308 int buffer_size;/**< the length of the receive buffer */
1310 /**< the receive data buffer */
1311 } bluetooth_rfcomm_received_data_t;
1317 HTYPE_TRANS_HANDSHAKE,
1318 HTYPE_TRANS_HID_CONTROL,
1319 HTYPE_TRANS_GET_REPORT,
1320 HTYPE_TRANS_SET_REPORT,
1321 HTYPE_TRANS_GET_PROTOCOL,
1322 HTYPE_TRANS_SET_PROTOCOL,
1324 HTYPE_TRANS_UNKNOWN,
1325 HTYPE_TRANS_GET_IDLE = 0xF0,
1326 HTYPE_TRANS_SET_IDLE = 0xF1,
1327 } bt_hid_header_type_t;
1333 PTYPE_DATA_RTYPE_INPUT,
1334 PTYPE_DATA_RTYPE_OUTPUT
1335 } bt_hid_param_type_t;
1338 * Stucture to hid receive data
1341 const char *address;
1342 bt_hid_header_type_t type;
1343 /**< Header type containing */
1344 bt_hid_param_type_t param;
1345 /**< Param type in header like INPUT Report or OutPut Report */
1346 int buffer_size;/**< the length of the receive buffer */
1348 /**< the receive data buffer */
1349 } bluetooth_hid_received_data_t;
1352 * Stucture to rfcomm connection
1356 int socket_fd; /**< the socket fd */
1357 int server_id; /* Server id */
1358 int device_role; /** < Device role - RFCOMM_ROLE_SERVER or RFCOMM_ROLE_CLIENT */
1359 bluetooth_device_address_t device_addr;
1360 /**< device address */
1361 char uuid[BLUETOOTH_UUID_STRING_MAX];
1362 } bluetooth_rfcomm_connection_t;
1365 * Stucture to rfcomm disconnection
1369 /**< the socket fd */
1370 int device_role;/** < Device role - RFCOMM_ROLE_SERVER or RFCOMM_ROLE_CLIENT */
1371 bluetooth_device_address_t device_addr;
1372 /**< device address */
1373 char uuid[BLUETOOTH_UUID_STRING_MAX];
1374 } bluetooth_rfcomm_disconnection_t;
1378 /**< the socket fd */
1379 bluetooth_device_address_t device_addr;
1380 /**< device address */
1381 } bluetooth_rfcomm_connection_request_t;
1385 /**< the socket fd */
1386 bluetooth_device_address_t device_addr;
1387 /**< device address */
1388 } bluetooth_hid_request_t;
1397 } bt_hdp_qos_type_t;
1403 HDP_ROLE_SOURCE = 0x0,
1405 } bt_hdp_role_type_t;
1409 * Stucture to HDP connected
1412 const char *app_handle; /**< the application handle */
1413 unsigned int channel_id; /**< the channel id */
1414 bt_hdp_qos_type_t type; /**< the QOS type */
1415 bluetooth_device_address_t device_address; /**< the remote address */
1416 } bt_hdp_connected_t;
1419 * Stucture to HDP disconnected
1422 unsigned int channel_id; /**< the channel id */
1423 bluetooth_device_address_t device_address; /**< the remote address */
1424 } bt_hdp_disconnected_t;
1427 * Stucture to HDP data indication
1430 unsigned int channel_id; /**< the channel id */
1431 const char *buffer; /**< the RX data buffer */
1432 unsigned int size; /**< the RX data size */
1433 } bt_hdp_data_ind_t;
1436 * Stucture to OPP client transfer information
1443 } bt_opc_transfer_info_t;
1445 /* TODO: MAP client structures, see above */
1447 * Stucture to Map filter fields
1452 } bt_map_list_filter_fields_info_t;
1454 /* Obex Server transfer type */
1455 #define TRANSFER_PUT "PUT"
1456 #define TRANSFER_GET "GET"
1458 * Stucture to OPP/FTP Server authorize information
1465 } bt_obex_server_authorize_into_t;
1473 } bt_obex_server_type_t;
1476 * Stucture to OPP/FTP server transfer information
1484 unsigned long file_size;
1486 bt_obex_server_type_t server_type;
1488 unsigned char *contact_auth_info;
1489 } bt_obex_server_transfer_info_t;
1492 * Stucture to OPP/FTP server connection/disconnection information
1498 } bt_obex_server_connection_info_t;
1502 * Stucture to OOB data
1506 unsigned char hash[BLUETOOTH_OOB_DATA_LENGTH];
1507 unsigned char randomizer[BLUETOOTH_OOB_DATA_LENGTH];
1508 unsigned int hash_len;
1509 unsigned int randomizer_len;
1511 unsigned char hash256[BLUETOOTH_OOB_DATA_LENGTH];
1512 unsigned char randomizer256[BLUETOOTH_OOB_DATA_LENGTH];
1513 unsigned int hash256_len;
1514 unsigned int randomizer256_len;
1518 * Structure to GATT attribute handle data
1524 } bt_gatt_handle_info_t;
1527 * Structure to GATT Remote service data
1534 bt_gatt_handle_info_t include_handles;
1535 bt_gatt_handle_info_t char_handle;
1536 } bt_gatt_service_property_t;
1539 * Structure to GATT Remote characteristic data
1543 char *service_handle;
1544 bt_gatt_handle_info_t handle_info;
1545 } bt_gatt_discovered_char_t;
1548 * Structure to format of GATT Characteristic Value
1552 unsigned char format;
1553 unsigned char exponent;
1554 unsigned short unit;
1555 unsigned char name_space;
1556 unsigned short description;
1557 } bt_gatt_char_format_t;
1560 * Structure to GATT Characteristic property
1568 bt_gatt_char_format_t format;
1570 unsigned int val_len;
1571 unsigned int permission;
1572 char *representation;
1573 bt_gatt_handle_info_t char_desc_handle;
1574 } bt_gatt_char_property_t;
1577 * Structure to GATT Characteristic descriptor property
1584 unsigned int val_len;
1585 } bt_gatt_char_descriptor_property_t;
1588 * Structure to GATT Characteristic value
1595 } bt_gatt_char_value_t;
1598 * Structure to GATT Read Request
1602 char *service_handle;
1606 } bt_gatt_read_req_t;
1609 * Structure to GATT Value change
1613 char *service_handle;
1616 gboolean response_needed;
1620 } bt_gatt_value_change_t;
1623 bluetooth_device_address_t device_addr;
1625 bluetooth_gatt_service_change_type_t change_type;
1626 } bt_gatt_service_change_t;
1629 * Structure to GATT characteristc Notification change
1633 char *service_handle;
1634 gboolean att_notify;
1635 } bt_gatt_char_notify_change_t;
1638 * Structure to Indication confirmation
1642 char *service_handle;
1645 } bt_gatt_indicate_confirm_t;
1648 * Structure for GATT response data
1654 } bt_gatt_resp_data_t;
1657 * Structure to RSSI Signal Strength Alert
1668 * Structure to RSSI Signal Strength
1678 * Structure for RSSI Enabled or Disabled
1684 gboolean rssi_enabled;
1685 } bt_rssi_enabled_t;
1688 * Structure for RSSI Threshold
1693 int in_range_threshold;
1695 } bt_rssi_threshold_t;
1699 * Structure for Suppoted Profiles and Trusted Profiles
1706 } bt_supported_profile_trusted_t;
1709 * Structure for PBAP Folder Parameters
1712 unsigned char addressbook;
1713 unsigned char folder_type;
1717 * Structure for PBAP Pull application Parameters
1720 unsigned char format;
1721 unsigned char order;
1722 unsigned short offset;
1723 unsigned short maxlist;
1724 long long unsigned fields;
1725 } bt_pbap_pull_parameters_t;
1728 * Structure for PBAP List application Parameters
1731 unsigned char order;
1732 unsigned short offset;
1733 unsigned short maxlist;
1734 } bt_pbap_list_parameters_t;
1737 * Structure for PBAP Pull vCard application Parameters
1740 unsigned char format;
1741 long long unsigned fields;
1743 } bt_pbap_pull_vcard_parameters_t;
1746 * Structure for PBAP Search application Parameters
1749 unsigned char order;
1750 unsigned short offset;
1751 unsigned short maxlist;
1752 unsigned char search_attribute;
1753 char search_value[BLUETOOTH_PBAP_MAX_SEARCH_VALUE_LENGTH];
1754 } bt_pbap_search_parameters_t;
1757 * Structure for PBAP Connection Status
1760 bluetooth_device_address_t btaddr;
1762 } bt_pbap_connected_t;
1765 * Structure for PBAP Phonebook Size
1768 bluetooth_device_address_t btaddr;
1770 } bt_pbap_phonebook_size_t;
1773 * Structure for PBAP Phonebook Pull
1776 bluetooth_device_address_t btaddr;
1779 } bt_pbap_phonebook_pull_t;
1782 * Structure for PBAP vCard List
1785 bluetooth_device_address_t btaddr;
1789 } bt_pbap_vcard_list_t;
1792 * Structure for PBAP vCard Pull
1795 bluetooth_device_address_t btaddr;
1798 } bt_pbap_vcard_pull_t;
1801 * Structure for PBAP Phonebook search List
1804 bluetooth_device_address_t btaddr;
1808 } bt_pbap_phonebook_search_list_t;
1811 * Stucture to HF Call status information
1815 char *number; /*Phone Number */
1816 int direction; /*Direction :Incoming(1), Outgoing(0)*/
1817 int status; /* Call Status :Active(0), Held(1), Waiting(5), Dailing(2)*/
1818 int mpart; /*Multiparty/conf call: Yes(1), No(0) */
1819 int idx; /*Call index/ID */
1820 } bt_hf_call_status_info_t;
1825 } bt_hf_call_list_s;
1831 TRUSTED_PROFILE_PBAP = 1,
1832 TRUSTED_PROFILE_MAP,
1833 TRUSTED_PROFILE_SAP,
1834 TRUSTED_PROFILE_HFP_HF,
1835 TRUSTED_PROFILE_A2DP,
1836 TRUSTED_PROFILE_ALL = 0xFFFFFFFF,
1837 } bluetooth_trusted_profile_t;
1840 * Structure for LE data length change params
1843 bluetooth_device_address_t device_address;
1844 guint16 max_tx_octets;
1845 guint16 max_tx_time;
1846 guint16 max_rx_octets;
1847 guint16 max_rx_time;
1848 } bt_le_data_length_params_t;
1851 * Structure for proximity property change params
1854 bluetooth_device_address_t device_address;
1858 } bt_pxp_property_changed_params_t;
1861 * @brief DPM BT allowance state
1865 BLUETOOTH_DPM_ERROR = -1, /**< bluetooth allowance error */
1866 BLUETOOTH_DPM_BT_ALLOWED, /**< bluetooth allowance allowed */
1867 BLUETOOTH_DPM_HANDSFREE_ONLY, /**< bluetooth allowance handsfree only */
1868 BLUETOOTH_DPM_BT_RESTRICTED, /**< bluetooth allowance restricted */
1872 * @brief DPM API result
1876 BLUETOOTH_DPM_RESULT_SERVICE_NOT_ENABLED = -5, /**< DPM API result service not enabled. */
1877 BLUETOOTH_DPM_RESULT_ACCESS_DENIED = -4, /**< DPM API result access denied. */
1878 BLUETOOTH_DPM_RESULT_INVALID_PARAM = -3, /**< DPM API result invalid parameter. */
1879 BLUETOOTH_DPM_RESULT_NOT_SUPPORTED = -2, /**< DPM API result not supported. */
1880 BLUETOOTH_DPM_RESULT_FAIL = -1, /**< DPM API result fail. */
1881 BLUETOOTH_DPM_RESULT_SUCCESS = 0, /**< DPM API result success. */
1885 * @brief DPM Policy status
1889 BLUETOOTH_DPM_STATUS_ERROR = -1,
1891 BLUETOOTH_DPM_ALLOWED = 0, /**< DPM Policy status allowed. */
1892 BLUETOOTH_DPM_RESTRICTED = 1, /**< DPM Policy status restricted. */
1894 BLUETOOTH_DPM_ENABLE = 1, /**< DPM Policy status enabled. */
1895 BLUETOOTH_DPM_DISABLE = 0, /**< DPM Policy status disabled. */
1897 BLUETOOTH_DPM_FALSE = 0, /**< DPM Policy status false. */
1898 BLUETOOTH_DPM_TRUE = 1, /**< DPM Policy status true. */
1902 /* policy-group : BLUETOOTH */
1903 BLUETOOTH_DPM_POLICY_ALLOW,
1904 BLUETOOTH_DPM_POLICY_DEVICE_RESTRICTION,
1905 BLUETOOTH_DPM_POLICY_UUID_RESTRICTION,
1906 BLUETOOTH_DPM_POLICY_DEVICES_WHITELIST,
1907 BLUETOOTH_DPM_POLICY_DEVICES_BLACKLIST,
1908 BLUETOOTH_DPM_POLICY_UUIDS_WHITELIST,
1909 BLUETOOTH_DPM_POLICY_UUIDS_BLACKLIST,
1910 BLUETOOTH_DPM_POLICY_ALLOW_OUTGOING_CALL,
1911 BLUETOOTH_DPM_POLICY_PAIRING_STATE,
1912 BLUETOOTH_DPM_POLICY_DESKTOP_CONNECTIVITY_STATE,
1913 BLUETOOTH_DPM_POLICY_DISCOVERABLE_STATE,
1914 BLUETOOTH_DPM_POLICY_LIMITED_DISCOVERABLE_STATE,
1915 BLUETOOTH_DPM_POLICY_DATA_TRANSFER_STATE,
1916 BLUETOOTH_DPM_POLICY_END,
1917 } bt_dpm_policy_cmd_t;
1920 struct bt_dpm_policy {
1926 typedef struct bt_dpm_policy bt_dpm_policy_t;
1929 BLUETOOTH_DPM_POLICY_A2DP_PROFILE_STATE,
1930 BLUETOOTH_DPM_POLICY_AVRCP_PROFILE_STATE,
1931 BLUETOOTH_DPM_POLICY_BPP_PROFILE_STATE,
1932 BLUETOOTH_DPM_POLICY_DUN_PROFILE_STATE,
1933 BLUETOOTH_DPM_POLICY_FTP_PROFILE_STATE,
1934 BLUETOOTH_DPM_POLICY_HFP_PROFILE_STATE,
1935 BLUETOOTH_DPM_POLICY_HSP_PROFILE_STATE,
1936 BLUETOOTH_DPM_POLICY_PBAP_PROFILE_STATE,
1937 BLUETOOTH_DPM_POLICY_SAP_PROFILE_STATE,
1938 BLUETOOTH_DPM_POLICY_SPP_PROFILE_STATE,
1939 BLUETOOTH_DPM_PROFILE_NONE,
1942 struct bt_dpm_profile_val {
1943 int value; /* tells whether the profile is enabled or disabled */
1945 typedef struct dpm_profile_val dpm_profile_state_t;
1948 * Structure to DPM device list
1952 bluetooth_device_address_t addresses[BLUETOOTH_MAX_DPM_LIST];
1953 } bt_dpm_device_list_t;
1956 * Structure to DPM uuid list
1960 char uuids[BLUETOOTH_MAX_DPM_LIST][BLUETOOTH_UUID_STRING_MAX];
1961 } bt_dpm_uuids_list_t;
1964 * Structure for IPSP Interface Info
1967 bluetooth_device_address_t btaddr;
1969 } bt_ipsp_connection_info_t;
1973 char* remote_address;
1974 } bt_map_client_session_info_s;
1976 typedef char* bt_map_client_message_object_t;
1981 } bt_map_client_list_folders_filter_t;
1986 int8_t subject_length;
1995 } bt_map_client_list_messages_filter_t;
1998 bt_map_client_message_object_t message_object;
2003 char *sender_address;
2006 char *recipient_address;
2011 int64_t attachment_size;
2016 } bt_map_client_message_item_t;
2022 } bt_map_client_push_message_args_t;
2029 char *sender_address;
2032 char *recipient_address;
2041 } bt_map_client_message_t;
2044 char **names; // holding %size null-terminated folder names
2046 } bt_map_client_folders_s;
2049 bt_map_client_message_item_t *message_items;
2051 } bt_map_client_message_items_s;
2054 const char* target_file;
2056 } bt_get_message_callback_data;
2059 * Callback pointer type
2061 typedef void (*bluetooth_cb_func_ptr) (int, bluetooth_event_param_t *, void *);
2064 * @fn int bluetooth_register_callback(bluetooth_cb_func_ptr callback_ptr, void *user_data)
2065 * @brief Set the callback function pointer for bluetooth event
2068 * This API will register the callback function, when any response and event are received from
2069 * bluetooth framework. @n
2070 * this registered callback function will be get called with appropriate event and data structures.
2071 * This function is a synchronous call. An application developer can call
2072 * bluetooth_register_callback() function to register a callback function of bluetooth_cb_func_ptr
2073 * type. This registered function will receive events of bluetooth_event_type_t type along with
2077 * @param[in] callback_ptr A pointer to the callback function
2078 * @param[in] user_data A pointer to user data
2079 * @return BLUETOOTH_ERROR_NONE - Success
2083 void bt_event_callback(int event, bluetooth_event_param_t *param, void *user_data)
2085 GMainLoop *main_loop = (GMainLoop*) user_data;
2089 // Code for each event
2091 g_main_loop_quit(main_loop);
2098 GMainLoop *main_loop = NULL;
2101 main_loop = g_main_loop_new(NULL, FALSE);
2102 ret = bluetooth_register_callback(bt_event_callback, (void*)main_loop);
2103 if (ret >= BLUETOOTH_ERROR_NONE)
2105 // bluetooth_register_callback returned Success
2109 // bluetooth_register_callback returned failiure
2111 g_main_loop_run(main_loop);
2115 int bluetooth_register_callback(bluetooth_cb_func_ptr callback_ptr, void *user_data);
2118 * @fn int bluetooth_le_register_callback(bluetooth_cb_func_ptr callback_ptr, void *user_data)
2119 * @brief Set the callback function pointer for bluetooth le event
2122 * This API will register the callback function, when any response and event are received from
2123 * bluetooth framework. @n
2124 * this registered callback function will be get called with appropriate event and data structures.
2125 * This function is a synchronous call. An application developer can call
2126 * bluetooth_le_register_callback() function to register a callback function of bluetooth_cb_func_ptr
2127 * type. This registered function will receive events of bluetooth_event_type_t type along with
2131 * @param[in] callback_ptr A pointer to the callback function
2132 * @param[in] user_data A pointer to user data
2133 * @return BLUETOOTH_ERROR_NONE - Success
2137 int bluetooth_le_register_callback(bluetooth_cb_func_ptr callback_ptr, void *user_data);
2140 * @fn int bluetooth_le_unregister_callback(void)
2141 * @brief Set the callback function pointer for bluetooth le event
2144 * This API will register the callback function, when any response and event are received from
2145 * bluetooth framework. @n
2146 * this registered callback function will be get called with appropriate event and data structures.
2147 * This function is a synchronous call. An application developer can call
2148 * bluetooth_le_register_callback() function to register a callback function of bluetooth_cb_func_ptr
2149 * type. This registered function will receive events of bluetooth_event_type_t type along with
2154 * @return BLUETOOTH_ERROR_NONE - Success
2158 int bluetooth_le_unregister_callback(void);
2161 * @fn int bluetooth_deregister_callback(bluetooth_cb_func_ptr callback_ptr)
2162 * @brief Set the callback function pointer for bluetooth event
2165 * This API will register the callback function, when any response and event are received from
2166 * bluetooth framework. @n
2167 * this registered callback function will be get called with appropriate event and data structures.
2168 * This function is a synchronous call. An application developer can call
2169 * bluetooth_register_callback() function to register a callback function of bluetooth_cb_func_ptr
2170 * type. This registered function will receive events of bluetooth_event_type_t type along with
2175 * @return BLUETOOTH_ERROR_NONE - Success
2179 void bt_event_callback(int event, bluetooth_event_param_t *param, void *user_data)
2181 GMainLoop *main_loop = (GMainLoop*) user_data;
2185 // Code for each event
2187 g_main_loop_quit(main_loop);
2194 GMainLoop *main_loop = NULL;
2197 main_loop = g_main_loop_new(NULL, FALSE);
2198 ret = bluetooth_register_callback(bt_event_callback, (void*)main_loop);
2199 if (ret >= BLUETOOTH_ERROR_NONE)
2201 // bluetooth_register_callback returned Success
2205 // bluetooth_register_callback returned failiure
2207 ret = bluetooth_deregister_callback(void);
2208 g_main_loop_run(main_loop);
2212 int bluetooth_unregister_callback(void);
2215 * @fn int bluetooth_enable_adapter(void)
2216 * @brief Enable the Bluetooth H/W
2219 * This API can be used to activate Bluetooth. It initializes Bluetooth protocol stack for use and
2220 * send request to bluetooth chip for activation.
2221 * This function is typically called at startup or when Bluetooth services are required. This
2222 * function must be called before calling any other API of Bluetooth operations.
2224 * Before performing any operations like Device discover, service search etc.., the adapter must be
2227 * This function is a asynchronous call.
2228 * If the call is success then the application will receive BLUETOOTH_EVENT_ENABLED event
2229 * through registered callback function with appropriate result code
2230 * BLUETOOTH_CHANGE_STATUS_TIMEOUT - Timeout has happen \n
2231 * BLUETOOTH_ERROR_NONE - Success \n
2233 * If the adpter is not enabled with in 30 seconds then BLUETOOTH_EVENT_ENABLED with result code
2234 * BLUETOOTH_CHANGE_STATUS_TIMEOUT will come
2236 * @return BLUETOOTH_ERROR_NONE - Success\n
2237 * BLUETOOTH_ERROR_DEVICE_ALREADY_ENABLED - Adapter already enabled\n
2238 * BLUETOOTH_ERROR_ACCESS_DENIED - Enabling adapter is not allowed by MDM policy\n
2239 * BLUETOOTH_ERROR_IN_PROGRESS - Adapter is activating or deactivating\n
2240 * @exception BLUETOOTH_ERROR_INTERNAL - Dbus proxy call is fail
2242 * @see bluetooth_check_adapter, bluetooth_disable_adapter
2244 void bt_event_callback(int event, bluetooth_event_param_t *param)
2248 case BLUETOOTH_EVENT_ENABLED:
2249 if (param->result == BLUETOOTH_ERROR_NONE)
2251 // Successfully Enabled
2264 ret = bluetooth_enable_adapter();
2268 int bluetooth_enable_adapter(void);
2271 * @fn int bluetooth_disable_adapter(void)
2272 * @brief Disable the Bluetooth H/W
2275 * This function disables Bluetooth protocol stack and hardware. This function is called when
2276 * Bluetooth is no longer used. It will internally free all resources and power off the RF radio.
2278 * Bluetooth adapter should be disabled to switch off Bluetooth chip (and thereby saving power).
2279 * bluetooth_disable_adapter() API will do that job for you. After switching off Bluetooth,
2280 * BLUETOOTH_EVENT_DISABLED will be sent by SDK to application for confirmation with appropriate
2282 * The various error codes are BLUETOOTH_ERROR_NONE for success and BLUETOOTH_ERROR_INTERNAL for
2285 * This function is a asynchronous call.
2286 * If this call is success then the applications will receive BLUETOOTH_EVENT_DISABLED event
2287 * through registered callback function.
2290 * @return BLUETOOTH_ERROR_NONE - Success\n
2291 * BLUETOOTH_ERROR_IN_PROGRESS - Adapter is activating or deactivating\n
2292 * BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Bluetooth adapter is not enabled\n
2293 * @exception BLUETOOTH_ERROR_INTERNAL - Dbus proxy call is fail
2295 * @see bluetooth_check_adapter, bluetooth_enable_adapter
2297 void bt_event_callback(int event, bluetooth_event_param_t *param)
2301 case BLUETOOTH_EVENT_DISABLED:
2302 if (param->result == BLUETOOTH_ERROR_NONE)
2304 // Successfully disabled
2317 ret = bluetooth_disable_adapter();
2320 int bluetooth_disable_adapter(void);
2321 int bluetooth_recover_adapter(void);
2322 int bluetooth_check_adapter_le(void);
2323 int bluetooth_enable_adapter_le(void);
2325 int bluetooth_disable_adapter_le(void);
2326 int bluetooth_get_uuid_name(const char *uuid, char **name);
2329 * @fn int bluetooth_reset_adapter(void)
2330 * @brief Reset the Bluetooth H/W and values
2333 * This function resets Bluetooth protocol stack and hardware. This function is called when
2334 * an user want to initialize Bluetooth environment.
2336 * The various error codes are BLUETOOTH_ERROR_NONE for success and BLUETOOTH_ERROR_INTERNAL for
2339 * This function is a synchronous call.
2341 * @return BLUETOOTH_ERROR_NONE - Success\n
2342 * @exception BLUETOOTH_ERROR_INTERNAL - Dbus proxy call is fail
2344 * @see bluetooth_check_adapter, bluetooth_enable_adapter
2349 ret = bluetooth_reset_adapter();
2352 int bluetooth_reset_adapter(void);
2355 * @fn int bluetooth_is_supported(void)
2356 * @brief Check if the bluetooth is supported or not by the current target
2358 * This API checks whether the bluetooth is supported or not.
2359 * This API only run by root permission.
2361 * This function is a synchronous call.
2363 * @return 0 - if bluetooth is not supported\n
2364 * 1 - if bluetooth is supported\n
2365 * BLUETOOTH_ERROR_INTERNAL - Error in API internal
2370 ret = bluetooth_is_supported();
2373 int bluetooth_is_supported(void);
2377 * @fn int bluetooth_check_adapter(void)
2378 * @brief Check the current status of the Bluetooth adapter
2381 * This API checks whether the Bluetooth adapter is enabled or not. Before performing any operations
2382 * the bluetooth adapter should be enabled. This API helps to find out the current state of the
2383 * bluetooth adapter.
2384 * This API get the adapter internal data structure and check current adapter status.
2386 * This function is a synchronous call.
2389 * @return BLUETOOTH_ADAPTER_DISABLED - if bluetooth adapter is disabled\n
2390 * BLUETOOTH_ADAPTER_ENABLED - if bluetooth adapter is enabled\n
2392 * @see bluetooth_enable_adapter, bluetooth_disable_adapter
2396 ret = bluetooth_check_adapter();
2399 int bluetooth_check_adapter(void);
2402 * @fn int bluetooth_get_local_address(bluetooth_device_address_t *local_address)
2403 * @brief Get the local adapter bluetooth address
2406 * This API is used, get the device address of the local bluetooth adapter. Before calling this API,
2407 * the adapter should be enabled.
2408 * In its output parameter, you can receive bluetooth_device_address_t type of pointer which will
2409 * contain Bluetooth address.
2410 * Since its inconvenient for user to remember the address, Bluetooth provides a method to have a
2411 * friendly name for each device.
2412 * There is no event callback for this API.
2414 * This function is a synchronous call.
2417 * @return BLUETOOTH_ERROR_NONE - Succeess \n
2418 * BLUETOOTH_ERROR_INVALID_PARAM - Invalid parameter (NULL buffer) \n
2419 * BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is disabled \n
2420 * @param[out] local_address a device address of local bluetooth adapter
2425 bluetooth_device_address_t local_address={0,};
2428 ret = bluetooth_get_local_address(&local_address);
2431 int bluetooth_get_local_address(bluetooth_device_address_t *local_address);
2434 * @fn int bluetooth_get_local_version(bluetooth_version_t *version)
2435 * @brief Get the hci version
2438 * This function is used to get the bluetooth hci version
2439 * Before calling this API make sure that the adapter is enabled.
2441 * This function is a synchronous call.
2444 * @return BLUETOOTH_ERROR_NONE - Success \n
2445 * BLUETOOTH_ERROR_INTERNAL - Internal IPC error \n
2446 * @param[out] timeout remain visibility timeout value
2449 bluetooth_version_t *version;
2451 ret = bluetooth_get_local_version (&version);
2454 int bluetooth_get_local_version(bluetooth_version_t *version);
2457 * @fn int bluetooth_get_local_name(bluetooth_device_name_t* local_name)
2458 * @brief Get the local device name
2461 * This function is used, get the local device name. Since its difficult to remember the Adapter
2462 * address, the friendly name can be assigned to the adapter and we can get it using this API. This
2463 * friendly name is retrived by the remote device and displaying.
2464 * Before calling this API, the adapter should be enabled. There is no event callback for this API.
2466 * This function is a synchronous call.
2469 * @return BLUETOOTH_ERROR_NONE - Success \n
2470 * BLUETOOTH_ERROR_INVALID_PARAM - Invalid parameter (NULL buffer)\n
2471 * @param[out] local_name a local device name
2475 bluetooth_device_name_t local_name={0,}
2477 ret = bluetooth_get_local_name (&local_name);
2480 int bluetooth_get_local_name(bluetooth_device_name_t *local_name);
2483 * @fn int bluetooth_set_local_name(const bluetooth_device_name_t *local_name)
2484 * @brief Set the local device name
2487 * This function is used to set the local device name. This is a human friendly name whose
2488 * length can be BLUETOOTH_DEVICE_NAME_LENGTH_MAX maximum
2490 * This function is a synchronous call.
2492 * @param[in] local_name bluetooth device name to set local device
2494 * @return BLUETOOTH_ERROR_NONE - Success \n
2495 * BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is not enabled \n
2496 * BLUETOOTH_ERROR_INVALID_PARAM - Bluetooth name parameter is incorrect \n
2497 * BLUETOOTH_ERROR_INVALID_DATA - Device address provided is incorrect \n
2498 * BLUETOOTH_ERROR_NO_RESOURCES - Pre-allocated memory error \n
2499 * BLUETOOTH_ERROR_INTERNAL - The dbus method call is fail \n
2504 bluetooth_device_name_t local_name={0,}
2506 ret = bluetooth_set_local_name (&local_name);
2509 int bluetooth_set_local_name(const bluetooth_device_name_t *local_name);
2513 * @fn int bluetooth_is_service_used(const char *service_uuid, gboolean *used)
2514 * @brief Check if the uuid is used or not
2516 * This function is used to check if the uuid is used or not.
2518 * This function is a synchronous call.
2520 * @param[in] service_uuid service uuid (UUID 128 bit as string)
2521 * @param[out] used if the uuid is used or not
2523 * @return BLUETOOTH_ERROR_NONE - Success \n
2524 * BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is not enabled \n
2525 * BLUETOOTH_ERROR_INVALID_PARAM - Bluetooth name parameter is incorrect \n
2526 * BLUETOOTH_ERROR_INTERNAL - The dbus method call is fail \n
2531 gboolean used = FALSE;
2532 const char *uuid ="00001101-0000-1000-8000-00805F9B34FB";
2533 ret = bluetooth_is_service_used(uuid, &used);
2536 int bluetooth_is_service_used(const char *service_uuid, gboolean *used);
2539 * @fn int bluetooth_is_device_connected(const bluetooth_device_address_t *device_address, bluetooth_service_type_t type, gboolean *is_connected)
2540 * @brief Check if the device is connected to the specific service
2542 * This function is used to check if if the device is connected to the specific service.
2544 * This function is a synchronous call.
2546 * @param[in] local_address a device address of remote bluetooth device
2547 * @param[in] type the service type
2548 * @param[out] is_connected if the device is connected or not
2550 * @return BLUETOOTH_ERROR_NONE - Success \n
2551 * BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is not enabled \n
2552 * BLUETOOTH_ERROR_INVALID_PARAM - Bluetooth name parameter is incorrect \n
2553 * BLUETOOTH_ERROR_INTERNAL - The dbus method call is fail \n
2558 gboolean is_connected = FALSE;
2559 bluetooth_device_address_t device_address={{0x00,0x0D,0xFD,0x24,0x5E,0xFF}};
2560 ret = bluetooth_is_device_connected(&device_address, BLUETOOTH_HSP_SERVICE, &used);
2563 int bluetooth_is_device_connected(const bluetooth_device_address_t *device_address,
2564 bluetooth_service_type_t type,
2565 gboolean *is_connected);
2568 * @fn int bluetooth_get_connected_link_type(const bluetooth_device_address_t *device_address, bluetooth_connected_link_t *connected_link)
2569 * @brief Gets device's connected link type
2571 * This function is used to get device's connected link type
2573 * This function is a synchronous call.
2575 * @param[in] device_address a device address of remote bluetooth device
2576 * @param[out] connected_link a device's connected link type
2578 * @return BLUETOOTH_ERROR_NONE - Success \n
2579 * BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is not enabled \n
2580 * BLUETOOTH_ERROR_INVALID_PARAM - Bluetooth name parameter is incorrect \n
2581 * BLUETOOTH_ERROR_INTERNAL - The dbus method call is fail \n
2586 bluetooth_connected_link_t *connected_link = BLUETOOTH_CONNECTED_LINK_NONE;
2587 bluetooth_device_address_t device_address={{0x00,0x0D,0xFD,0x24,0x5E,0xFF}};
2588 ret = bluetooth_get_connected_link(&device_address, &connected_link);
2591 int bluetooth_get_connected_link_type(const bluetooth_device_address_t *device_address,
2592 bluetooth_connected_link_t *connected_link);
2595 * @fn int bluetooth_set_profile_trusted(const bluetooth_device_address_t *device_address, int profile, int trust)
2596 * @brief Sets a profile trusted for a device
2598 * This function is used to Set a profile as trusted for a device
2600 * This function is a synchronous call.
2602 * @param[in] device_address a device address of remote bluetooth device
2603 * @param[in] profile profile which is to be set as trusted[0-PBAP, 1-MAP, 2-SAP]
2604 * @param[in] trust to set as trusted or untrusted[1-trusted 0-untrusted]
2606 * @return BLUETOOTH_ERROR_NONE - Success \n
2607 * BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is not enabled \n
2608 * BLUETOOTH_ERROR_INVALID_PARAM - Bluetooth name parameter is incorrect \n
2609 * BLUETOOTH_ERROR_INTERNAL - The dbus method call is fail \n
2613 int bluetooth_set_profile_trusted(
2614 const bluetooth_device_address_t *device_address,
2615 int profile, int trust);
2618 * @fn int bluetooth_get_profile_trusted(const bluetooth_device_address_t *device_address, int profile, int *trust)
2619 * @brief Gets a profile is trusted for a device
2621 * This function is used to Get a profile is trusted or not for a device
2623 * This function is a synchronous call.
2625 * @param[in] device_address a device address of remote bluetooth device
2626 * @param[in] profile profile whose trust status is needed[0-PBAP, 1-MAP, 2-SAP]
2627 * @param[out] trust profile is set as trusted or untrusted[1-trusted 0-untrusted]
2629 * @return BLUETOOTH_ERROR_NONE - Success \n
2630 * BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is not enabled \n
2631 * BLUETOOTH_ERROR_INVALID_PARAM - Bluetooth name parameter is incorrect \n
2632 * BLUETOOTH_ERROR_INTERNAL - The dbus method call is fail \n
2636 int bluetooth_get_profile_trusted(
2637 const bluetooth_device_address_t *device_address,
2638 int profile, int *trust);
2641 * @fn int bluetooth_get_discoverable_mode(bluetooth_discoverable_mode_t *discoverable_mode_ptr)
2642 * @brief Get the visibility mode
2645 * This function is used to get the discoverable mode (Visibility option). Depending upon the
2646 * visibity mode, the property of the device is determined whether it can be discoverable, non
2647 * discoverable, connectable etc. Before calling this API make sure that the adapter is enabled.
2649 * This function is a synchronous call.
2652 * @return BLUETOOTH_ERROR_NONE - Success \n
2653 * BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is not enabled \n
2654 * BLUETOOTH_ERROR_INVALID_DATA - Invalid data \n
2655 * BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is not enabled \n
2656 * BLUETOOTH_ERROR_INTERNAL - Internal IPC error \n
2657 * @param[out] discoverable_mode current bluetooth discoverable mode
2659 * @see bluetooth_set_discoverable_mode
2661 bluetooth_discoverable_mode_t discoverable_mode_ptr;
2663 ret = bluetooth_get_discoverable_mode (&discoverable_mode_ptr);
2666 int bluetooth_get_discoverable_mode(bluetooth_discoverable_mode_t *discoverable_mode_ptr);
2669 * @fn int bluetooth_set_discoverable_mode(bluetooth_discoverable_mode_t discoverable_mode,
2671 * @brief Set the visibility mode
2674 * This function is used to set the discoverable mode (Visibility option).
2676 * Many times user may want to keep his device discoverable so that when peer device is performing
2677 * device search, he/she can find user's device. Application programmer can keep the mode as
2678 * BLUETOOTH_DISCOVERABLE_MODE_GENERAL_DISCOVERABLE or
2679 * BLUETOOTH_DISCOVERABLE_MODE_TIME_LIMITED_DISCOVERABLE for the same purpose. However, all these
2680 * modes cause bluetooth adapter to consume more battery. Hence developer should generally
2681 * keep discoverable mode as BLUETOOTH_DISCOVERABLE_MODE_CONNECTABLE.
2683 * This function is a synchronous call.
2685 * @return BLUETOOTH_ERROR_NONE - Success \n
2686 * BLUETOOTH_ERROR_NOT_SUPPORT - Requested mode is not supported \n
2688 * @param[in] discoverable_mode the bluetooth discoverable mode to set
2689 * @param[in] timeout discoverable time in only limited discoverable mode (second), default: 0
2691 * @see bluetooth_get_discoverable_mode
2695 bluetooth_discoverable_mode_t mode;
2697 mode= BLUETOOTH_DISCOVERABLE_MODE_TIME_LIMITED_DISCOVERABLE;
2698 ret = bluetooth_set_discoverable_mode (mode, 180);
2702 int bluetooth_set_discoverable_mode(bluetooth_discoverable_mode_t discoverable_mode,
2707 * @fn int bluetooth_get_timeout_value(int *timeout)
2708 * @brief Get the visibility timeout value
2711 * This function is used to get the visibility timeout
2712 * Before calling this API make sure that the adapter is enabled.
2714 * This function is a synchronous call.
2717 * @return BLUETOOTH_ERROR_NONE - Success \n
2718 * BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is not enabled \n
2719 * BLUETOOTH_ERROR_INVALID_DATA - Invalid data \n
2720 * BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is not enabled \n
2721 * BLUETOOTH_ERROR_INTERNAL - Internal IPC error \n
2722 * @param[out] timeout remain visibility timeout value
2724 * @see bluetooth_set_discoverable_mode
2728 ret = bluetooth_get_timeout_value (&timeout);
2731 int bluetooth_get_timeout_value(int *timeout);
2735 * @fn int bluetooth_start_discovery(unsigned short max_response, unsigned short discovery_duration,
2736 * unsigned int classOfDeviceMask)
2737 * @brief Start the generic device discovery which finds both the BR/EDR and LE devices.
2739 * To connect connect to peer bluetooth device, you will need to know its bluetooth address and its
2740 * name. You can search for Bluetooth devices in vicinity by bluetooth_start_discovery() API. It
2741 * first performs an inquiry and try to find both the BREDR and LE devices. For each device found
2742 * from the inquiry it gets the remote name of the device. Bluetooth device address and name are
2743 * given to Application via BLUETOOTH_EVENT_REMOTE_DEVICE_FOUND event. In param_data of
2744 * bluetooth_event_param_t, you will receive a pointer to a structure of bluetooth_device_info_t type.
2745 * You will receive device address, device name, device class, rssi (received signal strength indicator).
2746 * please see bluetooth_device_info_t for more details.
2749 * This API provides searching options like max responses, discovery duration in seconds and class
2750 * of device mask to filter device search. some times there may be too many bluetooth devices in
2751 * vicinity of your device.in such scenario, application can request to reduce number of responces
2752 * (BLUETOOTH_EVENT_REMOTE_DEVICE_FOUND event) with help of max_response parameter. However if you
2753 * pass zero, bluetooth adapter will not restrict number of responses. you can also specify duration
2754 * of the seach in discovery_duration. bluetooth adapter will automatically stop device search after
2755 * application defined time. please note that discovery_duration should be mentioned in seconds.
2756 * Also note that search will end after 180 seconds automatically if you pass 0 in discovery
2759 * Sometimes user may want to search for a particular kind of device. for ex, mobile or pc. in such
2760 * case, you can use classOfDeviceMask parameter. please see bluetooth_device_service_class_t,
2761 * bluetooth_device_major_class_t and bluetooth_device_minor_class_t enums
2763 * This function is a asynchronous call.
2764 * If the call is success then the application will receive BLUETOOTH_EVENT_DISCOVERY_STARTED event
2765 * through registered callback function.
2767 * The discovery is responded by an BLUETOOTH_EVENT_REMOTE_DEVICE_FOUND event for each device it
2768 * found and a BLUETOOTH_EVENT_REMOTE_DEVICE_NAME_UPDATED event for its name updation.
2770 * The completion or cancellation of the discovery is indicated by an
2771 * BLUETOOTH_EVENT_DISCOVERY_FINISHED event.
2773 * The device discovery can be cancelled by calling bluetooth_stop_discovery().
2776 * @return BLUETOOTH_ERROR_NONE - Success \n
2777 * BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Bluetooth adapter is not enabled \n
2778 * BLUETOOTH_ERROR_DEVICE_BUSY - Bluetooth adapter is busy doing some operation \n
2779 * BLUETOOTH_ERROR_INTERNAL - System error like heap full has occured or bluetooth
2780 agent is not running \n
2782 * @param[in] max_response define the maximum response of the number of founded devices
2784 * @param[in] discovery_duration define bluetooth discovery duration (0 means 180s )
2785 * @param[in] classOfDeviceMask define classes of the device mask which user wants
2786 (refer to class of device)
2788 * @see bluetooth_start_custom_discovery(), bluetooth_cancel_discovery, bluetooth_device_info_t
2791 void bt_event_callback(int event, bluetooth_event_param_t *param)
2795 case BLUETOOTH_EVENT_REMOTE_DEVICE_FOUND:
2797 bluetooth_device_info_t *device_info = NULL;
2798 printf("BLUETOOTH_EVENT_REMOTE_DEVICE_FOUND, result [0x%04x]",
2800 device_info = (bluetooth_device_info_t *)param->param_data;
2801 memcpy(&searched_device, &device_info->device_address,
2802 sizeof(bluetooth_device_address_t));
2803 printf("dev [%2.2X:%2.2X:%2.2X:%2.2X:%2.2X:%2.2X]",
2804 device_info->device_address.addr[0],
2805 device_info->device_address.addr[1],
2806 device_info->device_address.addr[2],
2807 device_info->device_address.addr[3],
2808 device_info->device_address.addr[4],
2809 device_info->device_address.addr[5]);
2812 case BLUETOOTH_EVENT_REMOTE_DEVICE_NAME_UPDATED:
2814 bluetooth_device_info_t *device_info = NULL;
2815 printf("BLUETOOTH_EVENT_REMOTE_DEVICE_NAME_UPDATED, result [0x%04x]",
2817 device_info = (bluetooth_device_info_t *)param->param_data;
2818 memcpy(&searched_device, &device_info->device_address,
2819 sizeof(bluetooth_device_address_t));
2820 printf("dev [%s] [%2.2X:%2.2X:%2.2X:%2.2X:%2.2X:%2.2X]",
2821 device_info->device_name.name,
2822 device_info->device_address.addr[0],
2823 device_info->device_address.addr[1],
2824 device_info->device_address.addr[2],
2825 device_info->device_address.addr[3],
2826 device_info->device_address.addr[4],
2827 device_info->device_address.addr[5]);
2831 case BLUETOOTH_EVENT_DISCOVERY_FINISHED:
2832 printf("BLUETOOTH_EVENT_DISCOVERY_FINISHED, result[0x%04x]", param->result);
2837 unsigned short max_response;
2838 unsigned short discovery_duration;
2839 unsigned classOfDeviceMask;
2843 discovery_duration =0;
2844 classOfDeviceMask =0;
2846 ret = bluetooth_start_discovery(max_response,discovery_duration,classOfDeviceMask);
2851 int bluetooth_start_discovery(unsigned short max_response,
2852 unsigned short discovery_duration,
2853 unsigned int classOfDeviceMask);
2856 * @fn int bluetooth_start_custom_discovery(bt_discovery_role_type_t role
2857 * unsigned short max_response,
2858 * unsigned short discovery_duration,
2859 * unsigned int classOfDeviceMask)
2860 * @brief Start the custom device discovery with specific type such as BR/EDR, LE, LE+BR/EDR etc.
2862 * Sometimes user may want to search for a particular kind of device. for ex, LE only or BR/EDR only.
2863 * In such case, you can use type parameter. This API is similar to that of bluetooth_start_discovery().
2864 * Please see bluetooth_start_discovery() for other parameters description.
2866 * This function is a asynchronous call.
2867 * If the call is success then the application will receive BLUETOOTH_EVENT_DISCOVERY_STARTED event
2868 * through registered callback function.
2870 * The discovery is responded by an BLUETOOTH_EVENT_REMOTE_DEVICE_FOUND event for each device it
2871 * found and a BLUETOOTH_EVENT_REMOTE_DEVICE_NAME_UPDATED event for its name updation.
2873 * The completion or cancellation of the discovery is indicated by an
2874 * BLUETOOTH_EVENT_DISCOVERY_FINISHED event.
2876 * The device discovery can be cancelled by calling bluetooth_stop_discovery().
2879 * @return BLUETOOTH_ERROR_NONE - Success \n
2880 * BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Bluetooth adapter is not enabled \n
2881 * BLUETOOTH_ERROR_INVALID_PARAM - Invalid parameter \n
2882 * BLUETOOTH_ERROR_IN_PROGRESS - Bluetooth adapter is busy with another discovery \n
2883 * BLUETOOTH_ERROR_INTERNAL - System error like heap full has occured or bluetooth
2884 agent is not running \n
2886 * @param[in] role define the role type of devices to be discovered. See enum bt_discovery_role_type_t.
2887 (DISCOVERY_ROLE_BREDR means BREDR only, DISCOVERY_ROLE_LE mean Low Energy only,
2888 DISCOVERY_ROLE_LE_BREDR means LE & BREDR - same as bluetooth_start_discovery())
2889 * @param[in] max_response define the maximum response of the number of founded devices
2891 * @param[in] discovery_duration define bluetooth discovery duration (0 means 180s )
2892 * @param[in] classOfDeviceMask define classes of the device mask which user wants
2893 (refer to class of device)
2895 * @see bluetooth_start_discovery(), bluetooth_cancel_discovery, bluetooth_device_info_t
2898 unsigned short type;
2899 unsigned short max_response;
2900 unsigned short discovery_duration;
2901 unsigned classOfDeviceMask;
2906 discovery_duration =0;
2907 classOfDeviceMask =0;
2909 ret = bluetooth_start_custom_discovery(type, max_response, discovery_duration, classOfDeviceMask);
2914 int bluetooth_start_custom_discovery(bt_discovery_role_type_t role,
2915 unsigned short max_response,
2916 unsigned short discovery_duration,
2917 unsigned int classOfDeviceMask);
2920 * @fn int bluetooth_cancel_discovery (void)
2921 * @brief Cancel the on-going device discovery operation
2924 * This function stops the on-going device discovery operation. This API has to be called after the
2925 * bluetooth_start_discovery API and before the BLUETOOTH_EVENT_DISCOVERY_FINISHED event comes of
2926 * the bluetooth_start_discovery API
2928 * Normally the device discovery takes a more time (~10.24 seconds) to get all the devices in its
2929 * vicinity and it recevies as BLUETOOTH_EVENT_REMOTE_DEVICE_FOUND event. This API helps us to
2930 * cancel the discover request once the user received the device to which he wish to connect.
2932 * This function is a asynchronous call.
2933 * If the call is success to cancel discovey then the application will receive
2934 * BLUETOOTH_EVENT_DISCOVERY_FINISHED event through registered callback function
2935 * with an error code BLUETOOTH_ERROR_CANCEL. In the case of failure the error code will be
2936 * BLUETOOTH_ERROR_NONE
2939 * @return BLUETOOTH_ERROR_NONE - Success \n
2940 * BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is not enabled \n
2941 * BLUETOOTH_ERROR_NOT_IN_OPERATION - No Discovery operation in progess to cancel \n
2942 * BLUETOOTH_ERROR_ACCESS_DENIED - Currently in discovery but it is requested from
2943 other application \n
2944 * BLUETOOTH_ERROR_INTERNAL - Internel IPC error \n
2946 * @see bluetooth_start_discovery
2948 void bt_event_callback(int event, bluetooth_event_param_t *param)
2952 case BLUETOOTH_EVENT_DISCOVERY_FINISHED:
2953 TC_PRT("BLUETOOTH_EVENT_DISCOVERY_FINISHED, result[0x%04x]", param->result);
2962 ret = bluetooth_cancel_discovery();
2965 int bluetooth_cancel_discovery(void);
2968 * @fn int bluetooth_start_le_discovery(void)
2969 * @brief Start the generic device discovery which finds the LE devices.
2971 * To connect connect to peer bluetooth device, you will need to know its bluetooth address and its
2972 * name. You can search for Bluetooth devices in vicinity by bluetooth_start_le_discovery() API.
2973 * It try to find LE devices. Bluetooth device address and name are
2974 * given to Application via BLUETOOTH_EVENT_REMOTE_LE_DEVICE_FOUND event. In param_data of
2975 * bluetooth_event_param_t, you will receive a pointer to a structure of bluetooth_device_info_t type.
2976 * You will receive device address, device name, device class, rssi (received signal strength indicator).
2977 * please see bluetooth_device_info_t for more details.
2979 * This function is a asynchronous call.
2980 * If the call is success then the application will receive BLUETOOTH_EVENT_LE_DISCOVERY_STARTED event
2981 * through registered callback function.
2983 * The discovery is responded by an BLUETOOTH_EVENT_REMOTE_LE_DEVICE_FOUND event for each device it
2986 * The completion or cancellation of the discovery is indicated by an
2987 * BLUETOOTH_EVENT_LE_DISCOVERY_FINISHED event.
2989 * The device discovery can be cancelled by calling bluetooth_stop_le_discovery().
2992 * @return BLUETOOTH_ERROR_NONE - Success \n
2993 * BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Bluetooth adapter is not enabled \n
2994 * BLUETOOTH_ERROR_DEVICE_BUSY - Bluetooth adapter is busy doing some operation \n
2995 * BLUETOOTH_ERROR_INTERNAL - System error like heap full has occured or bluetooth
2996 agent is not running \n
2999 * @see bluetooth_stop_le_discovery, bluetooth_device_info_t
3002 void bt_event_callback(int event, bluetooth_event_param_t *param)
3006 case BLUETOOTH_EVENT_REMOTE_LE_DEVICE_FOUND:
3008 bluetooth_device_info_t *device_info = NULL;
3009 printf("BLUETOOTH_EVENT_REMOTE_DEVICE_FOUND, result [0x%04x]",
3011 device_info = (bluetooth_device_info_t *)param->param_data;
3012 memcpy(&searched_device, &device_info->device_address,
3013 sizeof(bluetooth_device_address_t));
3014 printf("dev [%2.2X:%2.2X:%2.2X:%2.2X:%2.2X:%2.2X]",
3015 device_info->device_address.addr[0],
3016 device_info->device_address.addr[1],
3017 device_info->device_address.addr[2],
3018 device_info->device_address.addr[3],
3019 device_info->device_address.addr[4],
3020 device_info->device_address.addr[5]);
3024 case BLUETOOTH_EVENT_LE_DISCOVERY_FINISHED:
3025 printf("BLUETOOTH_EVENT_LE_DISCOVERY_FINISHED, result[0x%04x]", param->result);
3031 ret = bluetooth_start_discovery();
3036 int bluetooth_start_le_discovery(void);
3039 * @fn int bluetooth_stop_le_discovery (void)
3040 * @brief Cancel the on-going device LE discovery operation
3043 * This function stops the on-going device discovery operation. This API has to be called after the
3044 * bluetooth_start_le_discovery API and before the BLUETOOTH_EVENT_LE_DISCOVERY_FINISHED event comes of
3045 * the bluetooth_start_le_discovery API
3048 * This function is a asynchronous call.
3049 * If the call is success to cancel discovey then the application will receive
3050 * BLUETOOTH_EVENT_LE_DISCOVERY_FINISHED event through registered callback function
3051 * with an error code BLUETOOTH_ERROR_CANCEL. In the case of failure the error code will be
3052 * BLUETOOTH_ERROR_NONE
3055 * @return BLUETOOTH_ERROR_NONE - Success \n
3056 * BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is not enabled \n
3057 * BLUETOOTH_ERROR_NOT_IN_OPERATION - No Discovery operation in progess to cancel \n
3058 * BLUETOOTH_ERROR_ACCESS_DENIED - Currently in discovery but it is requested from
3059 other application \n
3060 * BLUETOOTH_ERROR_INTERNAL - Internel IPC error \n
3062 * @see bluetooth_start_discovery
3064 void bt_event_callback(int event, bluetooth_event_param_t *param)
3068 case BLUETOOTH_EVENT_LE_DISCOVERY_FINISHED:
3069 TC_PRT("BLUETOOTH_EVENT_LE_DISCOVERY_FINISHED, result[0x%04x]", param->result);
3078 ret = bluetooth_stop_le_discovery();
3081 int bluetooth_stop_le_discovery(void);
3084 * @fn int bluetooth_is_discovering(void)
3085 * @brief Check for the device discovery is in-progress or not.
3087 * This API is used to check the current status of the Discovery operation.If discovery is in\
3088 * progress normally other operations are not allowed.
3089 * If a device discovery is in progress, we have to either cancel the discovery operation or wait
3090 * for the BLUETOOTH_EVENT_DISCOVERY_FINISHED
3091 * event before performing other operations. This API is used to get for the current discovery
3092 * operation status and using bluetooth_cancel_discovery()
3093 * we can cancell the ongoing discovery process.
3094 * Before calling this API, make sure that the adapter is enabled. There is no callback event for
3097 * This function checks whether the device discovery is started or not.
3099 * This function is a synchronous call.
3102 * @return BLUETOOTH_ERROR_NONE - Discovery is not in progress \n
3103 * BLUETOOTH_ERROR_NONE+1 - Discovery in progress \n
3104 * BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is not enabled \n
3107 * @see bluetooth_start_discovery, bluetooth_cancel_discovery
3111 ret = bluetooth_is_discovering ();
3114 int bluetooth_is_discovering(void);
3117 * @fn int bluetooth_is_le_discovering(void)
3118 * @brief Check for the device LE discovery is in-progress or not.
3120 * This API is used to check the current status of the LE Discovery operation.If discovery is in\
3121 * progress normally other operations are not allowed.
3122 * If a device discovery is in progress, we have to either cancel the discovery operation or wait
3123 * for the BLUETOOTH_EVENT_LE_DISCOVERY_FINISHED
3124 * event before performing other operations. This API is used to get for the current discovery
3125 * operation status and using bluetooth_stop_le_discovery()
3126 * we can cancell the ongoing LE discovery process.
3127 * Before calling this API, make sure that the adapter is enabled. There is no callback event for
3130 * This function checks whether the device LE discovery is started or not.
3132 * This function is a synchronous call.
3135 * @return BLUETOOTH_ERROR_NONE - Discovery is not in progress \n
3136 * BLUETOOTH_ERROR_NONE+1 - Discovery in progress \n
3137 * BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is not enabled \n
3140 * @see bluetooth_start_le_discovery, bluetooth_stop_le_discovery
3144 ret = bluetooth_is_le_discovering ();
3147 int bluetooth_is_le_discovering(void);
3150 * @fn int bluetooth_is_le_scanning(void)
3151 * @brief Check for the device LE scan is in-progress or not.
3153 * This API is used to check the current status of the LE Scan operation.If discovery is in\
3154 * progress normally other operations are not allowed.
3156 * This function checks whether the device LE Scan is started or not.
3158 * This function is a synchronous call.
3160 * @return TRUE - LE Scan in progress \n
3161 * FALSE - LE Scan is not in progress \n
3166 gboolean is_le_scanning = 0;
3167 is_le_scanning = bluetooth_is_le_scanning ();
3170 gboolean bluetooth_is_le_scanning(void);
3172 gboolean bluetooth_is_scan_filter_supported(void);
3175 * @fn int bluetooth_force_hcidump(int timeout)
3176 * @brief Enable /disable force-hcidump
3178 * This function control force-hcidump.
3180 * This function is a synchronous call.
3182 * @return BLUETOOTH_ERROR_NONE - Success \n
3183 * BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is not enabled \n
3184 * BLUETOOTH_ERROR_INTERNAL - Internal IPC error \n
3186 * @param[in] start To enable or disable force-hcidump[TRUE / FALSE]
3191 int bluetooth_force_hcidump(int timeout);
3194 * @fn int bluetooth_register_scan_filter(bluetooth_le_scan_filter_t *filter, int *slot_id)
3195 * @brief Register scan filter.
3197 * This function registers the scan filter.
3199 * This function is a synchronous call.
3201 * @return BLUETOOTH_ERROR_NONE - Success \n
3203 * @param[in] filter scan filter to register
3204 * @param[out] slot_id the slot ID of scan filter
3208 int bluetooth_register_scan_filter(bluetooth_le_scan_filter_t *filter, int *slot_id);
3211 * @fn int bluetooth_unregister_scan_filter(int slot_id)
3212 * @brief Register scan filter.
3214 * This function unregisters the scan filter.
3216 * This function is a synchronous call.
3218 * @return BLUETOOTH_ERROR_NONE - Success \n
3220 * @param[in] slot_id the slot ID of scan filter
3224 int bluetooth_unregister_scan_filter(int slot_id);
3227 * @fn int bluetooth_unregister_all_scan_filters(void)
3228 * @brief Register scan filter.
3230 * This function usregisters all scan filters.
3232 * This function is a synchronous call.
3234 * @return BLUETOOTH_ERROR_NONE - Success \n
3238 int bluetooth_unregister_all_scan_filters(void);
3241 * @fn int bluetooth_enable_rssi(const bluetooth_device_address_t *remote_address,
3242 int link_type, bt_rssi_threshold_t rssi_threshold)
3243 * @brief Enable RSSI monitoring
3245 * This function enables RSSI monitoring and sets threshold for a connection
3247 * @return BLUETOOTH_ERROR_NONE - Success \n
3250 * @see bluetooth_get_rssi_strength
3252 int bluetooth_enable_rssi(const bluetooth_device_address_t *remote_address,
3253 int link_type, bt_rssi_threshold_t *rssi_threshold);
3256 * @fn int bluetooth_get_rssi_strength(const bluetooth_device_address_t *remote_address, int link_type)
3257 * @brief Gets Raw RSSI signal Strength
3259 * This function gives the Raw RSSI signal strength for a connection.
3261 * @return BLUETOOTH_ERROR_NONE - Success \n
3264 * @see bluetooth_enable_rssi
3266 int bluetooth_get_rssi_strength(const bluetooth_device_address_t *remote_address, int link_type);
3268 int bluetooth_set_connectable(gboolean is_connectable);
3270 int bluetooth_is_connectable(gboolean *is_connectable);
3273 * @fn int bluetooth_bond_device(const bluetooth_device_address_t *device_address)
3274 * @brief Initiate a bonding process
3277 * This function initiates a bonding procedure with a peer device. The bonding procedure
3278 * enables authentication and optionally encryption on the Bluetooth link.
3280 * Bonding is applied to the discovered device to which we need a secure connection. We cannot
3281 * inititate the bonding request to the devices already in the paired list.
3283 * Usually we call this API after the device discovery.
3284 * This function is a asynchronous call.
3286 * Response will be received through BLUETOOTH_EVENT_BONDING_FINISHED event. It can any of the below
3287 * mentioed result code
3288 * BLUETOOTH_ERROR_PARING_FAILED - Pairing faied \n
3289 * BLUETOOTH_ERROR_ACCESS_DENIED - Authetication rejected \n
3290 * BLUETOOTH_ERROR_CANCEL_BY_USER - Cancelled by the user \n
3291 * BLUETOOTH_ERROR_PARING_FAILED - Pairing failed \n
3292 * BLUETOOTH_ERROR_TIMEOUT - Timeout has haapened \n
3294 * If the remote user is not responding with in a specific time(60 seconds), then a timeout happens
3295 * and BLUETOOTH_EVENT_BONDING_FINISHED callback event is called with and BLUETOOTH_ERROR_TIMEOUT
3298 * The bonding operation can be cancelled by calling bluetooth_cancel_bonding().
3301 * @return BLUETOOTH_ERROR_NONE - Success \n
3302 * BLUETOOTH_ERROR_INVALID_PARAM - Invalid parameter \n
3303 * BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is not enabled \n
3304 * BLUETOOTH_ERROR_DEVICE_BUSY - Adapter is busy or Discovery is in Progress \n
3305 * BLUETOOTH_ERROR_INVALID_DATA - Invalid BD address \n
3307 * @param[in] device_address This indicates an address of the device with which the pairing
3308 * should be initiated
3310 * @see bluetooth_cancel_bonding
3312 void bt_event_callback(int event, bluetooth_event_param_t *param)
3316 case BLUETOOTH_EVENT_BONDING_FINISHED:
3318 TC_PRT("BLUETOOTH_EVENT_BONDING_FINISHED, result [0x%04x]", param->result);
3319 if (param->result >= BLUETOOTH_ERROR_NONE)
3321 bluetooth_device_info_t *device_info = NULL;
3322 device_info = (bluetooth_device_info_t *)param->param_data;
3323 printf("dev [%s] [%2.2X:%2.2X:%2.2X:%2.2X:%2.2X:%2.2X]
3324 mjr[%#x] min[%#x] srv[%#x]",
3325 device_info->device_name.name,
3326 device_info->device_address.addr[0],
3327 device_info->device_address.addr[1],
3328 device_info->device_address.addr[2],
3329 device_info->device_address.addr[3],
3330 device_info->device_address.addr[4],
3331 device_info->device_address.addr[5],
3332 device_info->device_class.major_class,
3333 device_info->device_class.minor_class,
3334 device_info->device_class.service_class);
3348 bluetooth_device_address_t device_address={{0}};
3350 ret = bluetooth_bond_device(&device_address);
3354 int bluetooth_bond_device(const bluetooth_device_address_t *device_address);
3357 * @fn int bluetooth_bond_device_by_type(const bluetooth_device_address_t *device_address,
3358 * bluetooth_conn_type_t conn_type)
3359 * @brief Initiate a bonding process
3362 * This function initiates a bonding procedure with a peer device on the basis of connection type (BLE or BREDR).
3363 * The bonding procedure enables authentication and optionally encryption on the Bluetooth link.
3365 * Bonding is applied to the discovered device to which we need a secure connection. We cannot
3366 * inititate the bonding request to the devices already in the paired list.
3368 * Usually we call this API after the device discovery.
3369 * This function is a asynchronous call.
3371 * Response will be received through BLUETOOTH_EVENT_BONDING_FINISHED event. It can any of the below
3372 * mentioed result code
3373 * BLUETOOTH_ERROR_PARING_FAILED - Pairing faied \n
3374 * BLUETOOTH_ERROR_ACCESS_DENIED - Authetication rejected \n
3375 * BLUETOOTH_ERROR_CANCEL_BY_USER - Cancelled by the user \n
3376 * BLUETOOTH_ERROR_PARING_FAILED - Pairing failed \n
3377 * BLUETOOTH_ERROR_TIMEOUT - Timeout has haapened \n
3379 * If the remote user is not responding with in a specific time(60 seconds), then a timeout happens
3380 * and BLUETOOTH_EVENT_BONDING_FINISHED callback event is called with and BLUETOOTH_ERROR_TIMEOUT
3383 * The bonding operation can be cancelled by calling bluetooth_cancel_bonding().
3386 * @return BLUETOOTH_ERROR_NONE - Success \n
3387 * BLUETOOTH_ERROR_INVALID_PARAM - Invalid parameter \n
3388 * BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is not enabled \n
3389 * BLUETOOTH_ERROR_DEVICE_BUSY - Adapter is busy or Discovery is in Progress \n
3390 * BLUETOOTH_ERROR_INVALID_DATA - Invalid BD address \n
3392 * @param[in] device_address This indicates an address of the device with which pairing
3393 * should be initiated
3394 * @param[in] conn_type This Indicates the connection type to be used for pairing in case of
3397 * @see bluetooth_cancel_bonding
3399 int bluetooth_bond_device_by_type(const bluetooth_device_address_t *device_address,
3400 bluetooth_conn_type_t conn_type);
3403 * @fn int bluetooth_cancel_bonding(void)
3404 * @brief Cancel the on-going bonding process
3406 * This API is called to cancel the on-going bonding procedure. It should be called before the
3407 * BLUETOOTH_EVENT_BONDING_FINISHED event comes.
3408 * This API is useful when the remote device is not responding to the bond request or we wish to
3409 * cancel the bonding request. In this case we need not wait for the timeout to happen.
3411 * This function is a synchronous call.
3413 * @return BLUETOOTH_ERROR_NONE - Success \n
3414 * BLUETOOTH_ERROR_NOT_IN_OPERATION - No bonding request in progress \n
3415 * BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is not enabled \n
3418 * @see bluetooth_bond_device
3424 ret = bluetooth_cancel_bonding();
3427 int bluetooth_cancel_bonding(void);
3430 * @fn int bluetooth_unbond_device(const bluetooth_device_address_t *device_address)
3431 * @brief Remove bonding
3434 * To communicate with remote device over bluetooth link, user should bond with peer device.
3435 * After bonding is over, peer device is added to list of bonded devices. bluetooth_unbond_device()
3436 * API is used to remove peer device from the list. Please note that after removing the device
3437 * from bonded device list, you cannot communication with peer device until bonding happens again.
3439 * User can call this function by passing bluetooth device address of any bonded device. Please note
3440 * that after successful return of this function, any bluetooth application running on your device
3441 * will not be able to communicate with unbonded device until bond operation happens again using
3442 * bluetooth_bond_device()
3445 * This function is a asynchronous call. The request to remove the specified device from the bonded
3446 * list is responded by an BLUETOOTH_EVENT_BONDED_DEVICE_REMOVED event. if the operation is success,
3447 * you will receive BLUETOOTH_ERROR_NONE. BLUETOOTH_ERROR_NOT_PAIRED may be received in result code
3448 * in case if there is a problem in locating given bluetooth device address in bonded devices list
3452 * @return BLUETOOTH_ERROR_NONE - Success \n
3453 * BLUETOOTH_ERROR_INVALID_PARAM - Device address is not valid \n
3454 * BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Bluetooth adapter is not enabled \n
3455 * BLUETOOTH_ERROR_DEVICE_BUSY - Bluetooth adapter is busy doing some operation \n
3456 * BLUETOOTH_ERROR_INVALID_DATA - Device address provided is incorrect \n
3457 * BLUETOOTH_ERROR_INTERNAL - System error like heap full has occured or bluetooth
3458 * agent is not running \n
3459 * BLUETOOTH_ERROR_NOT_PAIRED - Device address mentioned in the argument is not a
3462 * @param[in] device_address This indicates an address of the device to remove bonding
3466 * @see bluetooth_bond_device, bluetooth_cancel_bonding
3469 void bt_event_callback(int event, bluetooth_event_param_t *param)
3472 case BLUETOOTH_EVENT_BONDED_DEVICE_REMOVED: {
3473 bluetooth_device_address_t *dev_addr = NULL;
3475 if (param->result == BLUETOOTH_ERROR_NONE) {
3476 dev_addr = (bluetooth_device_address_t *)param->param_data;
3478 printf("%2.2X:%2.2X:%2.2X:%2.2X:%2.2X:%2.2X\n",
3479 dev_addr->addr[0], dev_addr->addr[1]
3480 dev_addr->addr[2], dev_addr->addr[3]
3481 dev_addr->addr[4], dev_addr->addr[5]
3492 bluetooth_device_address_t *device_address;
3494 // copy valid device address in device_address
3496 ret = bluetooth_unbond_device(device_address);
3499 int bluetooth_unbond_device(const bluetooth_device_address_t *device_address);
3502 * @fn int bluetooth_get_bonded_device_list(GPtrArray **dev_list)
3503 * @brief Get bonded(paired) device list
3506 * This API gets all bonded device list.
3507 * The devices in the bonded device list further can be used to perform the authorization by calling
3508 * bluetooth_authorize_device API.
3510 * This function is a synchronous call.
3511 * Information for bonded devices can be obtained when result code is BLUETOOTH_ERROR_NONE. If not,
3512 * there is no valid information in the dev_list.
3513 * The len field in the dev_list represents the number of bonded devices. The data structure for
3514 * bonded device information is bluetooth_device_info_t.
3517 * @return BLUETOOTH_ERROR_NONE - Success \n
3518 * BLUETOOTH_ERROR_NOT_SUPPORT - Opreation not supported \n
3520 * @see bluetooth_bond_device, bluetooth_unbond_device, bluetooth_authorize_device
3522 void bt_get_bonded_devices(void)
3526 GPtrArray *devinfo = NULL;
3527 bluetooth_device_info_t *ptr;
3529 // allocate the g_pointer_array
3530 devinfo = g_ptr_array_new();
3532 ret = bluetooth_get_bonded_device_list(&devinfo);
3533 if (ret != BLUETOOTH_ERROR_NONE)
3535 printf("bluetooth_get_bonded_device_list failed with [%d]",ret);
3539 printf("g pointer arrary count : [%d]", devinfo->len);
3540 for (i=0; i<devinfo->len; i++)
3542 ptr = g_ptr_array_index(devinfo, i);
3545 printf("Name [%s]\n", ptr->device_name.name);
3546 printf("Major Class [%d]\n", ptr->device_class.major_class);
3547 printf("Minor Class [%d]\n", ptr->device_class.minor_class);
3548 printf("Service Class [%d]\n", ptr->device_class.service_class);
3549 printf("%2.2X:%2.2X:%2.2X:%2.2X:%2.2X:%2.2X\n",
3550 ptr->device_address.addr[0],
3551 ptr->device_address.addr[1], ptr->device_address.addr[2],
3552 ptr->device_address.addr[3],
3553 ptr->device_address.addr[4], ptr->device_address.addr[5]);
3560 // free g_pointer_array
3561 g_ptr_array_free(devinfo, TRUE);
3566 int bluetooth_get_bonded_device_list(GPtrArray **dev_list);
3568 int bluetooth_get_profile_connected_device_list(
3569 const char *profile_uuid, GPtrArray **addr_list);
3572 * @fn int bluetooth_get_bonded_device(const bluetooth_device_address_t *device_address,
3573 * bluetooth_device_info_t *dev_info)
3574 * @brief Get a bonded(paired) device
3577 * This API gets a bonded device.
3579 * This function is a synchronous call.
3580 * Information for bonded devices can be obtained when result code is BLUETOOTH_ERROR_NONE. If not,
3581 * there is no valid information in the dev_info.
3582 * The data structure for bonded device information is bluetooth_device_info_t.
3585 * @return BLUETOOTH_ERROR_NONE - Success \n
3586 * BLUETOOTH_ERROR_NOT_SUPPORT - Opreation not supported \n
3588 * @see bluetooth_bond_device, bluetooth_unbond_device, bluetooth_authorize_device
3590 void bt_get_bonded_device(void)
3594 bluetooth_device_info_t devinfo = {0};
3595 bluetooth_device_address_t device_address={{0x00,0x1C,0x43,0x2B,0x1A,0xE5}};
3597 ret = bluetooth_get_bonded_device(&device_address, &devinfo);
3598 if (ret != BLUETOOTH_ERROR_NONE)
3600 printf("bluetooth_get_bonded_device failed with [%d]",ret);
3604 printf("Name [%s]\n", devinfo.device_name.name);
3605 printf("Major Class [%d]\n", devinfo.device_class.major_class);
3606 printf("Minor Class [%d]\n", devinfo.device_class.minor_class);
3607 printf("Service Class [%d]\n", devinfo.device_class.service_class);
3608 printf("%2.2X:%2.2X:%2.2X:%2.2X:%2.2X:%2.2X\n", devinfo.device_address.addr[0],
3609 devinfo.device_address.addr[1], devinfo.device_address.addr[2],
3610 devinfo.device_address.addr[3], devinfo.device_address.addr[4],
3611 devinfo.device_address.addr[5]);
3620 int bluetooth_get_bonded_device(const bluetooth_device_address_t *device_address,
3621 bluetooth_device_info_t *dev_info);
3625 * @fn int bluetooth_get_is_alias_set(const bluetooth_device_address_t *device_address,
3626 * gboolean *is_alias_set)
3627 * @brief Get is_alias_set property of device
3629 * This API gets is_alias_set property of a bonded device.
3631 * This function is a synchronous call.
3632 * Information for is_alias_set property can be obtained only when result code is BLUETOOTH_ERROR_NONE.
3633 * If not,there is no valid information in the is_alias_set.
3635 * @return BLUETOOTH_ERROR_NONE - Success \n
3636 * BLUETOOTH_ERROR_NOT_SUPPORT - Opreation not supported \n
3641 bluetooth_device_address_t device_address = {{0x00,0x1C,0x43,0x2B,0x1A,0xE5}};
3643 ret = bluetooth_get_is_alias_set(&device_address, &alias_set);
3646 int bluetooth_get_is_alias_set(const bluetooth_device_address_t *device_address,
3647 gboolean *is_alias_set);
3650 * @fn int bluetooth_set_alias(const bluetooth_device_address_t *device_address, const char *alias)
3651 * @brief set alias for bonded device
3654 * This function set alias for bonded device.
3656 * This function is a synchronous call.
3659 * @return BLUETOOTH_ERROR_NONE - Success \n
3660 * BLUETOOTH_ERROR_INVALID_PARAM - Invalid parameter \n
3661 * @param[in] device_address This indicates an address of the remote device
3662 * @param[in] alias This indicates an alias to set
3667 ret = bluetooth_set_alias(&remote_address);
3670 int bluetooth_set_alias(const bluetooth_device_address_t *device_address,
3674 * @fn int bluetooth_get_remote_device(const bluetooth_device_address_t *device_address)
3675 * @brief Get remote deivice
3678 * This function gets specific remote device.
3680 * This function is a asynchronous call.
3681 * This API is responded by an BLUETOOTH_EVENT_REMOTE_DEVICE_READ event.
3684 * @return BLUETOOTH_ERROR_NONE - Success \n
3685 * BLUETOOTH_ERROR_NOT_SUPPORT - Operation not supported \n
3686 * @param[in] device_address This indicates an address of the remote device
3691 ret = bluetooth_get_remote_device(&remote_address);
3694 int bluetooth_get_remote_device(const bluetooth_device_address_t *device_address);
3697 * @fn int bluetooth_authorize_device(const bluetooth_device_address_t *device_address,
3698 * gboolean authorized)
3699 * @brief Authorize/Unauthorize a bonded device
3702 * This function authorizes/unauthorize a bonded device. It decides the device to connect
3703 * with/without user confirmation.
3705 * If we select a paired device and make it authorized by calling this API with the authorized
3706 * parameter to TRUE, then it will not ask for the user conformation before connecting. Similarly
3707 * if we unauthorize the paired device by calling this API with the authorized parameter to FALSE,
3708 * then it will ask for the user conformation before the connection.
3710 * This API supposed to be called on the paired devices. Which means we have to use this API only
3711 * after successful pairing.
3713 * This function is a asynchronous call.
3714 * Response will be received through BLUETOOTH_EVENT_DEVICE_AUTHORIZED event.
3716 * @return BLUETOOTH_ERROR_NONE - Success \n
3717 * @exception BLUETOOTH_ERROR_INTERNAL - Cannot get the interal DBUS proxy \n
3718 * @param[in] device_address This indicates an address of the device to authorize \n
3719 * @param[in] authorized TRUE : authorize FALSE: unauthorize
3721 * @see bluetooth_get_bonded_device_list
3723 void bt_event_callback(int event, bluetooth_event_param_t *param)
3727 case BLUETOOTH_EVENT_DEVICE_AUTHORIZED :
3729 if (param->result == BLUETOOTH_ERROR_NONE)
3733 //device authorization failed failure
3741 bluetooth_device_address_t device_address={{0}};
3742 gboolean authorized;
3746 ret = bluetooth_authorize_device(&device_address,authorized);
3749 int bluetooth_authorize_device(const bluetooth_device_address_t *device_address,
3750 gboolean authorized);
3752 int bluetooth_set_pin_code(const bluetooth_device_address_t *device_address,
3753 const bluetooth_device_pin_code_t *pin_code);
3755 int bluetooth_unset_pin_code(const bluetooth_device_address_t *device_address);
3758 * @fn int bluetooth_passkey_reply(char *passkey, gboolean reply)
3760 * @brief Receives Legacy Passkey\pin with following authentication response types
3762 * @param[in] passkey : This is the PIN or PASSKEY string required for remote device authentication
3763 * @param[in] reply TRUE : Accept AUthentication FALSE: Cancels authentication
3766 int bluetooth_passkey_reply(char *passkey, gboolean reply);
3769 * @fn int bluetooth_passkey_confirmation_reply(gboolean reply);
3771 * @brief This API sends user confirmation reply to the local adapter.
3773 * @param[in] reply TRUE : Accept AUthentication FALSE: Cancels authentication
3776 int bluetooth_passkey_confirmation_reply(gboolean reply);
3779 * @fn int bluetooth_search_service(const bluetooth_device_address_t *device_address)
3780 * @brief Get all services supported by remote device
3783 * This API call initiates the search for the services supported by the specified device. Normally
3784 * the service search will take a couple of seconds to get it completed. Before calling this API
3785 * make sure that the Adapter is enabled. We have to give the device address of the remote device to
3786 * perform the service search. We can get the device address by doing a device discovery operation.
3789 * This function is a asynchronous call.
3790 * The service search request is responded by BLUETOOTH_EVENT_SERVICE_SEARCHED event.
3792 * There is a timeout associated with the service search. The default time out is 40 seconds. If the
3793 * remove device did not respond with in the time out period the BLUETOOTH_EVENT_SERVICE_SEARCHED
3794 * event is generated with appropriate result code.
3796 * @return BLUETOOTH_ERROR_NONE - Success \n
3797 * BLUETOOTH_ERROR_SERVICE_SEARCH_ERROR - Service search error (NULL device address) \n
3798 * BLUETOOTH_ERROR_INTERNAL - Internal IPC error \n
3799 * @param[in] device_address This indicates an address of the device
3800 * whose services need to be found
3802 * @see bluetooth_cancel_service_search
3804 int bluetooth_search_service(const bluetooth_device_address_t *device_address);
3807 * @fn int bluetooth_cancel_service_search(void)
3808 * @brief Cancel the ongoing service search operation
3811 * This function cancel the ongoing service search operation. This API is usually calling after the
3812 * bluetooth_search_service API.
3813 * Normally service search will take a more time (> 5 seconds) to complete. This API will be called
3814 * if the user wish to cancel the Ongoing service search operation.
3816 * This API should be called just after the bluetooth_search_service API and before the
3817 * BLUETOOTH_EVENT_SERVICE_SEARCHED event
3819 * This function is a synchronous call.
3821 * @return BLUETOOTH_ERROR_NONE - Success \n
3822 * BLUETOOTH_ERROR_CANCEL - Error in service search cancel operation \n
3823 * BLUETOOTH_ERROR_NOT_PAIRED - Not paired device \n
3824 * BLUETOOTH_ERROR_NOT_IN_OPERATION - Searching service is not in operation \n
3827 * @see bluetooth_search_service
3832 ret = bluetooth_cancel_service_search();
3835 int bluetooth_cancel_service_search(void);
3838 * @fn int bluetooth_rfcomm_create_socket(const char *uuid)
3839 * @brief Register rfcomm socket with a specific uuid
3842 * This API register rfcomm socket with the given UUID. The return value of this API is the socket
3843 * descriptor of the server.
3844 * This is the first API which is called to create the server. Once we created the server socket,
3845 * we will listen on that return socket.
3846 * So a bluetooth_rfcomm_listen_and_accept should follow this API call. This is a synchronous call.
3849 * @return socket FD on Success \n
3850 * BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Device is not enabled \n
3851 * BLUETOOTH_ERROR_INTERNAL - Internal error\n
3852 * BLUETOOTH_ERROR_MAX_CONNECTION - Maximum connection reached\n
3853 * BLUETOOTH_ERROR_INVALID_PARAM - Invalid parameter \n
3854 * @param[in] UUID (128 bits)
3857 * @see bluetooth_rfcomm_listen_and_accept, bluetooth_rfcomm_remove_socket
3861 const char *rfcomm_test_uuid="00001101-0000-1000-8000-00805F9B34FB";
3862 fd = bluetooth_rfcomm_create_socket(rfcomm_test_uuid);
3866 int bluetooth_rfcomm_create_socket(const char *uuid);
3869 * @fn int bluetooth_rfcomm_create_socket_ex(const char *uuid, const char *bus_name, const char *path)
3870 * @brief Register rfcomm socket with a specific uuid
3873 * This API register rfcomm socket with the given UUID. The return value of this API is the socket
3874 * descriptor of the server.
3875 * This is the first API which is called to create the server. Once we created the server socket,
3876 * we will listen on that return socket.
3877 * So a bluetooth_rfcomm_listen_and_accept_ex should follow this API call. This is a synchronous call.
3880 * @return socket FD on Success \n
3881 * BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Device is not enabled \n
3882 * BLUETOOTH_ERROR_INTERNAL - Internal error\n
3883 * BLUETOOTH_ERROR_MAX_CONNECTION - Maximum connection reached\n
3884 * BLUETOOTH_ERROR_INVALID_PARAM - Invalid parameter \n
3885 * @param[in] UUID (128 bits)
3886 * @param[in] bus_name (const char)
3887 * @param[in] path (const char)
3890 * @see bluetooth_rfcomm_listen_and_accept_ex, bluetooth_rfcomm_remove_socket
3894 const char *rfcomm_test_uuid="00001101-0000-1000-8000-00805F9B34FB";
3895 fd = bluetooth_rfcomm_create_socket_ex(rfcomm_test_uuid, bus_name, path);
3899 int bluetooth_rfcomm_create_socket_ex(const char *uuid, const char *bus_name, const char *path);
3902 * @fn int bluetooth_rfcomm_remove_socket(int socket_fd, const char *uuid)
3903 * @brief De-register the rfcomm socket
3906 * This API deregister rfcomm socket with the given socket fd and UUID. If the remote device is
3907 * already connected then we will receive the BLUETOOTH_EVENT_RFCOMM_DISCONNECTED with socket
3908 * descriptor else no event will come. We will call this API only after the
3909 * bluetooth_rfcomm_listen_and_accept.
3910 * This is a synchronous call.
3912 * @return BLUETOOTH_ERROR_NONE - Success \n
3913 * BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Device is not enabled \n
3914 * BLUETOOTH_ERROR_NOT_FOUND - Cannot find the proxy\n
3915 * BLUETOOTH_ERROR_INVALID_PARAM - Invalid parameter \n
3916 * @param[in] int socket_fd
3919 * @see bluetooth_rfcomm_create_socket, bluetooth_rfcomm_listen_and_accept
3922 void bt_event_callback(int event, bluetooth_event_param_t *param)
3926 case BLUETOOTH_EVENT_RFCOMM_DISCONNECTED:
3928 bluetooth_rfcomm_connection_t *discon_ind =
3929 (bluetooth_rfcomm_connection_t *)param->param_data;
3931 printf("\nDisconnected from FD %d", discon_ind->socket_fd);
3939 fd = bluetooth_rfcomm_create_socket(rfcomm_test_uuid);
3940 ret = bluetooth_rfcomm_listen_and_accept(fd, 1);
3942 ret = bluetooth_rfcomm_remove_socket(fd);
3945 int bluetooth_rfcomm_remove_socket(int socket_fd);
3948 * @fn int bluetooth_rfcomm_remove_socket(const char *uuid)
3949 * @brief De-register the rfcomm socket
3952 * This API deregister rfcomm socket with the given socket UUID. If the remote device is
3953 * already connected then we will receive the BLUETOOTH_EVENT_RFCOMM_DISCONNECTED with socket
3954 * descriptor else no event will come. We will call this API only after the
3955 * bluetooth_rfcomm_listen_and_accept_ex.
3956 * This is a synchronous call.
3958 * @return BLUETOOTH_ERROR_NONE - Success \n
3959 * BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Device is not enabled \n
3960 * BLUETOOTH_ERROR_NOT_FOUND - Cannot find the proxy\n
3961 * BLUETOOTH_ERROR_INVALID_PARAM - Invalid parameter \n
3962 * @param[in] UUID (128 bits)
3965 * @see bluetooth_rfcomm_create_socket_ex, bluetooth_rfcomm_listen_and_accept_ex
3968 void bt_event_callback(int event, bluetooth_event_param_t *param)
3972 case BLUETOOTH_EVENT_RFCOMM_DISCONNECTED:
3974 bluetooth_rfcomm_connection_t *discon_ind =
3975 (bluetooth_rfcomm_connection_t *)param->param_data;
3977 printf("\nDisconnected from FD %d", discon_ind->socket_fd);
3985 fd = bluetooth_rfcomm_create_socket_ex(rfcomm_test_uuid, path, bus_name);
3986 ret = bluetooth_rfcomm_listen_and_accept_ex(rfcomm_test_uuid, 1, bus_name, path);
3988 ret = bluetooth_rfcomm_remove_socket_ex(rfcomm_test_uuid);
3991 int bluetooth_rfcomm_remove_socket_ex(const char *uuid);
3994 * @fn int bluetooth_rfcomm_server_disconnect(int socket_fd)
3995 * @brief Disconnect rfcomm connection
3998 * Disconnect a specific(device node fd) RFCOMM connection. This is a Synchronous call and there
3999 * is no cabbback events for this API. We have to provice the valid client fd to disconnect from the
4002 * @return BLUETOOTH_ERROR_NONE - Success \n
4003 * BLUETOOTH_ERROR_INVALID_PARAM - Invalid parameter \n
4004 * BLUETOOTH_ERROR_NOT_CONNECTED - Not connected \n
4005 * @param[in] int socket_fd the sending socket fd
4011 ret = bluetooth_rfcomm_server_disconnect(g_ret_fd);
4013 printf("Disconnection failed");
4015 printf("Disconnection Success");
4019 int bluetooth_rfcomm_server_disconnect(int socket_fd);
4022 * @fn int bluetooth_rfcomm_listen_and_accept(int socket_fd,int max_pending_connection)
4023 * @brief Rfcomm socket listen
4026 * This API make rfcomm socket listen and accept with socket. We will call this API immediatly
4027 * after the bluetooth_rfcomm_create_socket API.
4028 * This API listen for the incomming connection and once it receives a connection, it will give
4029 * BLUETOOTH_EVENT_RFCOMM_CONNECTED
4030 * event to the application. This is an Asynchronous API call.
4033 * @return BLUETOOTH_ERROR_NONE - Success \n
4034 * BLUETOOTH_ERROR_INVALID_PARAM - Invalid parameter \n
4035 * BLUETOOTH_ERROR_CONNECTION_ERROR - Listen failed \n
4037 * @param[in] int socket_fd
4038 * @param[in] max pending connection.
4041 * @see bluetooth_rfcomm_create_socket
4044 void bt_event_callback(int event, bluetooth_event_param_t* param)
4048 case BLUETOOTH_EVENT_RFCOMM_CONNECTED:
4050 bluetooth_rfcomm_connection_t *conn_ind =
4051 (bluetooth_rfcomm_connection_t *)param->param_data;
4053 printf("\nConnected from FD %d", conn_ind->socket_fd);
4061 fd = bluetooth_rfcomm_create_socket(rfcomm_test_uuid);
4062 ret = bluetooth_rfcomm_listen_and_accept(fd, 1);
4066 int bluetooth_rfcomm_listen_and_accept(int socket_fd, int max_pending_connection);
4069 * @fn int bluetooth_rfcomm_listen_and_accept_ex(const char *uuid, int max_pending_connection, const char *bus_name, const char *path)
4070 * @brief Rfcomm socket listen
4073 * This API make rfcomm socket listen and accept with socket. We will call this API immediatly
4074 * after the bluetooth_rfcomm_create_socket API.
4075 * This API listen for the incomming connection and once it receives a connection, it will give
4076 * BLUETOOTH_EVENT_RFCOMM_CONNECTED
4077 * event to the application. This is an Asynchronous API call.
4080 * @return BLUETOOTH_ERROR_NONE - Success \n
4081 * BLUETOOTH_ERROR_INVALID_PARAM - Invalid parameter \n
4082 * BLUETOOTH_ERROR_CONNECTION_ERROR - Listen failed \n
4084 * @param[in] int socket_fd
4085 * @param[in] max pending connection.
4090 * @see bluetooth_rfcomm_create_socket_ex
4093 void bt_event_callback(int event, bluetooth_event_param_t* param)
4097 case BLUETOOTH_EVENT_RFCOMM_CONNECTED:
4099 bluetooth_rfcomm_connection_t *conn_ind =
4100 (bluetooth_rfcomm_connection_t *)param->param_data;
4102 printf("\nConnected from FD %d", conn_ind->socket_fd);
4110 fd = bluetooth_rfcomm_create_socket_ex(rfcomm_test_uuid);
4111 ret = bluetooth_rfcomm_listen_and_accept_ex(rfcomm_test_uuid, 1, bus_name, path);
4116 int bluetooth_rfcomm_listen_and_accept_ex(const char *uuid, int max_pending_connection, const char *bus_name, const char *path);
4119 * @fn int bluetooth_rfcomm_listen(int socket_fd,int max_pending_connection)
4120 * @brief Rfcomm socket listen
4123 * This API make rfcomm socket listen and accept with socket. We will call this API immediatly
4124 * after the bluetooth_rfcomm_create_socket API.
4125 * This API listen for the incomming connection and once it receives a connection, it will give
4126 * BLUETOOTH_EVENT_RFCOMM_AUTHORIZE
4127 * event to the application. This is an Asynchronous API call.
4130 * @return BLUETOOTH_ERROR_NONE - Success \n
4131 * BLUETOOTH_ERROR_INVALID_PARAM - Invalid parameter \n
4132 * BLUETOOTH_ERROR_CONNECTION_ERROR - Listen failed \n
4134 * @param[in] int socket_fd
4135 * @param[in] max pending connection.
4138 * @see bluetooth_rfcomm_create_socket
4141 void bt_event_callback(int event, bluetooth_event_param_t* param)
4145 case BLUETOOTH_EVENT_RFCOMM_AUTHORIZE:
4147 char *name = (char *)param->param_data;
4149 printf("\nConnected from %s", name);
4151 bluetooth_rfcomm_accept_connection();
4159 fd = bluetooth_rfcomm_create_socket(rfcomm_test_uuid);
4160 ret = bluetooth_rfcomm_listen(fd, 1);
4164 int bluetooth_rfcomm_listen(int socket_fd, int max_pending_connection);
4167 * @fn int bluetooth_rfcomm_accept_connection()
4168 * @brief Accepts the authorization request indicated by the event
4169 * BLUETOOTH_EVENT_RFCOMM_AUTHORIZE.
4171 * This function is a synchronous call.
4173 * @return BLUETOOTH_ERROR_NONE - Success \n
4174 * BLUETOOTH_ERROR_INTERNAL - Internal error \n
4176 * @param[in] the socket fd of the server
4177 * @param[out] the socket fd of the client
4181 * @see bluetooth_rfcomm_reject_connection
4183 int bluetooth_rfcomm_accept_connection(int server_fd);
4186 * @fn int bluetooth_rfcomm_reject_connection()
4187 * @brief Rejects the authorization request indicated by the event
4188 * BLUETOOTH_EVENT_RFCOMM_AUTHORIZE.
4190 * This function is a synchronous call.
4192 * @return BLUETOOTH_ERROR_NONE - Success \n
4193 * BLUETOOTH_ERROR_INTERNAL - Internal error \n
4195 * @param[in] the socket fd of the server
4199 * @see bluetooth_rfcomm_accept_connection
4201 int bluetooth_rfcomm_reject_connection(int server_fd);
4204 * @fn gboolean bluetooth_rfcomm_is_server_uuid_available(const char *uuid)
4205 * @brief Informs whether rfcomm server uuid is available or not.
4207 * This function is a synchronous call.
4209 * @return TRUE - RFCOMM uuid is available \n
4210 * FALSE - RFCOMM uuid is not available \n
4212 * @param[in] uuid UUID string
4218 gboolean bluetooth_rfcomm_is_server_uuid_available(const char *uuid);
4221 * @fn int bluetooth_rfcomm_connect(const bluetooth_device_address_t *remote_bt_address,
4222 * const char *remote_uuid)
4223 * @brief Connect to the remote device rfcomm *
4225 * Connect to a specific RFCOMM based service on a remote device UUID. This is a Async call. Once
4226 * the connection is successful callback BLUETOOTH_EVENT_RFCOMM_CONNECTED events is generated,
4227 * which contains the socket_fd, device role (RFCOMM_ROLE_SERVER/RFCOMM_ROLE_CLIENT), device addess
4228 * etc. The socket_fd can be further used to send the data. It better to do a sevice search before
4229 * initiating a connection.
4231 * @return BLUETOOTH_ERROR_NONE - Success \n
4232 * BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Device is not enabled \n
4233 * BLUETOOTH_ERROR_INVALID_PARAM - Invalid parameter \n
4234 * BLUETOOTH_ERROR_CONNECTION_BUSY - Connection in progress \n
4235 * BLUETOOTH_ERROR_INTERNAL - Internal Error\n
4236 * @param[in] bluetooth_device_address_t remote bt_address
4237 * @param[in] char remote uuid
4239 * @see bluetooth_rfcomm_disconnect, bluetooth_rfcomm_write, bluetooth_search_service
4243 void bt_event_callback(int event, bluetooth_event_param_t *param)
4247 case BLUETOOTH_EVENT_SERVICE_SEARCHED:
4249 if (param->result >= BLUETOOTH_ERROR_NONE)
4251 bt_sdp_info_t *bt_sdp_info=param->param_data;
4253 printf("Dev add = %2.2X:%2.2X:%2.2X:%2.2X:%2.2X:%2.2X\n",
4254 bt_sdp_info->device_addr.addr[0],
4255 bt_sdp_info->device_addr.addr[1],
4256 bt_sdp_info->device_addr.addr[2],
4257 bt_sdp_info->device_addr.addr[3],
4258 bt_sdp_info->device_addr.addr[4],
4259 bt_sdp_info->device_addr.addr[5]);
4261 printf("Supported service list:\n");
4262 for(i=0; i<bt_sdp_info->service_index; i++)
4264 bt_sdp_info->service_list_array[i]);
4267 //ret = bluetooth_rfcomm_connect(bt_sdp_info->device_addr,
4268 //rfcomm_test_uuid);
4272 case BLUETOOTH_EVENT_RFCOMM_CONNECTED:
4274 bluetooth_rfcomm_connection_t *conn_ind =
4275 (bluetooth_rfcomm_connection_t *)param->param_data;
4277 printf("\nConnected from FD %d, Role = %s", conn_ind->socket_fd,
4278 (conn_ind->device_role == RFCOMM_ROLE_SERVER) ?
4279 "SERVER" : "CLIENT");
4284 bluetooth_device_address_t remote_address = {{0},};
4285 remote_address.addr[0] = 0x0; remote_address.addr[1] = 0x0A; remote_address.addr[2] = 0x3A;
4286 remote_address.addr[3]= 0x54; remote_address.addr[4] = 0x19; remote_address.addr[5]= 0x36;
4287 ret = bluetooth_search_service(&remote_address);
4289 printf("Seach failed, Reason = %d", ret);
4291 printf("Search Success, Ret = %d", ret);
4293 ret = bluetooth_rfcomm_connect(&remote_address, rfcomm_test_uuid);
4295 printf("Connection failed, Reason = %d", ret);
4297 printf("Connection Success, Ret = %d", ret);
4301 int bluetooth_rfcomm_connect(const bluetooth_device_address_t *remote_bt_address,
4302 const char *remote_uuid);
4305 * @fn int bluetooth_rfcomm_disconnect(int socket_fd)
4306 * @brief Disconnect rfcomm connection
4309 * Disconnect a specific(device node fd) RFCOMM connection. This is a Synchronous call and there
4310 * is no cabbback events for this API. We have to provice the valid client fd to disconnect from the
4313 * @return BLUETOOTH_ERROR_NONE - Success \n
4314 * BLUETOOTH_ERROR_INVALID_PARAM - Invalid parameter \n
4315 * BLUETOOTH_ERROR_NOT_CONNECTED - Not connected \n
4316 * @param[in] char remote bt_address
4319 * @see bluetooth_rfcomm_connect
4323 ret = bluetooth_rfcomm_disconnect(g_ret_fd);
4325 printf("Disconnection failed");
4327 printf("Disconnection Success");
4332 int bluetooth_rfcomm_disconnect(int socket_fd);
4335 * @fn int bluetooth_rfcomm_write (int fd, const char *buff, int length)
4336 * @brief Write to rfcomm connection
4339 * This API is used to send the data over the rfcomm connection. This is a synchronous API. The same
4340 * API is used to send the data for server and the client.
4342 * @return BLUETOOTH_ERROR_NONE - Success \n
4343 * BLUETOOTH_ERROR_INVALID_PARAM - Invalid parameter \n
4344 * BLUETOOTH_ERROR_NOT_IN_OPERATION - The Fd is currently not in operation\n
4346 * @param[in] const char *buff Data buffer to send
4347 * @param[in] int length Length of the data
4350 * @see bluetooth_rfcomm_connect
4353 char *buff = "Test data 123456789"
4354 ret = bluetooth_rfcomm_write(g_ret_fd, buff, 15);
4356 printf("Send failed");
4358 printf("Send success");
4362 int bluetooth_rfcomm_write(int fd, const char *buf, int length);
4365 * @fn gboolean bluetooth_rfcomm_is_client_connected(void)
4366 * @brief Informs whether rfcomm client is connected.
4368 * This function is a synchronous call.
4370 * @return TRUE - RFCOMM client is connected \n
4371 * FALSE - RFCOMM client is not connected \n
4377 gboolean bluetooth_rfcomm_is_client_connected(void);
4378 int bluetooth_rfcomm_client_is_connected(const bluetooth_device_address_t *device_address, gboolean *connected);
4379 int bluetooth_rfcomm_server_is_connected(const bluetooth_device_address_t *device_address, gboolean *connected);
4382 * @fn int bluetooth_network_activate_server(void)
4383 * @brief Activate the NAP (Network Access Point) service
4385 * This function is a asynchronous call.
4386 * The activate server request is responded by BLUETOOTH_EVENT_NETWORK_SERVER_ACTIVATED event.
4388 * @return BLUETOOTH_ERROR_NONE - Success \n
4389 * BLUETOOTH_ERROR_INVALID_PARAM - Invalid parameter \n
4390 * BLUETOOTH_ERROR_INTERNAL - Internal Error \n
4391 * BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Not enabled \n
4394 * @see bluetooth_network_deactivate_server
4397 int bluetooth_network_activate_server(void);
4400 * @fn int bluetooth_network_deactivate_server(void)
4401 * @brief Deactivate the NAP (Network Access Point) service
4403 * This function is a asynchronous call.
4404 * The deactivate server request is responded by BLUETOOTH_EVENT_NETWORK_SERVER_DEACTIVATED event.
4406 * @return BLUETOOTH_ERROR_NONE - Success \n
4407 * BLUETOOTH_ERROR_INVALID_PARAM - Invalid parameter \n
4408 * BLUETOOTH_ERROR_INTERNAL - Internal Error \n
4409 * BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Not enabled \n
4412 * @see bluetooth_network_activate_server
4415 int bluetooth_network_deactivate_server(void);
4418 * @fn int bluetooth_network_connect(const bluetooth_device_address_t *device_address,
4419 * bluetooth_network_role_t role,
4421 * @brief Connect the network server in the peer
4423 * This function is a asynchronous call.
4424 * The network connect request is responded by BLUETOOTH_EVENT_NETWORK_CONNECTED event.
4426 * @return BLUETOOTH_ERROR_NONE - Success \n
4427 * BLUETOOTH_ERROR_INVALID_PARAM - Invalid parameter \n
4428 * BLUETOOTH_ERROR_INTERNAL - Internal Error \n
4429 * BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Not enabled \n
4432 * @param[in] device_address This indicates an address of the device with which the pairing
4433 * should be initiated
4434 * @param[in] role The role to connect. PANU / GN / NAP / CUSTOM. If use the CUSTOM value,
4435 * need to use the third parameter.
4436 * @param[in] custom_uuid If use the CUSTOM value in second parameter, use this parameter to
4437 * connect. UUID string
4439 * @see bluetooth_network_disconnect
4441 int bluetooth_network_connect(const bluetooth_device_address_t *device_address,
4442 bluetooth_network_role_t role, char *custom_uuid);
4445 * @fn int bluetooth_network_disconnect(const bluetooth_device_address_t *device_address,
4446 * bluetooth_network_role_t role,
4447 * char *custom_uuid)
4448 * @brief Connect the network server in the peer
4450 * This function is a asynchronous call.
4451 * The network disconnect request is responded by BLUETOOTH_EVENT_NETWORK_CONNECTED event.
4453 * @return BLUETOOTH_ERROR_NONE - Success \n
4454 * BLUETOOTH_ERROR_INVALID_PARAM - Invalid parameter \n
4455 * BLUETOOTH_ERROR_INTERNAL - Internal Error \n
4456 * BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Not enabled \n
4459 * @param[in] device_address This indicates an address of the device with which the pairing
4460 * should be initiated
4462 * @see bluetooth_network_connect
4464 int bluetooth_network_disconnect(const bluetooth_device_address_t *device_address);
4467 * @fn int bluetooth_network_server_disconnect(const bluetooth_device_address_t *device_address)
4468 * @brief Disconnect the device from the network
4470 * This function is an asynchronous call.
4471 * The network server disconnect request is responded by
4472 * BLUETOOTH_EVENT_NETWORK_SERVER_DISCONNECTED event.
4474 * @return BLUETOOTH_ERROR_NONE - Success \n
4475 * BLUETOOTH_ERROR_INVALID_PARAM - Invalid parameter \n
4476 * BLUETOOTH_ERROR_INTERNAL - Internal Error \n
4477 * BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Not enabled \n
4480 * @param[in] device_address This indicates an address of the connected client device
4482 * @see bluetooth_network_activate_server
4484 int bluetooth_network_server_disconnect(const bluetooth_device_address_t *device_address);
4489 * @fn int bluetooth_hdp_activate(unsigned short data_type,
4490 * bt_hdp_role_type_t role,
4491 * bt_hdp_qos_type_t channel_type,
4492 * char **app_handle)
4493 * @brief Activate the HDP service for a particular data type
4495 * This function is a synchronous call.
4497 * @return BLUETOOTH_ERROR_NONE - Success \n
4498 * BLUETOOTH_ERROR_INVALID_PARAM - Invalid parameter \n
4499 * BLUETOOTH_ERROR_INTERNAL - Internal Error \n
4500 * BLUETOOTH_ERROR_NO_RESOURCES - Not resource available \n
4503 * @param[in] data_type The data type against corresponding service
4504 * @param[in] role The role of HDP. HDP_ROLE_SOURCE/HDP_ROLE_SINK.
4505 * @param[in] channel_type The QOS type for the channel.
4506 * HDP_QOS_RELIABLE/HDP_QOS_STREAMING/HDP_QOS_ANY.
4507 * For role = HDP_ROLE_SINK, the channel_type
4508 * should be HDP_QOS_ANY.
4509 * @param[out] app_handle The application handler against corresponding service
4511 * @see bluetooth_hdp_deactivate
4513 int bluetooth_hdp_activate(unsigned short data_type,
4514 bt_hdp_role_type_t role,
4515 bt_hdp_qos_type_t channel_type,
4518 * @fn int bluetooth_hdp_deactivate(const char *app_handle)
4519 * @brief Deactivate the HDP service for a particular service using the handler
4521 * This function is a synchronous call.
4523 * @return BLUETOOTH_ERROR_NONE - Success \n
4524 * BLUETOOTH_ERROR_INVALID_PARAM - Invalid parameter \n
4525 * BLUETOOTH_ERROR_INTERNAL - Internal Error \n
4526 * BLUETOOTH_ERROR_NO_RESOURCES - Not resource available \n
4529 * @param[in] app_handle The application handler against corresponding service
4531 * @see bluetooth_hdp_deactivate
4533 int bluetooth_hdp_deactivate(const char *app_handle);
4536 * @fn int bluetooth_hdp_send_data(unsigned int channel_id,
4537 * const char *buffer, unsigned int size)
4538 * @brief Send data to the remote HDP device
4540 * This function is a synchronous call.
4542 * @return BLUETOOTH_ERROR_NONE - Success \n
4543 * BLUETOOTH_ERROR_INVALID_PARAM - Invalid parameter \n
4544 * BLUETOOTH_ERROR_INTERNAL - Internal Error \n
4545 * BLUETOOTH_ERROR_NO_RESOURCES - Not resource available \n
4546 * BLUETOOTH_ERROR_NOT_IN_OPERATION - FD is invalid \n
4549 * @param[in] channel_id The channel id for the connection.
4550 * @param[in] buffer The pdu buffer.
4551 * @param[in] size Size of the buffer.
4553 * @see bluetooth_hdp_connect
4555 int bluetooth_hdp_send_data(unsigned int channel_id,
4556 const char *buffer, unsigned int size);
4558 * @fn int bluetooth_hdp_connect(const char *app_handle,
4559 * bt_hdp_qos_type_t channel_type,
4560 * const bluetooth_device_address_t *device_address)
4561 * @brief Connect to the remote device(Mainly used by source)
4563 * This function is a asynchronous call.
4564 * The HDP activate is responded by BLUETOOTH_EVENT_HDP_CONNECTED event.
4566 * @return BLUETOOTH_ERROR_NONE - Success \n
4567 * BLUETOOTH_ERROR_INVALID_PARAM - Invalid parameter \n
4568 * BLUETOOTH_ERROR_INTERNAL - Internal Error \n
4569 * BLUETOOTH_ERROR_NO_RESOURCES - Not resource available \n
4570 * BLUETOOTH_ERROR_MEMORY_ALLOCATION -Memory allocation failed \n
4573 * @param[in] app_handle The application handler against corresponding service
4574 * @param[in] channel_type The QOS type for the channel.
4575 * HDP_QOS_RELIABLE/HDP_QOS_STREAMING.
4576 * @param[in] device_address The remote device Bd address.
4579 * @see bluetooth_hdp_disconnect
4581 int bluetooth_hdp_connect(const char *app_handle,
4582 bt_hdp_qos_type_t channel_type,
4583 const bluetooth_device_address_t *device_address);
4585 * @fn int bluetooth_hdp_disconnect(unsigned int channel_id,
4586 * const bluetooth_device_address_t *device_address)
4587 * @brief Disconnect from the remote device(Mainly used by source)
4589 * This function is a asynchronous call.
4590 * The HDP activate is responded by BLUETOOTH_EVENT_HDP_DISCONNECTED event.
4592 * @return BLUETOOTH_ERROR_NONE - Success \n
4593 * BLUETOOTH_ERROR_INVALID_PARAM - Invalid parameter \n
4594 * BLUETOOTH_ERROR_INTERNAL - Internal Error \n
4595 * BLUETOOTH_ERROR_NO_RESOURCES - Not resource available \n
4596 * BLUETOOTH_ERROR_MEMORY_ALLOCATION -Memory allocation failed \n
4599 * @param[in] channel_id The channel id for the connection.
4600 * @param[in] device_address The remote device Bd address.
4603 * @see bluetooth_hdp_connect
4605 int bluetooth_hdp_disconnect(unsigned int channel_id,
4606 const bluetooth_device_address_t *device_address);
4610 * @fn int bluetooth_opc_init(void)
4611 * @brief Initialize OPP client.
4613 * This function is a synchronous call.
4614 * No event corresponding to this api
4616 * @return BLUETOOTH_ERROR_NONE - Success \n
4617 * BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Device is not enabled \n
4618 * BLUETOOTH_ERROR_INTERNAL - Internal Error \n
4619 * BLUETOOTH_ERROR_NO_RESOURCES - Not resource available \n
4620 * BLUETOOTH_ERROR_ACCESS_DENIED -Memory allocation failed \n
4625 * @see bluetooth_opc_deinit
4627 int bluetooth_opc_init(void);
4630 * @fn int bluetooth_opc_deinit(void)
4631 * @brief Deinitialize OPP client.
4633 * This function is a synchronous call.
4634 * No event corresponding to this api
4636 * @return BLUETOOTH_ERROR_NONE - Success \n
4637 * BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Device is not enabled \n
4638 * BLUETOOTH_ERROR_ACCESS_DENIED -Memory allocation failed \n
4643 * @see bluetooth_opc_init
4646 int bluetooth_opc_deinit(void);
4649 * @fn int bluetooth_opc_push_files(bluetooth_device_address_t *remote_address,
4650 char **file_name_array)
4651 * @brief Send multiple files to a remote device.
4653 * This function is a asynchronous call.
4654 * This api is responded by BLUETOOTH_EVENT_OPC_CONNECTED event.
4656 * @return BLUETOOTH_ERROR_NONE - Success \n
4657 * BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Device is not enabled \n
4658 * BLUETOOTH_ERROR_INVALID_PARAM - Invalid parameter \n
4659 * BLUETOOTH_ERROR_INTERNAL - Internal Error \n
4660 * BLUETOOTH_ERROR_NO_RESOURCES - Not resource available \n
4661 * BLUETOOTH_ERROR_IN_PROGRESS -Already one push in progress \n
4662 * BLUETOOTH_ERROR_ACCESS_DENIED - Not allowed by MDM policy \n
4665 * @param[in] device_address The remote device Bd address.
4666 * @param[in] file_name_array Array of filepaths to be sent.
4669 * @see bluetooth_opc_cancel_push
4672 int bluetooth_opc_push_files(bluetooth_device_address_t *remote_address,
4673 char **file_name_array);
4676 * @fn int bluetooth_opc_cancel_push(void)
4677 * @brief Cancels the ongoing file push.
4679 * This function is a asynchronous call.
4680 * This api is responded with either BLUETOOTH_EVENT_OPC_CONNECTED or
4681 * BLUETOOTH_EVENT_OPC_TRANSFER_COMPLETED event.
4683 * @return BLUETOOTH_ERROR_NONE - Success \n
4684 * BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Device is not enabled \n
4685 * BLUETOOTH_ERROR_ACCESS_DENIED - No push in progress \n
4690 * @see bluetooth_opc_push_files
4693 int bluetooth_opc_cancel_push(void);
4696 * @fn gboolean bluetooth_opc_session_is_exist(void)
4697 * @brief Informs whether opc session exists or not.
4699 * This function is a synchronous call.
4701 * @return TRUE - OPC session exists \n
4702 * FALSE - OPC session does not exist \n
4710 gboolean bluetooth_opc_session_is_exist(void);
4713 * @fn int bluetooth_opc_is_sending(gboolean *is_sending)
4714 * @brief Informs whether opc session exists or not.
4716 * This function is a synchronous call.
4718 * @return BLUETOOTH_ERROR_NONE - Success \n
4719 * BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Not enabled \n
4720 * BLUETOOTH_ERROR_INTERNAL \n
4723 * @param[out] is_sending The sending status: (@c TRUE = in sending , @c false = not in sending)
4728 int bluetooth_opc_is_sending(gboolean *is_sending);
4731 * @fn int bluetooth_opp_get_transfer_progress(bluetooth_opp_transfer_type_t transfer_type,
4732 int transfer_id, unsigned char *progress)
4733 * @brief Gets the percentage progress for ongoing transfers.
4735 * This function is a synchronous call.
4737 * @return BLUETOOTH_ERROR_NONE - Success \n
4738 * BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Not enabled \n
4739 * BLUETOOTH_ERROR_NOT_FOUND - Not found \n
4742 * @param[in] transfer_type Transfer Type: (@c BLUETOOTH_TRANSFER_INBOUND = receiving , @c BLUETOOTH_TRANSFER_OUTBOUND = sending)
4743 * @param[in] transfer_id Transfer ID
4744 * @param[out] progress Percentage Progress
4748 int bluetooth_opp_get_transfer_progress(bluetooth_opp_transfer_type_t transfer_type,
4749 int transfer_id, unsigned char *progress);
4752 * @fn int bluetooth_obex_server_init(const char *dst_path)
4753 * @brief Initialize OPP and FTP server.
4755 * This function is a synchronous call.
4756 * No event corresponding to this api
4758 * @return BLUETOOTH_ERROR_NONE - Success \n
4759 * BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Device is not enabled \n
4760 * BLUETOOTH_ERROR_NO_RESOURCES - Not resource available \n
4761 * BLUETOOTH_ERROR_AGENT_ALREADY_EXIST - Obex agent already registered \n
4762 * BLUETOOTH_ERROR_INVALID_PARAM - Invalid parameter \n
4765 * @param[in] dst_path OPS destination file path.
4767 * @see bluetooth_obex_server_deinit
4769 int bluetooth_obex_server_init(const char *dst_path);
4773 * @fn int bluetooth_obex_server_deinit(void)
4774 * @brief Deinitialize OPP and FTP server.
4776 * This function is a synchronous call.
4777 * No event corresponding to this api
4779 * @return BLUETOOTH_ERROR_NONE - Success \n
4780 * BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Device is not enabled \n
4781 * BLUETOOTH_ERROR_AGENT_DOES_NOT_EXIST -Obex agent not registered \n
4786 * @see bluetooth_obex_server_init
4788 int bluetooth_obex_server_deinit(void);
4792 * @fn gboolean bluetooth_obex_server_is_activated(void)
4793 * @brief Informs whether obex server is activated or not.
4795 * This function is a synchronous call.
4797 * @return TRUE - OBEX server is activated \n
4798 * FALSE - OBEX server is not activated \n
4805 gboolean bluetooth_obex_server_is_activated(void);
4809 * @fn int bluetooth_obex_server_init_without_agent(const char *dst_path)
4810 * @brief Initialize OPP and FTP server without the conneciton authorization of the agent
4812 * This function is a synchronous call.
4813 * No event corresponding to this api
4815 * @return BLUETOOTH_ERROR_NONE - Success \n
4816 * BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Device is not enabled \n
4817 * BLUETOOTH_ERROR_NO_RESOURCES - Not resource available \n
4818 * BLUETOOTH_ERROR_AGENT_ALREADY_EXIST - Obex agent already registered \n
4819 * BLUETOOTH_ERROR_INVALID_PARAM - Invalid parameter \n
4823 * @param[in] dst_path OPS destination file path.
4825 * @see bluetooth_obex_server_deinit_without_agent
4827 int bluetooth_obex_server_init_without_agent(const char *dst_path);
4831 * @fn int bluetooth_obex_server_deinit_without_agent(void)
4832 * @brief Deinitialize OPP and FTP server without the conneciton authorization of the agent
4834 * This function is a synchronous call.
4835 * No event corresponding to this api
4837 * @return BLUETOOTH_ERROR_NONE - Success \n
4838 * BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Device is not enabled \n
4839 * BLUETOOTH_ERROR_AGENT_DOES_NOT_EXIST -Obex agent not registered \n
4844 * @see bluetooth_obex_server_init_without_agent
4846 int bluetooth_obex_server_deinit_without_agent(void);
4850 * @fn int bluetooth_obex_server_accept_connection(void)
4851 * @brief Accepts the authorization request indicated by the event
4852 * BLUETOOTH_EVENT_OBEX_SERVER_CONNECTION_AUTHORIZE.
4854 * This function is a synchronous call.
4856 * @return BLUETOOTH_ERROR_NONE - Success \n
4857 * BLUETOOTH_ERROR_NO_RESOURCES - Not resource available \n
4858 * BLUETOOTH_ERROR_INTERNAL - Internal error \n
4862 * @see bluetooth_obex_server_reject_authorize
4864 int bluetooth_obex_server_accept_connection(void);
4868 * @fn int bluetooth_obex_server_reject_connection(void)
4869 * @brief Rejects the authorization request indicated by the event
4870 * BLUETOOTH_EVENT_OBEX_SERVER_CONNECTION_AUTHORIZE.
4872 * This function is a synchronous call.
4874 * @return BLUETOOTH_ERROR_NONE - Success \n
4875 * BLUETOOTH_ERROR_NO_RESOURCES - Not resource available \n
4876 * BLUETOOTH_ERROR_INTERNAL - Internal error \n
4880 * @see bluetooth_obex_server_reject_authorize
4882 int bluetooth_obex_server_reject_connection(void);
4886 * @fn int bluetooth_obex_server_accept_authorize(const char *filename)
4887 * @brief Accepts the authorization request indicated by the event
4888 * BLUETOOTH_EVENT_OBEX_SERVER_TRANSFER_AUTHORIZE.
4890 * This function is a asynchronous call.
4891 * This api will be responded with the event BLUETOOTH_EVENT_OBEX_SERVER_TRANSFER_STARTED.
4893 * @return BLUETOOTH_ERROR_NONE - Success \n
4894 * BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Device is not enabled \n
4895 * BLUETOOTH_ERROR_INVALID_PARAM - Invalid parameter \n
4896 * BLUETOOTH_ERROR_AGENT_DOES_NOT_EXIST -Obex agent not registered \n
4899 * @param[in] filename Authorized filename.
4902 * @see bluetooth_obex_server_reject_authorize
4905 int bluetooth_obex_server_accept_authorize(const char *filename);
4908 * @fn int bluetooth_obex_server_reject_authorize(void)
4909 * @brief Reject the authorization request indicated by the event
4910 * BLUETOOTH_EVENT_OBEX_SERVER_TRANSFER_AUTHORIZE.
4912 * This function is a asynchronous call.
4913 * No event for this api..
4915 * @return BLUETOOTH_ERROR_NONE - Success \n
4916 * BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Device is not enabled \n
4917 * BLUETOOTH_ERROR_AGENT_DOES_NOT_EXIST -Obex agent not registered \n
4922 * @see bluetooth_obex_server_accept_authorize
4925 int bluetooth_obex_server_reject_authorize(void);
4928 * @fn int bluetooth_obex_server_set_destination_path(const char *dst_path)
4929 * @brief Set the OPS destination file path..
4931 * This function is a asynchronous call.
4932 * No event for this api..
4934 * @return BLUETOOTH_ERROR_NONE - Success \n
4935 * BLUETOOTH_ERROR_NO_RESOURCES - Not resource available \n
4936 * BLUETOOTH_ERROR_AGENT_DOES_NOT_EXIST -Obex agent not registered \n
4937 * BLUETOOTH_ERROR_INVALID_PARAM - Invalid Param \n
4940 * @param[in] dst_path OPS destination file path.
4946 int bluetooth_obex_server_set_destination_path(const char *dst_path);
4949 * @fn int bluetooth_obex_server_set_root(const char *root)
4950 * @brief Set the FTS root folder..
4952 * This function is a asynchronous call.
4953 * No event for this api..
4955 * @return BLUETOOTH_ERROR_NONE - Success \n
4956 * BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Device is not enabled \n
4957 * BLUETOOTH_ERROR_NO_RESOURCES - Not resource available \n
4958 * BLUETOOTH_ERROR_ACCESS_DENIED - Operation not allowed \n
4959 * BLUETOOTH_ERROR_INVALID_PARAM - Invalid parameter \n
4960 * BLUETOOTH_ERROR_INTERNAL - Internal Error \n
4963 * @param[in] root FTS root folder.
4969 int bluetooth_obex_server_set_root(const char *root);
4972 * @fn int bluetooth_obex_server_cancel_transfer(int transfer_id)
4973 * @brief Cancel the transfer on server
4975 * This function is an asynchronous call.
4976 * If the function call that cancels transfer is successful, the application would receive
4977 * BLUETOOTH_EVENT_TRANSFER_COMPLETED event through registered callback
4978 * function with an error code BLUETOOTH_ERROR_CANCEL. In the case of failure
4979 * the error code will be BLUETOOTH_ERROR_NONE
4981 * @return BLUETOOTH_ERROR_NONE - Success \n
4982 * BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Not enabled \n
4983 * BLUETOOTH_ERROR_AGENT_DOES_NOT_EXIST -Obex agent not registered \n
4984 * BLUETOOTH_ERROR_INTERNAL - internal error (proxy does not exist) \n
4985 * BLUETOOTH_ERROR_NOT_FOUND - The transfer is not found \n
4988 * @param[in] transfer_id transfer ID
4993 int bluetooth_obex_server_cancel_transfer(int transfer_id);
4997 * @fn int bluetooth_obex_server_cancel_all_transfers(void)
4998 * @brief Cancel the transfer on server
5000 * This function is an asynchronous call.
5001 * If the function call that cancels transfer is successful, the application would receive
5002 * BLUETOOTH_EVENT_TRANSFER_COMPLETED event through registered callback
5003 * function with an error code BLUETOOTH_ERROR_CANCEL. In the case of failure
5004 * the error code will be BLUETOOTH_ERROR_NONE
5006 * @return BLUETOOTH_ERROR_NONE - Success \n
5007 * BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Not enabled \n
5008 * BLUETOOTH_ERROR_AGENT_DOES_NOT_EXIST -Obex agent not registered \n
5009 * BLUETOOTH_ERROR_INTERNAL - internal error (proxy does not exist) \n
5010 * BLUETOOTH_ERROR_NOT_FOUND - The transfer is not found \n
5017 int bluetooth_obex_server_cancel_all_transfers(void);
5021 * @fn int bluetooth_obex_server_is_receiving(gboolean *is_receiving)
5022 * @brief Informs whether obex server is receiving or not.
5024 * This function is a synchronous call.
5026 * @return BLUETOOTH_ERROR_NONE - Success \n
5027 * BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Not enabled \n
5028 * BLUETOOTH_ERROR_INTERNAL \n
5031 * @param[out] is_receiving The receiving status: (@c TRUE = in receiving , @c false = not in receiving)
5036 int bluetooth_obex_server_is_receiving(gboolean *is_receiving);
5040 * @fn int bluetooth_map_client_init(void)
5041 * @brief Initialize MAP client.
5043 * This function is a synchronous call.
5044 * No event corresponding to this api
5046 * @return BLUETOOTH_ERROR_NONE - Success \n
5047 * BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Device is not enabled \n
5048 * BLUETOOTH_ERROR_INTERNAL - Internal Error \n
5049 * BLUETOOTH_ERROR_NO_RESOURCES - Not resource available \n
5050 * BLUETOOTH_ERROR_ACCESS_DENIED -Memory allocation failed \n
5055 * @see bluetooth_map_client_deinit
5057 int bluetooth_map_client_init(void);
5059 int bluetooth_map_client_deinit(void);
5061 int bluetooth_map_client_create_session(bt_map_client_session_info_s *session);
5063 int bluetooth_map_client_destroy_session(bt_map_client_session_info_s *session);
5065 int bluetooth_map_client_set_folder(bt_map_client_session_info_s *session, const char *name);
5067 int bluetooth_map_client_list_folders(bt_map_client_session_info_s *session,
5068 bt_map_client_list_folders_filter_t *filter);
5071 * @fn int bluetooth_map_client_list_filter_fields(bt_map_session_info_s* session)
5072 * @brief Return all available fields that can be used in Fields filter.
5074 * This function is a asynchronous call.
5076 * @return BLUETOOTH_ERROR_NONE - Success \n
5077 * BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Device is not enabled \n
5078 * BLUETOOTH_ERROR_INTERNAL - Update inbox failed \n
5081 * @param[in] session Information about session.
5084 int bluetooth_map_client_list_filter_fields(bt_map_client_session_info_s *session);
5086 int bluetooth_map_client_list_messages(bt_map_client_session_info_s *session,
5088 bt_map_client_list_messages_filter_t *filter);
5090 int bluetooth_map_client_update_inbox(bt_map_client_session_info_s *session);
5092 int bluetooth_map_client_push_message(bt_map_client_session_info_s *session,
5093 const char *source_file,
5095 bt_map_client_push_message_args_t *args);
5097 int bluetooth_map_client_get_message(bt_map_client_session_info_s *session,
5098 const bt_map_client_message_object_t message_object,
5099 const char *target_file,
5104 * @fn int bluetooth_oob_read_local_data(bt_oob_data_t *local_oob_data)
5105 * @brief Read the local Hash and Randmizer.
5107 * This function is a synchronous call.
5109 * @return BLUETOOTH_ERROR_NONE - Success \n
5110 * BLUETOOTH_ERROR_INTERNAL - Internal Error \n
5114 * @param[out] local_oob_data - Pointer to the local OOB data
5120 int bluetooth_oob_read_local_data(bt_oob_data_t *local_oob_data);
5124 * @fn int bluetooth_oob_add_remote_data(
5125 * const bluetooth_device_address_t *remote_device_address,
5126 * bluetooth_bdaddr_type_e address_type,
5127 * bt_oob_data_t *oob_data)
5128 * @brief Add/updated the remote device Hash and Randmizer.
5130 * This function is a synchronous call.
5131 * No event for this api..
5133 * @return BLUETOOTH_ERROR_NONE - Success \n
5134 * BLUETOOTH_ERROR_INTERNAL - Internal Error \n
5137 * @param[in] remote_device_address - Remote device address
5138 * address_type - bdaddr type
5139 * remote_oob_data - Ponter to Hash and Randomizer oob data structure
5145 int bluetooth_oob_add_remote_data(
5146 const bluetooth_device_address_t *remote_device_address,
5147 bluetooth_bdaddr_type_e address_type,
5148 bt_oob_data_t *remote_oob_data);
5152 * @fn int bluetooth_oob_remove_remote_data(
5153 * const bluetooth_device_address_t *remote_device_address)
5154 * @brief Delete the Hash and Randomizer w.r.t the remote device address.
5156 * This function is a synchronous call.
5157 * No event for this api..
5159 * @return BLUETOOTH_ERROR_NONE - Success \n
5160 * BLUETOOTH_ERROR_INTERNAL - Internal Error \n
5163 * @param[in] remote_device_address - Remote device address
5169 int bluetooth_oob_remove_remote_data(
5170 const bluetooth_device_address_t *remote_device_address);
5173 * @fn int bluetooth_gatt_get_primary_services(const bluetooth_device_address_t *address,
5174 * bt_gatt_handle_info_t *prim_svc);
5176 * @brief Gets the GATT based primary services handle supported by remote device
5178 * This function is a synchronous call.
5179 * The output parameter needs to be freed by calling bluetooth_gatt_free_primary_services()
5181 * @return BLUETOOTH_ERROR_NONE - Success \n
5182 * BLUETOOTH_ERROR_INTERNAL - Internal Error \n
5183 * BLUETOOTH_ERROR_INVALID_PARAM -Invalid Parameters \n
5184 * BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is disabled \n
5187 * @param[in] address - Remote device address
5188 * @param[out] prim_svc - Structure containing remote service count and handle list.
5191 * @see bluetooth_gatt_free_primary_services()
5193 int bluetooth_gatt_get_primary_services(const bluetooth_device_address_t *address,
5194 bt_gatt_handle_info_t *prim_svc);
5197 * @fn int bluetooth_gatt_discover_service_characteristics(const char *service_handle)
5199 * @brief Discovers the characteristics of GATT based service of remote device
5201 * This function is an asynchronous call.
5202 * This API is responded with BLUETOOTH_EVENT_GATT_SVC_CHAR_DISCOVERED
5204 * @return BLUETOOTH_ERROR_NONE - Success \n
5205 * BLUETOOTH_ERROR_INTERNAL - Internal Error \n
5206 * BLUETOOTH_ERROR_INVALID_PARAM -Invalid Parameters \n
5207 * BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is disabled \n
5210 * @param[in] service_handle - Handle for remote service.
5215 int bluetooth_gatt_discover_service_characteristics(const char *service_handle);
5217 int bluetooth_gatt_set_service_change_watcher(
5218 const bluetooth_device_address_t *address, gboolean enable);
5221 * @fn int bluetooth_gatt_get_service_property(const char *service_handle,
5222 * bt_gatt_service_property_t *service);
5224 * @brief Gets the properties of GATT based service of remote device
5226 * This function is a synchronous call.
5227 * The output parameter needs to be freed by calling bluetooth_gatt_free_primary_services()
5229 * @return BLUETOOTH_ERROR_NONE - Success \n
5230 * BLUETOOTH_ERROR_INTERNAL - Internal Error \n
5231 * BLUETOOTH_ERROR_INVALID_PARAM -Invalid Parameters \n
5232 * BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is disabled \n
5235 * @param[in] service_handle - Handle for remote service.
5236 * @param[out] service - Structure containing remote service property.
5239 * @see bluetooth_gatt_free_service_property()
5241 int bluetooth_gatt_get_service_property(const char *service_handle,
5242 bt_gatt_service_property_t *service);
5245 * @fn int bluetooth_gatt_watch_characteristics(const char *service_handle, const char *svc_name)
5247 * @brief Register to GATT based service to receive value change notification/indication.
5249 * This function is a synchronous call.
5250 * No event for this api.
5252 * @return BLUETOOTH_ERROR_NONE - Success \n
5253 * BLUETOOTH_ERROR_INTERNAL - Internal Error \n
5254 * BLUETOOTH_ERROR_INVALID_PARAM -Invalid Parameters \n
5255 * BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is disabled \n
5258 * @param[in] service_handle - Handle for remote service.
5259 * @param[in] service_name - Friednly name of service uuid.
5264 int bluetooth_gatt_watch_characteristics(const char *service_handle, const char *svc_name);
5267 * @fn int bluetooth_gatt_unwatch_characteristics(const char *service_handle)
5269 * @brief Unregister GATT based service to receive value change notification/indication.
5271 * This function is a synchronous call.
5272 * No event for this api.
5274 * @return BLUETOOTH_ERROR_NONE - Success \n
5275 * BLUETOOTH_ERROR_INTERNAL - Internal Error \n
5276 * BLUETOOTH_ERROR_INVALID_PARAM -Invalid Parameters \n
5277 * BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is disabled \n
5280 * @param[in] service_handle - Handle for remote service.
5285 int bluetooth_gatt_unwatch_characteristics(const char *service_handle);
5288 * @fn int bluetooth_gatt_get_characteristics_property(const char *char_handle,
5289 * bt_gatt_char_property_t *characteristic);
5291 * @brief Provides characteristic value along with properties.
5293 * This function is a synchronous call.
5294 * The output parameter needs to be freed by calling bluetooth_gatt_free_char_property()
5296 * @return BLUETOOTH_ERROR_NONE - Success \n
5297 * BLUETOOTH_ERROR_INTERNAL - Internal Error \n
5298 * BLUETOOTH_ERROR_INVALID_PARAM -Invalid Parameters \n
5299 * BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is disabled \n
5302 * @param[in] char_handle - Handle for Characteristic property.
5303 * @param[out] characteristic - Structure containing remote characteristic property.
5306 * @see bluetooth_gatt_free_char_property()
5308 int bluetooth_gatt_get_characteristics_property(const char *char_handle,
5309 bt_gatt_char_property_t *characteristic);
5312 * @fn int bluetooth_gatt_get_char_descriptor_property(const char *char_handle,
5313 * bt_gatt_char_property_t *characteristic);
5315 * @brief Provides characteristic descriptor value along with its UUID.
5317 * This function is a synchronous call.
5318 * The output parameter needs to be freed by calling bluetooth_gatt_free_desc_property()
5320 * @return BLUETOOTH_ERROR_NONE - Success \n
5321 * BLUETOOTH_ERROR_INTERNAL - Internal Error \n
5322 * BLUETOOTH_ERROR_INVALID_PARAM -Invalid Parameters \n
5323 * BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is disabled \n
5326 * @param[in] desc_handle - Handle for Characteristic descriptor.
5327 * @param[out] descriptor - Structure containing remote characteristic descriptor property.
5330 * @see bluetooth_gatt_free_desc_property()
5332 int bluetooth_gatt_get_char_descriptor_property(const char *desc_handle,
5333 bt_gatt_char_descriptor_property_t *descriptor);
5337 * @fn int bluetooth_gatt_set_characteristics_value(const char *char_handle,
5338 * const guint8 *value, int length)
5340 * @brief Set characteristic value.
5342 * This function is a synchronous call.
5344 * @return BLUETOOTH_ERROR_NONE - Success \n
5345 * BLUETOOTH_ERROR_INTERNAL - Internal Error \n
5346 * BLUETOOTH_ERROR_INVALID_PARAM -Invalid Parameters \n
5347 * BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is disabled \n
5350 * @param[in] char_handle - Handle for Characteristic property.
5351 * @param[in] value - New value to set for characteristic property.
5352 * @param[in] length - Length of the value to be set.
5357 int bluetooth_gatt_set_characteristics_value(const char *char_handle,
5358 const guint8 *value, int length);
5361 * @fn int bluetooth_gatt_set_characteristics_value_by_type(const char *char_handle,
5362 * const guint8 *value, int length, guint8 write_type)
5364 * @brief Set characteristic value by write type.
5366 * This function is a synchronous call if write type is "write without resonse"
5367 * and it is an asynchronous call if write type is "write with response"
5369 * @return BLUETOOTH_ERROR_NONE - Success \n
5370 * BLUETOOTH_ERROR_INTERNAL - Internal Error \n
5371 * BLUETOOTH_ERROR_INVALID_PARAM -Invalid Parameters \n
5372 * BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is disabled \n
5375 * @param[in] char_handle - Handle for Characteristic property.
5376 * @param[in] value - New value to set for characteristic property.
5377 * @param[in] length - Length of the value to be set.
5378 * @param[in] write_type - Type of write.
5383 int bluetooth_gatt_set_characteristics_value_by_type(const char *char_handle,
5384 const guint8 *value, int length,
5385 guint8 write_type, gpointer app_data);
5389 * @fn int bluetooth_gatt_set_characteristics_value_request(const char *char_handle,
5390 * const guint8 *value, int length)
5392 * @brief Set characteristic value request.
5394 * This function is an asynchronous call.
5396 * @return BLUETOOTH_ERROR_NONE - Success \n
5397 * BLUETOOTH_ERROR_INTERNAL - Internal Error \n
5398 * BLUETOOTH_ERROR_INVALID_PARAM -Invalid Parameters \n
5399 * BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is disabled \n
5402 * @param[in] char_handle - Handle for Characteristic property.
5403 * @param[in] value - New value to set for characteristic property.
5404 * @param[in] length - Length of the value to be set.
5409 int bluetooth_gatt_set_characteristics_value_request(const char *char_handle,
5410 const guint8 *value, int length);
5413 * @fn int bluetooth_gatt_read_characteristic_value(const char *char_handle)
5415 * @brief Read characteristic value.
5417 * This function is a asynchronous call.
5419 * @return BLUETOOTH_ERROR_NONE - Success \n
5420 * BLUETOOTH_ERROR_INTERNAL - Internal Error \n
5421 * BLUETOOTH_ERROR_INVALID_PARAM -Invalid Parameters \n
5422 * BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is disabled \n
5425 * @param[in] char_handle - Handle for Characteristic property.
5430 int bluetooth_gatt_read_characteristic_value(const char *char_handle, gpointer app_data);
5433 * @fn int bluetooth_gatt_get_service_from_uuid(bluetooth_device_address_t *address,
5434 * const char *service_uuid,
5435 * bt_gatt_service_property_t *service)
5437 * @brief Gets the service property from a device based on a particular uuid
5439 * This function is a synchronous call.
5441 * @return BLUETOOTH_ERROR_NONE - Success \n
5442 * BLUETOOTH_ERROR_INTERNAL - Internal Error \n
5443 * BLUETOOTH_ERROR_INVALID_PARAM -Invalid Parameters \n
5444 * BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is disabled \n
5447 * @param[in] address - BD address of the remote device
5448 * @param[in] service_uuid - uuid of the service.
5449 * @param[out] service - Structure containing the service property.
5454 int bluetooth_gatt_get_service_from_uuid(bluetooth_device_address_t *address,
5455 const char *service_uuid,
5456 bt_gatt_service_property_t *service);
5459 * @fn int bluetooth_gatt_get_char_from_uuid(const char *service_handle,
5460 * const char *char_uuid)
5462 * @brief Gets the characteristic property from a service based on a particular char uuid
5464 * This function is an asynchronous call.
5465 * This API is responded with BLUETOOTH_EVENT_GATT_GET_CHAR_FROM_UUID
5467 * @return BLUETOOTH_ERROR_NONE - Success \n
5468 * BLUETOOTH_ERROR_INTERNAL - Internal Error \n
5469 * BLUETOOTH_ERROR_INVALID_PARAM -Invalid Parameters \n
5470 * BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is disabled \n
5473 * @param[in] service_handle - Service handle.
5474 * @param[in] uuid - Characteristic uuid.
5479 int bluetooth_gatt_get_char_from_uuid(const char *service_handle,
5480 const char *char_uuid);
5483 * @fn int bluetooth_gatt_free_primary_services(bt_gatt_handle_info_t *prim_svc);
5485 * @brief Releases the memory allocated by bluetooth_gatt_get_primary_services()
5487 * This function is a synchronous call.
5488 * The input parameter is obtained by calling bluetooth_gatt_get_primary_services()
5490 * @return BLUETOOTH_ERROR_NONE - Success \n
5491 * BLUETOOTH_ERROR_INVALID_PARAM -Invalid Parameters \n
5494 * @param[in] prim_svc - GATT handle info structure
5497 * @see bluetooth_gatt_get_primary_services()
5499 int bluetooth_gatt_free_primary_services(bt_gatt_handle_info_t *prim_svc);
5502 * @fn int bluetooth_gatt_free_service_property(bt_gatt_service_property_t *svc_pty);
5504 * @brief Releases the memory allocated by bluetooth_gatt_get_service_property()
5506 * This function is a synchronous call.
5507 * The input parameter is obtained by calling bluetooth_gatt_get_service_property()
5509 * @return BLUETOOTH_ERROR_NONE - Success \n
5510 * BLUETOOTH_ERROR_INVALID_PARAM -Invalid Parameters \n
5513 * @param[in] svc_pty - GATT service property structure.
5516 * @see bluetooth_gatt_get_service_property()
5518 int bluetooth_gatt_free_service_property(bt_gatt_service_property_t *svc_pty);
5521 * @fn int bluetooth_gatt_free_char_property(bt_gatt_char_property_t *char_pty);
5523 * @brief Provides characteristic value along with properties.
5525 * This function is a synchronous call.
5526 * The input parameter is obtained by calling bluetooth_gatt_get_characteristics_property()
5528 * @return BLUETOOTH_ERROR_NONE - Success \n
5529 * BLUETOOTH_ERROR_INVALID_PARAM -Invalid Parameters \n
5532 * @param[in] char_pty - GATT characteristics property structure.
5535 * @see bluetooth_gatt_get_characteristics_property()
5537 int bluetooth_gatt_free_char_property(bt_gatt_char_property_t *char_pty);
5540 * @fn int bluetooth_gatt_free_desc_property(bt_gatt_char_descriptor_property_t *desc_pty);
5542 * @brief Releases the memory allocated by bluetooth_gatt_get_char_descriptor_property()
5544 * This function is a synchronous call.
5545 * The input parameter is obtained by calling bluetooth_gatt_get_char_descriptor_property()
5547 * @return BLUETOOTH_ERROR_NONE - Success \n
5548 * BLUETOOTH_ERROR_INVALID_PARAM -Invalid Parameters \n
5551 * @param[in] desc_pty - GATT characteristics descriptor property structure.
5554 * @see bluetooth_gatt_get_char_descriptor_property()
5556 int bluetooth_gatt_free_desc_property(bt_gatt_char_descriptor_property_t *desc_pty);
5558 int bluetooth_connect_le(const bluetooth_device_address_t *device_address, gboolean auto_connect);
5560 int bluetooth_disconnect_le(const bluetooth_device_address_t *device_address);
5563 * @fn int bluetooth_gatt_discover_characteristic_descriptor(const char *characteristic_handle);
5565 * @brief Discovers the characteristic descriptor value of a characteristic within its definition, asynchronously
5567 * The input parameter is obtained by calling bluetooth_gatt_get_characteristics_property()
5569 * @return BLUETOOTH_ERROR_NONE - Success \n
5570 * BLUETOOTH_ERROR_INVALID_PARAM -Invalid Parameters \n
5573 * @param[in] characteristic_handle - The characteristic handle for which characteristic descriptor has to be discovered.
5577 int bluetooth_gatt_discover_characteristic_descriptor(const char *characteristic_handle);
5580 * @fn int bluetooth_gatt_read_descriptor_value(const char *desc_handle)
5582 * @brief Read characteristic descriptor value.
5584 * This function is a asynchronous call.
5586 * @return BLUETOOTH_ERROR_NONE - Success \n
5587 * BLUETOOTH_ERROR_INTERNAL - Internal Error \n
5588 * BLUETOOTH_ERROR_INVALID_PARAM -Invalid Parameters \n
5589 * BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is disabled \n
5592 * @param[in] desc_handle - Handle for Characteristic descriptor
5597 int bluetooth_gatt_read_descriptor_value(const char *desc_handle, gpointer app_data);
5600 * @fn int bluetooth_gatt_write_descriptor_value(const char *desc_handle,
5601 * const guint8 *value, int length);
5603 * @brief Set characteristic descriptor value.
5605 * This function is a asynchronous call.
5607 * @return BLUETOOTH_ERROR_NONE - Success \n
5608 * BLUETOOTH_ERROR_INTERNAL - Internal Error \n
5609 * BLUETOOTH_ERROR_INVALID_PARAM -Invalid Parameters \n
5610 * BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is disabled \n
5613 * @param[in] desc_handle - Handle for Characteristic descriptor
5614 * @param[in] value - New value to set for characteristic descriptor
5615 * @param[in] length - Length of the value to be set.
5620 int bluetooth_gatt_write_descriptor_value(const char *desc_handle,
5621 const guint8 *value, int length, gpointer app_data);
5623 /* @fn int bluetooth_gatt_init(void)
5625 * @brief Initializes the gatt service.
5627 * This function is a synchronous call.
5628 * @return BLUETOOTH_ERROR_NONE - Success \n
5629 * BLUETOOTH_ERROR_INTERNAL - Internal Error \n
5630 * BLUETOOTH_ERROR_INVALID_PARAM -Invalid Parameters \n
5631 * BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is disabled \n
5634 * @remark Adapter should be enabled
5635 * @see bluetooth_gatt_deinit()
5637 int bluetooth_gatt_init(void);
5639 /* @fn int bluetooth_gatt_init(void)
5641 * @brief DeInitializes the gatt service.
5643 * This function is a synchronous call.
5644 * @return BLUETOOTH_ERROR_NONE - Success \n
5645 * BLUETOOTH_ERROR_INTERNAL - Internal Error \n
5646 * BLUETOOTH_ERROR_INVALID_PARAM -Invalid Parameters \n
5647 * BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is disabled \n
5650 * @remark Adapter should be enabled
5651 * @see bluetooth_gatt_init()
5653 int bluetooth_gatt_deinit(void);
5655 /* @fn int bluetooth_gatt_add_service(const char *svc_uuid,
5656 unsigned char **svc_path)
5658 * @brief Exports a new gatt service to the service interface.
5660 * This function is a synchronous call.
5662 * @return BLUETOOTH_ERROR_NONE - Success \n
5663 * BLUETOOTH_ERROR_INTERNAL - Internal Error \n
5664 * BLUETOOTH_ERROR_INVALID_PARAM -Invalid Parameters \n
5665 * BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is disabled \n
5668 * @param[in] svc_uuid Gatt service uuid.
5669 * @param[out] svc_path service object path of the exported service.
5670 * @remark Adapter should be enabled
5671 * @see bluetooth_gatt_init()
5673 int bluetooth_gatt_add_service(const char *svc_uuid,
5676 /* @fn int bluetooth_gatt_add_new_characteristic(
5677 const char *svc_path, const char *char_uuid,
5678 bt_gatt_permission_t permissions,
5679 bt_gatt_characteristic_property_t properties,
5680 int flags_length, char **char_path);;
5682 * @brief Exports a new gatt characteristic to the characteristic interface.
5684 * This function is a synchronous call.
5685 * @return BLUETOOTH_ERROR_NONE - Success \n
5686 * BLUETOOTH_ERROR_INTERNAL - Internal Error \n
5687 * BLUETOOTH_ERROR_INVALID_PARAM -Invalid Parameters \n
5688 * BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is disabled \n
5690 * @param[in] svc_path service object path of the exported service.
5691 * @param[in] char_uuid Gatt service uuid.
5692 * @param[in] properties GATT characteristic properties.
5693 * @param[out] char_path characteristic object path of the exported characteristic.
5695 * @remark Adapter should be enabled
5696 * @see bluetooth_gatt_add_service()
5698 int bluetooth_gatt_add_new_characteristic(
5699 const char *svc_path, const char *char_uuid,
5700 bt_gatt_permission_t permissions,
5701 bt_gatt_characteristic_property_t properties,
5704 /* @fn bluetooth_gatt_set_characteristic_value(
5705 const char *characteristic, const char *char_value,
5708 * @brief adds gatt charactertisic value to the given charactertistic path.
5710 * This function is a synchronous call.
5711 * @return BLUETOOTH_ERROR_NONE - Success \n
5712 * BLUETOOTH_ERROR_INTERNAL - Internal Error \n
5713 * BLUETOOTH_ERROR_INVALID_PARAM -Invalid Parameters \n
5714 * BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is disabled \n
5716 * @param[in] char_value Value of the GATT characteristic to be added.
5717 * @param[in] value_length length of the chantacteristic value..
5718 * @param[out] characteristic characteristic object path..
5720 * @remark Adapter should be enabled
5721 * @see bluetooth_gatt_add_service()
5723 int bluetooth_gatt_set_characteristic_value(
5724 const char *characteristic, const char *char_value,
5727 /* @fn int bluetooth_gatt_add_descriptor(
5728 const char *char_path, const char *desc_uuid,
5729 bt_gatt_permission_t permissions,
5732 * @brief Exports a new gatt descriptor to the descriptor interface.
5734 * This function is a synchronous call.
5736 * @return BLUETOOTH_ERROR_NONE - Success \n
5737 * BLUETOOTH_ERROR_INTERNAL - Internal Error \n
5738 * BLUETOOTH_ERROR_INVALID_PARAM -Invalid Parameters \n
5739 * BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is disabled \n
5742 * @param[in] desc_uuid Gatt descriptor uuid.
5743 * @param[in] desc_value GATT descriptor value.
5744 * @param[in] value_length Length of GATT descriptor value.
5745 * @param[in] permissions descriptor permissions.
5746 * @param[in] properties GATT descriptor properties.
5747 * @param[in] char_path characteristics object path of the exported character.
5749 * @remark Adapter should be enabled
5750 * @see bluetooth_gatt_add_service()
5751 * @see bluetooth_gatt_add_characteristics()
5753 int bluetooth_gatt_add_descriptor(
5754 const char *char_path, const char *desc_uuid,
5755 bt_gatt_permission_t permissions,
5758 /* @fn int bluetooth_gatt_set_descriptor_value(
5759 const char *desc_path, const char *desc_value,
5762 * @brief Adds value to the given descriptor handle.
5764 * This function is a synchronous call.
5766 * @return BLUETOOTH_ERROR_NONE - Success \n
5767 * BLUETOOTH_ERROR_INTERNAL - Internal Error \n
5768 * BLUETOOTH_ERROR_INVALID_PARAM -Invalid Parameters \n
5769 * BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is disabled \n
5772 * @param[in] desc_value GATT descriptor value.
5773 * @param[in] value_length Length of GATT descriptor value.
5774 * @param[in] desc_path descriptor path to which the value needs to be added.
5776 * @remark Adapter should be enabled
5777 * @see bluetooth_gatt_add_service()
5778 * @see bluetooth_gatt_add_characteristics()
5780 int bluetooth_gatt_set_descriptor_value(
5781 const char *desc_path, const char *desc_value,
5784 /* @fn int bluetooth_gatt_get_service(const char *svc_uuid);
5786 * @brief Reads the Service registered on manager interface.
5788 * This function is a synchronous call.
5790 * @return BLUETOOTH_ERROR_NONE - Success \n
5791 * BLUETOOTH_ERROR_INTERNAL - Internal Error \n
5792 * BLUETOOTH_ERROR_INVALID_PARAM -Invalid Parameters \n
5793 * BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is disabled \n
5796 * @param[in] svc_uuid Gatt Service uuid.
5798 * @remark Adapter should be enabled and service should be registered.
5799 * @see bluetooth_gatt_register_service()
5801 int bluetooth_gatt_get_service(const char *svc_uuid);
5803 /* @fn int bluetooth_gatt_register_service(const char *svc_path)
5805 * @brief Registers the given service path with the library.
5807 * This function is a synchronous call.
5809 * @return BLUETOOTH_ERROR_NONE - Success \n
5810 * BLUETOOTH_ERROR_INTERNAL - Internal Error \n
5811 * BLUETOOTH_ERROR_INVALID_PARAM -Invalid Parameters \n
5812 * BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is disabled \n
5815 * @param[in] svc_path service object path of the exported service.
5817 * @remark Adapter should be enabled
5818 * @see bluetooth_gatt_add_service()
5819 * @see bluetooth_gatt_add_characteristics()
5820 * @see bluetooth_gatt_add_descriptor()
5821 * @see bluetooth_gatt_register_application()
5823 int bluetooth_gatt_register_service(const char *svc_path);
5825 /* @fn int bluetooth_gatt_register_application(void)
5827 * @brief Registers the application with the bluez gatt server.
5829 * This function is a synchronous call.
5831 * @return BLUETOOTH_ERROR_NONE - Success \n
5832 * BLUETOOTH_ERROR_INTERNAL - Internal Error \n
5833 * BLUETOOTH_ERROR_INVALID_PARAM -Invalid Parameters \n
5834 * BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is disabled \n
5838 * @remark Adapter should be enabled
5839 * @see bluetooth_gatt_init()
5840 * @see bluetooth_gatt_add_service()
5841 * @see bluetooth_gatt_add_characteristics()
5842 * @see bluetooth_gatt_add_descriptor()
5843 * @see bluetooth_gatt_register_service()
5845 int bluetooth_gatt_register_application(void);
5847 /* @fn int bluetooth_gatt_unregister_service(const char *svc_path)
5849 * @brief Removes(unregister) service from the bluez gatt server db.
5851 * This function is a synchronous call.
5853 * @return BLUETOOTH_ERROR_NONE - Success \n
5854 * BLUETOOTH_ERROR_INTERNAL - Internal Error \n
5855 * BLUETOOTH_ERROR_INVALID_PARAM -Invalid Parameters \n
5856 * BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is disabled \n
5859 * @param[in] svc_path service object path of the exported service.
5861 * @remark Adapter should be enabled
5862 * @see bluetooth_gatt_add_service()
5863 * @see bluetooth_gatt_add_characteristics()
5864 * @see bluetooth_gatt_add_descriptor()
5865 * @see bluetooth_gatt_register_service()
5867 int bluetooth_gatt_unregister_service(const char *svc_path);
5869 /* @fn int bluetooth_gatt_unregister_application(void)
5871 * @brief Removes(unregister) the application with the bluez gatt server,
5872 * and deletes all the service registered.
5874 * This function is a synchronous call.
5876 * @return BLUETOOTH_ERROR_NONE - Success \n
5877 * BLUETOOTH_ERROR_INTERNAL - Internal Error \n
5878 * BLUETOOTH_ERROR_INVALID_PARAM -Invalid Parameters \n
5879 * BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is disabled \n
5883 * @remark Adapter should be enabled
5884 * @see bluetooth_gatt_init()
5885 * @see bluetooth_gatt_add_service()
5886 * @see bluetooth_gatt_add_characteristics()
5887 * @see bluetooth_gatt_add_descriptor()
5888 * @see bluetooth_gatt_register_service()
5889 * @see bluetooth_gatt_unregister_service()
5891 int bluetooth_gatt_unregister_application(void);
5893 /* @fn int bluetooth_gatt_send_response(int request_id,
5894 * int offset, char *value, int value_length)
5896 * @brief Updates the attribute value in local attribute list.
5898 * This function is a synchronous call.
5900 * @return BLUETOOTH_ERROR_NONE - Success \n
5901 * BLUETOOTH_ERROR_INTERNAL - Internal Error \n
5902 * BLUETOOTH_ERROR_INVALID_PARAM -Invalid Parameters \n
5903 * BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is disabled \n
5906 * @param[in] request_id The identification of a read request
5907 * @param[in] req_type The identification of request type (TRUE for Read request and FALSE for write request)
5908 * @param[in] resp_state The identification of response state
5909 * @param[in] offset The offset from where a value is read
5910 * @param[in] value The value to be sent. It will be sent from @a offset.
5911 * If it is NULL, a requested GATT handle's value will be sent from @a offset.
5912 * @param[in] value_length Value Length.
5914 * @remark Adapter should be enabled
5915 * @see bluetooth_gatt_add_service()
5916 * @see bluetooth_gatt_add_characteristics()
5917 * @see bluetooth_gatt_add_descriptor()
5918 * @see bluetooth_gatt_register_service()
5920 int bluetooth_gatt_send_response(int request_id, guint req_type,
5921 int resp_state, int offset, char *value, int value_length);
5923 /* @fn bluetooth_gatt_server_set_notification(const char *char_path)
5925 * @brief Sets the notification property for a characteristic.
5927 * This function is a synchronous call.
5929 * @return BLUETOOTH_ERROR_NONE - Success \n
5930 * BLUETOOTH_ERROR_INTERNAL - Internal Error \n
5931 * BLUETOOTH_ERROR_INVALID_PARAM -Invalid Parameters \n
5932 * BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is disabled \n
5935 * @param[in] char_path characteristic object path.
5936 * @param[in] unicast_address remote device address. if set notification is sent to only one device.
5938 * @remark Adapter should be enabled
5939 * @see bluetooth_gatt_update_characteristic()
5941 int bluetooth_gatt_server_set_notification(const char *char_path,
5942 bluetooth_device_address_t *unicast_address);
5944 /* @fn int bluetooth_gatt_delete_services(void)
5946 * @brief deletes (unregisters) all services from the gatt server database..
5948 * This function is a synchronous call.
5950 * @return BLUETOOTH_ERROR_NONE - Success \n
5951 * BLUETOOTH_ERROR_INTERNAL - Internal Error \n
5952 * BLUETOOTH_ERROR_INVALID_PARAM -Invalid Parameters \n
5953 * BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is disabled \n
5957 * @remark Adapter should be enabled
5958 * @see bluetooth_gatt_add_service()
5959 * @see bluetooth_gatt_add_characteristics()
5960 * @see bluetooth_gatt_add_descriptor()
5961 * @see bluetooth_gatt_register_service()
5962 * @see bluetooth_gatt_unregister_service()
5964 int bluetooth_gatt_delete_services(void);
5966 /* @fn int bluetooth_gatt_update_characteristic(void)
5968 * @brief updates the given characteristic with a new value
5970 * This function is a synchronous call.
5972 * @return BLUETOOTH_ERROR_NONE - Success \n
5973 * BLUETOOTH_ERROR_INTERNAL - Internal Error \n
5974 * BLUETOOTH_ERROR_INVALID_PARAM -Invalid Parameters \n
5975 * BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is disabled \n
5979 * @remark Adapter should be enabled
5980 * @see bluetooth_gatt_add_service()
5981 * @see bluetooth_gatt_add_characteristics()
5982 * @see bluetooth_gatt_add_descriptor()
5983 * @see bluetooth_gatt_register_service()
5984 * @see bluetooth_gatt_unregister_service()
5986 int bluetooth_gatt_update_characteristic(const char *char_path,
5987 const char* char_value, int value_length);
5990 * @fn int bluetooth_set_advertising(int handle, gboolean enable);
5992 * @brief Set advertising status.
5994 * This function is used to enable or disable LE advertising.
5995 * Once advertising is enabled, Advertising data is transmitted in the advertising packets
5997 * This function is a synchronous call.
5999 * @return BLUETOOTH_ERROR_NONE - Success \n
6000 * BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is not enabled \n
6001 * BLUETOOTH_ERROR_INTERNAL - Internal IPC error \n
6004 * @param[in] enable - The status of advertising
6007 * @see bluetooth_set_advertising_data
6009 int bluetooth_set_advertising(int handle, gboolean enable);
6012 * @fn int bluetooth_set_custom_advertising(int handle, gboolean enable, bluetooth_advertising_params_t *params);
6014 * @brief Set advertising status along with interval value.
6016 * This function is used to enable or disable LE advertising.
6017 * Interval_min and Interval_max is used to set the best advertising interval.
6018 * Once advertising is enabled, Advertising data is transmitted in the advertising packets
6020 * This function is a synchronous call.
6022 * @return BLUETOOTH_ERROR_NONE - Success \n
6023 * BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is not enabled \n
6024 * BLUETOOTH_ERROR_INTERNAL - Internal IPC error \n
6027 * @param[in] enable - The status of advertising
6028 * @param[in] interval_min - Minimum interval of advertising (msec)
6029 * @param[in] interval_max - Maximum interval of advertising (msec)
6030 * @param[in] filter_policy - Advertising filter policy
6033 * @see bluetooth_set_advertising_data
6035 int bluetooth_set_custom_advertising(int handle, gboolean enable,
6036 bluetooth_advertising_params_t *params);
6039 * @fn int bluetooth_get_advertising_data(bluetooth_advertising_data_t *value, int *length);
6040 * @brief Get the advertising data
6042 * This function is used to get advertising data.
6043 * Before calling this API, the adapter should be enabled.
6045 * This function is a synchronous call.
6047 * @return BLUETOOTH_ERROR_NONE - Success \n
6048 * BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is not enabled \n
6049 * BLUETOOTH_ERROR_INVALID_PARAM - Invalid parameter (NULL buffer)\n
6050 * BLUETOOTH_ERROR_INTERNAL - Internal IPC error \n
6052 * @param[out] value - Advertising data structure.
6053 * @param[out] length - The length of Advertising data.
6057 bluetooth_advertising_data_t *value = { {0} };
6060 ret = bluetooth_get_advertising_data(&value, &length);
6063 int bluetooth_get_advertising_data(bluetooth_advertising_data_t *value, int *length);
6066 * @fn int bluetooth_set_advertising_data(int handle, const bluetooth_advertising_data_t *value, int length);
6068 * @brief Set advertising data with value
6070 * This function is used to set advertising data and Maximum size of advertising data
6071 * is 28 byte (Except Flag)
6073 * This function is a synchronous call.
6075 * @return BLUETOOTH_ERROR_NONE - Success \n
6076 * BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is not enabled \n
6077 * BLUETOOTH_ERROR_INTERNAL - Internal IPC error \n
6080 * @param[in] value - Advertising data structure.
6084 int bluetooth_set_advertising_data(int handle, const bluetooth_advertising_data_t *value, int length);
6087 * @fn int bluetooth_check_privilege_advertising_parameter(void);
6089 * @brief Check the privilege for advertising parameter setting
6091 * This function is a synchronous call.
6093 * @return BLUETOOTH_ERROR_NONE - Success \n
6094 * BLUETOOTH_ERROR_PERMISSION_DEINED - Permission deined \n
6100 int bluetooth_check_privilege_advertising_parameter(void);
6103 * @fn int bluetooth_get_scan_response_data(bluetooth_scan_resp_data_t *value, int *length);
6104 * @brief Get the LE scan response data
6106 * This function is used to get scan response data.
6107 * Before calling this API, the adapter should be enabled.
6109 * This function is a synchronous call.
6111 * @return BLUETOOTH_ERROR_NONE - Success \n
6112 * BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is not enabled \n
6113 * BLUETOOTH_ERROR_INVALID_PARAM - Invalid parameter (NULL buffer)\n
6114 * BLUETOOTH_ERROR_INTERNAL - Internal IPC error \n
6116 * @param[out] value - Scan response data structure.
6117 * @param[out] length - The length of Scan response data.
6121 bluetooth_scan_resp_data_t *value = { {0} };
6124 ret = bluetooth_get_scan_response_data(&value, &length);
6127 int bluetooth_get_scan_response_data(bluetooth_scan_resp_data_t *value, int *length);
6130 * @fn int bluetooth_set_scan_response_data(int handle, const bluetooth_scan_resp_data_t *value, int length);
6132 * @brief Set scan response data with value
6134 * This function is used to set scan response data and Maximum size of scan response data is 31 byte
6136 * This function is a synchronous call.
6138 * @return BLUETOOTH_ERROR_NONE - Success \n
6139 * BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is not enabled \n
6140 * BLUETOOTH_ERROR_INTERNAL - Internal IPC error \n
6143 * @param[in] value - LE Scan response data structure.
6147 int bluetooth_set_scan_response_data(int handle, const bluetooth_scan_resp_data_t *value, int length);
6150 * @fn int bluetooth_set_scan_parameters(bluetooth_le_scan_params_t *params);
6152 * @brief Set scan interval and window
6154 * This function is used to set LE scan interval and window size
6156 * This function is a synchronous call.
6158 * @return BLUETOOTH_ERROR_NONE - Success \n
6159 * BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is not enabled \n
6160 * BLUETOOTH_ERROR_INTERNAL - Internal IPC error \n
6163 * @param[in] interval - Interval of LE scan (msec)
6164 * @param[in] window - Window size of LE scan (msec)
6168 int bluetooth_set_scan_parameters(bluetooth_le_scan_params_t *params);
6171 * @fn int bluetooth_is_advertising(void)
6172 * @brief Check for the advertising is in-progress or not.
6174 * This API is used to check the current status of the advertising procedure.
6175 * Before calling this API, make sure that the adapter is enabled. There is no callback event for
6178 * This function checks whether the advertising is started or not.
6180 * This function is a synchronous call.
6182 * @param[out] is_advertising The advertising status: (@c TRUE = in progress, @c false = not in progress)
6184 * @return BLUETOOTH_ERROR_NONE - Success \n
6185 * BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is not enabled \n
6188 * @see bluetooth_set_advertising, bluetooth_set_custom_advertising
6192 gboolean is_advertising = 0;
6194 ret = bluetooth_is_advertising(&is_advertising);
6197 int bluetooth_is_advertising(gboolean *is_advertising);
6200 * @fn int bluetooth_add_white_list(bluetooth_device_address_t *address, bluetooth_device_address_type_t address_type)
6201 * @brief Add LE device to white list
6203 * This API is used to add LE device to white list
6204 * Before calling this API, make sure that the adapter is enabled. There is no callback event for
6208 * This function is a synchronous call.
6210 * @param[in] address The address of remote device
6212 * @return BLUETOOTH_ERROR_NONE - Success \n
6213 * BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is not enabled \n
6216 * @see bluetooth_set_custom_advertising
6218 int bluetooth_add_white_list(bluetooth_device_address_t *address, bluetooth_device_address_type_t address_type);
6221 * @fn int bluetooth_remove_white_list(bluetooth_device_address_t *address, bluetooth_device_address_type_t address_type)
6222 * @brief Remove LE device from white list
6224 * This API is used to remove LE device from white list
6225 * Before calling this API, make sure that the adapter is enabled. There is no callback event for
6229 * This function is a synchronous call.
6231 * @param[in] address The address of remote device
6233 * @return BLUETOOTH_ERROR_NONE - Success \n
6234 * BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is not enabled \n
6237 * @see bluetooth_set_custom_advertising
6239 int bluetooth_remove_white_list(bluetooth_device_address_t *address, bluetooth_device_address_type_t address_type);
6242 * @fn int bluetooth_clear_white_list(void)
6243 * @brief Clear white list
6245 * This API is used to clear white list
6246 * Before calling this API, make sure that the adapter is enabled. There is no callback event for
6250 * This function is a synchronous call.
6252 * @param[in] address The address of remote device
6254 * @return BLUETOOTH_ERROR_NONE - Success \n
6255 * BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is not enabled \n
6258 * @see bluetooth_set_custom_advertising
6260 int bluetooth_clear_white_list(void);
6263 * @fn int bluetooth_le_conn_update(bluetooth_device_address_t *address,
6264 * const bluetooth_le_connection_param_t *parameters)
6265 * @brief update connection paramter of LE connection.
6267 * This function is a synchronous call.
6269 * @return BLUETOOTH_ERROR_NONE - Success \n
6270 * BLUETOOTH_ERROR_INTERNAL - Internal Error \n
6273 * @param[in] address - remote device address value.
6274 * @param[in] parameters - new connection parameters.
6277 * @see bluetooth_bond_device
6279 int bluetooth_le_conn_update(const bluetooth_device_address_t *address,
6280 const bluetooth_le_connection_param_t *parameters);
6283 * @fn int bluetooth_enable_le_privacy(gboolean enable_privacy);
6285 * @brief Enable/Disable LE Privacy feature.
6287 * This function is used to enable or disable LE Privacy feature.
6288 * Once Privacy feature is enabled, Adapter can use Random Address for more security.
6290 * This function is a synchronous call.
6292 * @return BLUETOOTH_ERROR_NONE - Success \n
6293 * BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is not enabled \n
6294 * BLUETOOTH_ERROR_INTERNAL - Internal IPC error \n
6297 * @param[in] enable_privacy - The status of Privacy feature to be activated/deactivated[True/False].
6301 int bluetooth_enable_le_privacy(gboolean enable_privacy);
6304 * @fn int bluetooth_set_le_static_random_address(gboolean enable);
6306 * @brief Enable/Disable LE static random address.
6308 * This function is used to enable or disable LE static random address.
6310 * This function is a synchronous call.
6312 * @return BLUETOOTH_ERROR_NONE - Success \n
6313 * BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is not enabled \n
6314 * BLUETOOTH_ERROR_INTERNAL - Internal IPC error \n
6317 * @param[in] enable - The status of LE static random address to be activated/deactivated[True/False].
6321 int bluetooth_set_le_static_random_address(gboolean enable);
6324 * @fn int bluetooth_update_le_connection_mode(bluetooth_device_address_t *address,
6325 * bluetooth_le_connection_mode_t mode)
6326 * @brief update connection paramter of LE connection.
6328 * This function is a synchronous call.
6330 * @return BLUETOOTH_ERROR_NONE - Success \n
6331 * BLUETOOTH_ERROR_INTERNAL - Internal Error \n
6332 * BLUETOOTH_ERROR_INVALID_PARAM - Parameter is not valid \n
6335 * @param[in] address - remote device address value.
6336 * @param[in] mode - new connection mode.
6340 int bluetooth_update_le_connection_mode(const bluetooth_device_address_t *address,
6341 bluetooth_le_connection_mode_t mode);
6344 * @fn int bluetooth_request_att_mtu(const bluetooth_device_address_t *device_address, guint16 mtu)
6345 * @brief Request for new ATT MTU value.
6347 * This function is a asynchronous call.
6349 * @return BLUETOOTH_ERROR_NONE - Success \n
6350 * BLUETOOTH_ERROR_INTERNAL - Internal Error \n
6351 * BLUETOOTH_ERROR_INVALID_PARAM - Parameter is not valid \n
6354 * @param[in] address - remote device address value.
6355 * @param[in] mtu - MTU value to be set.
6359 int bluetooth_request_att_mtu(const bluetooth_device_address_t *device_address, unsigned int mtu);
6362 * @fn int bluetooth_get_att_mtu(const bluetooth_device_address_t *device_address,
6363 * unsigned int *mtu)
6364 * @brief Gets the xisting MTU value set for a connection.
6366 * This function is a synchronous call.
6368 * @return BLUETOOTH_ERROR_NONE - Success \n
6369 * BLUETOOTH_ERROR_INTERNAL - Internal Error \n
6370 * BLUETOOTH_ERROR_INVALID_PARAM - Parameter is not valid \n
6373 * @param[in] address - remote device address value.
6374 * @param[out] mtu - MTU value set for the connection.
6378 int bluetooth_get_att_mtu(const bluetooth_device_address_t *device_address,
6382 * @fn int bluetooth_get_device_ida(const bluetooth_device_address_t *device_rpa,
6383 * bluetooth_device_address_t *id_address)
6384 * @brief Gets the Identity address of remote device.
6386 * This function is a synchronous call.
6388 * @return BLUETOOTH_ERROR_NONE - Success \n
6389 * BLUETOOTH_ERROR_INTERNAL - Internal Error \n
6390 * BLUETOOTH_ERROR_INVALID_PARAM - Parameter is not valid \n
6393 * @param[in] device_rpa - remote Resolvable private address.
6394 * @param[out] id_address - remote Identity device address value.
6398 int bluetooth_get_device_ida(const bluetooth_device_address_t *device_rpa,
6399 bluetooth_device_address_t *id_address);
6402 * @fn int bluetooth_le_read_maximum_data_length()
6403 * @brief reads the maximum LE data length supported in the controller.
6405 * This function is a synchronous call.
6407 * @return BLUETOOTH_ERROR_NONE - Success \n
6408 * BLUETOOTH_ERROR_INTERNAL - Internal Error \n
6414 int bluetooth_le_read_maximum_data_length(
6415 bluetooth_le_read_maximum_data_length_t *max_le_datalength);
6417 * @fn int bluetooth_le_write_host_suggested_default_data_length()
6418 * @brief writes the host suggested values for the controllers max transmitted no of payload
6419 * octects to be used for new connections.
6421 * This function is a synchronous call.
6423 * @return BLUETOOTH_ERROR_NONE - Success \n
6424 * BLUETOOTH_ERROR_INTERNAL - Internal Error \n
6430 int bluetooth_le_write_host_suggested_default_data_length(
6431 const unsigned int def_tx_Octets, const unsigned int def_tx_Time);
6433 int bluetooth_le_read_suggested_default_data_length(
6434 bluetooth_le_read_host_suggested_data_length_t *le_data_length);
6436 int bluetooth_le_set_data_length(bluetooth_device_address_t *address,
6437 const unsigned int max_tx_octets, const unsigned int max_tx_time);
6439 int bluetooth_pbap_init(void);
6440 int bluetooth_pbap_deinit(void);
6441 int bluetooth_pbap_connect(const bluetooth_device_address_t *address);
6442 int bluetooth_pbap_disconnect(const bluetooth_device_address_t *address);
6443 int bluetooth_pbap_get_phonebook_size(const bluetooth_device_address_t *address,
6444 bt_pbap_folder_t *folder);
6445 int bluetooth_pbap_get_phonebook(const bluetooth_device_address_t *address,
6446 bt_pbap_folder_t *folder, bt_pbap_pull_parameters_t *app_param);
6447 int bluetooth_pbap_get_list(const bluetooth_device_address_t *address,
6448 bt_pbap_folder_t *folder, bt_pbap_list_parameters_t *app_param);
6449 int bluetooth_pbap_pull_vcard(const bluetooth_device_address_t *address,
6450 bt_pbap_folder_t *folder, bt_pbap_pull_vcard_parameters_t *app_param);
6451 int bluetooth_pbap_phonebook_search(const bluetooth_device_address_t *address,
6452 bt_pbap_folder_t *folder, bt_pbap_search_parameters_t *app_param);
6455 * @fn int bluetooth_set_manufacturer_data(const bluetooth_manufacturer_data_t *value);
6457 * @brief Set manufacturer data with value
6459 * This function is used to set manufacturer data.
6461 * This function is a synchronous call.
6463 * @return BLUETOOTH_ERROR_NONE - Success \n
6464 * BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter is not enabled \n
6465 * BLUETOOTH_ERROR_INTERNAL - Internal IPC error \n
6468 * @param[in] value - Manufacturer data structure.
6472 int bluetooth_set_manufacturer_data(const bluetooth_manufacturer_data_t *value);
6474 int bluetooth_set_passkey_notification(gboolean enable);
6477 * @fn int bluetooth_dpm_is_mode_allowed(void);
6479 * @brief Checks Restriction for BT mode(BT allowed or not)
6481 * This function is a synchronous call.
6483 * @return BLUETOOTH_DPM_RESULT_SUCCESS - Success \n
6484 * BLUETOOTH_DPM_RESULT_ACCESS_DENIED - BT restricted \n
6485 * BLUETOOTH_DPM_RESULT_FAIL - Internal error \n
6492 int bluetooth_dpm_is_mode_allowed(void);
6495 * @fn int bluetooth_dpm_set_allow_mode(bt_dpm_allow_t value);
6497 * @brief Sets Restriction for BT mode(BT allowed or not)
6499 * This function is a synchronous call.
6501 * @return BLUETOOTH_DPM_RESULT_SUCCESS - Success \n
6502 * BLUETOOTH_DPM_RESULT_ACCESS_DENIED - BT restricted \n
6503 * BLUETOOTH_DPM_RESULT_FAIL - Internal error \n
6506 * @param[in] value - BT Allow value.
6507 * BLUETOOTH_DPM_ERROR = -1, < bluetooth allowance error
6508 * BLUETOOTH_DPM_BT_ALLOWED, < bluetooth allowance allowed
6509 * BLUETOOTH_DPM_HANDSFREE_ONLY, < bluetooth allowance handsfree only
6510 * BLUETOOTH_DPM_BT_RESTRICTED, < bluetooth allowance restricted
6514 int bluetooth_dpm_set_allow_mode(bt_dpm_allow_t value);
6517 * @fn int bluetooth_dpm_get_allow_mode(bt_dpm_allow_t value);
6519 * @brief Reads the Restriction for BT mode(BT allowed or not)
6521 * This function is a synchronous call.
6523 * @return BLUETOOTH_DPM_RESULT_SUCCESS - Success \n
6524 * BLUETOOTH_DPM_RESULT_ACCESS_DENIED - BT restricted \n
6525 * BLUETOOTH_DPM_RESULT_FAIL - Internal error \n
6529 * @param[out] value - BT Allow value.
6530 * BLUETOOTH_DPM_ERROR = -1, < bluetooth allowance error
6531 * BLUETOOTH_DPM_BT_ALLOWED, < bluetooth allowance allowed
6532 * BLUETOOTH_DPM_HANDSFREE_ONLY, < bluetooth allowance handsfree only
6533 * BLUETOOTH_DPM_BT_RESTRICTED, < bluetooth allowance restricted
6537 int bluetooth_dpm_get_allow_mode(bt_dpm_allow_t *value);
6540 * @fn int bluetooth_dpm_activate_device_restriction(bt_dpm_status_t value);
6542 * @brief Sets the Restriction for device.
6544 * This function is a synchronous call.
6546 * @return BLUETOOTH_DPM_RESULT_SUCCESS - Success \n
6547 * BLUETOOTH_DPM_RESULT_ACCESS_DENIED - BT restricted \n
6548 * BLUETOOTH_DPM_RESULT_FAIL - Internal error \n
6551 * @param[in] value - State value.
6552 * BLUETOOTH_DPM_ALLOWED = 0, < DPM Policy status allowed.
6553 * BLUETOOTH_DPM_RESTRICTED = 1, < DPM Policy status restricted.
6557 int bluetooth_dpm_activate_device_restriction(bt_dpm_status_t value);
6560 * @fn int bluetooth_dpm_is_device_restriction_active(bt_dpm_status_t *value);
6562 * @brief Reads the Restriction for device.
6564 * This function is a synchronous call.
6566 * @return BLUETOOTH_DPM_RESULT_SUCCESS - Success \n
6567 * BLUETOOTH_DPM_RESULT_ACCESS_DENIED - BT restricted \n
6568 * BLUETOOTH_DPM_RESULT_FAIL - Internal error \n
6572 * @param[out] value - State value.
6573 * BLUETOOTH_DPM_ALLOWED = 0, < DPM Policy status allowed.
6574 * BLUETOOTH_DPM_RESTRICTED = 1, < DPM Policy status restricted.
6578 int bluetooth_dpm_is_device_restriction_active(bt_dpm_status_t *value);
6581 * @fn int bluetooth_dpm_activate_bluetoooth_uuid_restriction(bt_dpm_status_t value);
6583 * @brief Sets the Restriction for uuid.
6585 * This function is a synchronous call.
6587 * @return BLUETOOTH_DPM_RESULT_SUCCESS - Success \n
6588 * BLUETOOTH_DPM_RESULT_ACCESS_DENIED - BT restricted \n
6589 * BLUETOOTH_DPM_RESULT_FAIL - Internal error \n
6592 * @param[in] value - State value.
6593 * BLUETOOTH_DPM_ALLOWED = 0, < DPM Policy status allowed.
6594 * BLUETOOTH_DPM_RESTRICTED = 1, < DPM Policy status restricted.
6598 int bluetooth_dpm_activate_uuid_restriction(bt_dpm_status_t value);
6601 * @fn int bluetooth_dpm_is_uuid_restriction_active(bt_dpm_status_t *value);
6603 * @brief Reads the Restriction for uuid.
6605 * This function is a synchronous call.
6607 * @return BLUETOOTH_DPM_RESULT_SUCCESS - Success \n
6608 * BLUETOOTH_DPM_RESULT_ACCESS_DENIED - BT restricted \n
6609 * BLUETOOTH_DPM_RESULT_FAIL - Internal error \n
6613 * @param[out] value - State value.
6614 * BLUETOOTH_DPM_ALLOWED = 0, < DPM Policy status allowed.
6615 * BLUETOOTH_DPM_RESTRICTED = 1, < DPM Policy status restricted.
6619 int bluetooth_dpm_is_uuid_restriction_active(bt_dpm_status_t *value);
6622 * @fn int bluetooth_dpm_add_devices_to_blacklist(const bluetooth_device_address_t *device_address);
6624 * @brief Adds the device to blacklist.
6626 * This function is a synchronous call.
6628 * @return BLUETOOTH_DPM_RESULT_SUCCESS - Success \n
6629 * BLUETOOTH_DPM_RESULT_ACCESS_DENIED - BT restricted \n
6630 * BLUETOOTH_DPM_RESULT_FAIL - Internal error \n
6633 * @param[in] device_address - Device address
6637 int bluetooth_dpm_add_devices_to_blacklist(const bluetooth_device_address_t *device_address);
6640 * @fn int bluetooth_dpm_add_devices_to_whitelist(const bluetooth_device_address_t *device_address);
6642 * @brief Adds the device to whitelist.
6644 * This function is a synchronous call.
6646 * @return BLUETOOTH_DPM_RESULT_SUCCESS - Success \n
6647 * BLUETOOTH_DPM_RESULT_ACCESS_DENIED - BT restricted \n
6648 * BLUETOOTH_DPM_RESULT_FAIL - Internal error \n
6651 * @param[in] device_address - Device address
6655 int bluetooth_dpm_add_devices_to_whitelist(const bluetooth_device_address_t *device_address);
6658 * @fn int bluetooth_dpm_add_uuids_to_blacklist(const char *service_uuid);
6660 * @brief Adds the Service UUIDS to blacklist.
6662 * This function is a synchronous call.
6664 * @return BLUETOOTH_DPM_RESULT_SUCCESS - Success \n
6665 * BLUETOOTH_DPM_RESULT_ACCESS_DENIED - BT restricted \n
6666 * BLUETOOTH_DPM_RESULT_FAIL - Internal error \n
6669 * @param[in] service_uuids - profile or custom service uuids
6673 int bluetooth_dpm_add_uuids_to_blacklist(const char *service_uuid);
6676 * @fn int bluetooth_dpm_add_uuids_to_whitelist(const char *service_uuid);
6678 * @brief Adds the Service UUIDS to whitelist.
6680 * This function is a synchronous call.
6682 * @return BLUETOOTH_DPM_RESULT_SUCCESS - Success \n
6683 * BLUETOOTH_DPM_RESULT_ACCESS_DENIED - BT restricted \n
6684 * BLUETOOTH_DPM_RESULT_FAIL - Internal error \n
6687 * @param[in] service_uuids - profile or custom service uuids
6691 int bluetooth_dpm_add_uuids_to_whitelist(const char *service_uuid);
6694 * @fn int bluetooth_dpm_clear_devices_from_blacklist();
6696 * @brief Clears the devices from blacklist.
6698 * This function is a synchronous call.
6700 * @return BLUETOOTH_DPM_RESULT_SUCCESS - Success \n
6701 * BLUETOOTH_DPM_RESULT_ACCESS_DENIED - BT restricted \n
6702 * BLUETOOTH_DPM_RESULT_FAIL - Internal error \n
6709 int bluetooth_dpm_clear_devices_from_blacklist(void);
6712 * @fn int bluetooth_dpm_clear_devices_from_whitelist();
6714 * @brief Clears the devices from whitelist.
6716 * This function is a synchronous call.
6718 * @return BLUETOOTH_DPM_RESULT_SUCCESS - Success \n
6719 * BLUETOOTH_DPM_RESULT_ACCESS_DENIED - BT restricted \n
6720 * BLUETOOTH_DPM_RESULT_FAIL - Internal error \n
6727 int bluetooth_dpm_clear_devices_from_whitelist(void);
6730 * @fn int bluetooth_dpm_clear_uuids_from_blacklist();
6732 * @brief Clears the uuids from blacklist.
6734 * This function is a synchronous call.
6736 * @return BLUETOOTH_DPM_RESULT_SUCCESS - Success \n
6737 * BLUETOOTH_DPM_RESULT_ACCESS_DENIED - BT restricted \n
6738 * BLUETOOTH_DPM_RESULT_FAIL - Internal error \n
6745 int bluetooth_dpm_clear_uuids_from_blacklist(void);
6748 * @fn int bluetooth_dpm_clear_uuids_from_whitelist();
6750 * @brief Clears the uuids from whitelist.
6752 * This function is a synchronous call.
6754 * @return BLUETOOTH_DPM_RESULT_SUCCESS - Success \n
6755 * BLUETOOTH_DPM_RESULT_ACCESS_DENIED - BT restricted \n
6756 * BLUETOOTH_DPM_RESULT_FAIL - Internal error \n
6763 int bluetooth_dpm_clear_uuids_from_whitelist(void);
6766 * @fn int bluetooth_dpm_get_devices_from_blacklist(bt_dpm_device_list_t *device_list);
6768 * @brief reads the devices from blacklist.
6770 * This function is a synchronous call.
6772 * @return BLUETOOTH_DPM_RESULT_SUCCESS - Success \n
6773 * BLUETOOTH_DPM_RESULT_ACCESS_DENIED - BT restricted \n
6774 * BLUETOOTH_DPM_RESULT_FAIL - Internal error \n
6777 * @param[out] device_list - list of devices
6781 int bluetooth_dpm_get_devices_from_blacklist(bt_dpm_device_list_t *device_list);
6784 * @fn int bluetooth_dpm_get_devices_from_whitelist(bt_dpm_device_list_t *device_list);
6786 * @brief reads the devices from whitelist.
6788 * This function is a synchronous call.
6790 * @return BLUETOOTH_DPM_RESULT_SUCCESS - Success \n
6791 * BLUETOOTH_DPM_RESULT_ACCESS_DENIED - BT restricted \n
6792 * BLUETOOTH_DPM_RESULT_FAIL - Internal error \n
6795 * @param[out] device_list - list of devices
6799 int bluetooth_dpm_get_devices_from_whitelist(bt_dpm_device_list_t *device_list);
6802 * @fn int bluetooth_dpm_get_uuids_from_blacklist(bt_dpm_uuids_list_t *uuid_list);
6804 * @brief reads the uuids from blacklist.
6806 * This function is a synchronous call.
6808 * @return BLUETOOTH_DPM_RESULT_SUCCESS - Success \n
6809 * BLUETOOTH_DPM_RESULT_ACCESS_DENIED - BT restricted \n
6810 * BLUETOOTH_DPM_RESULT_FAIL - Internal error \n
6813 * @param[in] uuid_list - list of uuids
6817 int bluetooth_dpm_get_uuids_from_blacklist(bt_dpm_uuids_list_t *uuid_list);
6820 * @fn int bluetooth_dpm_get_uuids_from_whitelist(bt_dpm_uuids_list_t *uuid_list);
6822 * @brief reads the uuids from whitelist.
6824 * This function is a synchronous call.
6826 * @return BLUETOOTH_DPM_RESULT_SUCCESS - Success \n
6827 * BLUETOOTH_DPM_RESULT_ACCESS_DENIED - BT restricted \n
6828 * BLUETOOTH_DPM_RESULT_FAIL - Internal error \n
6831 * @param[in] uuid_list - list of uuids
6835 int bluetooth_dpm_get_uuids_from_whitelist(bt_dpm_uuids_list_t *uuid_list);
6838 * @fn int bluetooth_dpm_remove_device_from_whitelist(const bluetooth_device_address_t *device_address);
6840 * @brief Removes the device from whitelist.
6842 * This function is a synchronous call.
6844 * @return BLUETOOTH_DPM_RESULT_SUCCESS - Success \n
6845 * BLUETOOTH_DPM_RESULT_ACCESS_DENIED - BT restricted \n
6846 * BLUETOOTH_DPM_RESULT_FAIL - Internal error \n
6849 * @param[in] device_address - Device address
6853 int bluetooth_dpm_remove_device_from_whitelist(const bluetooth_device_address_t *device_address);
6856 * @fn int bluetooth_dpm_remove_device_from_blacklist(const bluetooth_device_address_t *device_address);
6858 * @brief Removes the device from blacklist.
6860 * This function is a synchronous call.
6862 * @return BLUETOOTH_DPM_RESULT_SUCCESS - Success \n
6863 * BLUETOOTH_DPM_RESULT_ACCESS_DENIED - BT restricted \n
6864 * BLUETOOTH_DPM_RESULT_FAIL - Internal error \n
6867 * @param[in] device_address - Device address
6871 int bluetooth_dpm_remove_device_from_blacklist(const bluetooth_device_address_t *device_address);
6874 * @fn int bluetooth_dpm_remove_uuid_from_whitelist(const char *service_uuid);
6876 * @brief Removes the Service UUIDS from whitelist.
6878 * This function is a synchronous call.
6880 * @return BLUETOOTH_DPM_RESULT_SUCCESS - Success \n
6881 * BLUETOOTH_DPM_RESULT_ACCESS_DENIED - BT restricted \n
6882 * BLUETOOTH_DPM_RESULT_FAIL - Internal error \n
6885 * @param[in] service_uuids - profile or custom service uuids
6889 int bluetooth_dpm_remove_uuid_from_whitelist(const char *service_uuid);
6892 * @fn int bluetooth_dpm_remove_uuid_from_blacklist(const char *service_uuid);
6894 * @brief Removes the Service UUIDS from blacklist.
6896 * This function is a synchronous call.
6898 * @return BLUETOOTH_DPM_RESULT_SUCCESS - Success \n
6899 * BLUETOOTH_DPM_RESULT_ACCESS_DENIED - BT restricted \n
6900 * BLUETOOTH_DPM_RESULT_FAIL - Internal error \n
6903 * @param[in] service_uuids - profile or custom service uuids
6907 int bluetooth_dpm_remove_uuid_from_blacklist(const char *service_uuid);
6910 * @fn int bluetooth_dpm_set_allow_outgoing_call(bt_dpm_status_t value);
6912 * @brief Sets the Restriction for outgoing call.
6914 * This function is a synchronous call.
6916 * @return BLUETOOTH_DPM_RESULT_SUCCESS - Success \n
6917 * BLUETOOTH_DPM_RESULT_ACCESS_DENIED - BT restricted \n
6918 * BLUETOOTH_DPM_RESULT_FAIL - Internal error \n
6921 * @param[in] value - State value.
6922 * BLUETOOTH_DPM_ALLOWED = 0, < DPM Policy status allowed.
6923 * BLUETOOTH_DPM_RESTRICTED = 1, < DPM Policy status restricted.
6927 int bluetooth_dpm_set_allow_outgoing_call(bt_dpm_status_t value);
6930 * @fn int bluetooth_dpm_get_allow_outgoing_call(bt_dpm_status_t *value);
6932 * @brief Reads the Restriction for outgoing call.
6934 * This function is a synchronous call.
6936 * @return BLUETOOTH_DPM_RESULT_SUCCESS - Success \n
6937 * BLUETOOTH_DPM_RESULT_ACCESS_DENIED - BT restricted \n
6938 * BLUETOOTH_DPM_RESULT_FAIL - Internal error \n
6942 * @param[out] value - State value.
6943 * BLUETOOTH_DPM_ALLOWED = 0, < DPM Policy status allowed.
6944 * BLUETOOTH_DPM_RESTRICTED = 1, < DPM Policy status restricted.
6948 int bluetooth_dpm_get_allow_outgoing_call(bt_dpm_status_t *value);
6951 * @fn int bluetooth_dpm_set_pairing_state(bt_dpm_status_t value);
6953 * @brief Sets the Restriction for Pairing.
6955 * This function is a synchronous call.
6957 * @return BLUETOOTH_DPM_RESULT_SUCCESS - Success \n
6958 * BLUETOOTH_DPM_RESULT_ACCESS_DENIED - BT restricted \n
6959 * BLUETOOTH_DPM_RESULT_FAIL - Internal error \n
6962 * @param[in] value - State value.
6963 * BLUETOOTH_DPM_ALLOWED = 0, < DPM Policy status allowed.
6964 * BLUETOOTH_DPM_RESTRICTED = 1, < DPM Policy status restricted.
6968 int bluetooth_dpm_set_pairing_state(bt_dpm_status_t value);
6971 * @fn int bluetooth_dpm_get_pairing_state(bt_dpm_status_t *value);
6973 * @brief Reads the Restriction for Pairing
6975 * This function is a synchronous call.
6977 * @return BLUETOOTH_DPM_RESULT_SUCCESS - Success \n
6978 * BLUETOOTH_DPM_RESULT_ACCESS_DENIED - BT restricted \n
6979 * BLUETOOTH_DPM_RESULT_FAIL - Internal error \n
6983 * @param[out] value - State value.
6984 * BLUETOOTH_DPM_ALLOWED = 0, < DPM Policy status allowed.
6985 * BLUETOOTH_DPM_RESTRICTED = 1, < DPM Policy status restricted.
6989 int bluetooth_dpm_get_pairing_state(bt_dpm_status_t *value);
6992 * @fnint bluetooth_dpm_set_profile_state(bt_dpm_profile_t profile, bt_dpm_status_t value);
6994 * @brief Sets the Restriction for using Profiles.
6996 * This function is a synchronous call.
6998 * @return BLUETOOTH_DPM_RESULT_SUCCESS - Success \n
6999 * BLUETOOTH_DPM_RESULT_ACCESS_DENIED - BT restricted \n
7000 * BLUETOOTH_DPM_RESULT_FAIL - Internal error \n
7003 * @param[in]profile - Profile.
7004 * BLUETOOTH_DPM_POLICY_A2DP_PROFILE_STATE,
7005 * BLUETOOTH_DPM_POLICY_AVRCP_PROFILE_STATE,
7006 * BLUETOOTH_DPM_POLICY_BPP_PROFILE_STATE,
7007 * BLUETOOTH_DPM_POLICY_DUN_PROFILE_STATE,
7008 * BLUETOOTH_DPM_POLICY_FTP_PROFILE_STATE,
7009 * BLUETOOTH_DPM_POLICY_HFP_PROFILE_STATE,
7010 * BLUETOOTH_DPM_POLICY_HSP_PROFILE_STATE,
7011 * BLUETOOTH_DPM_POLICY_PBAP_PROFILE_STATE,
7012 * BLUETOOTH_DPM_POLICY_SAP_PROFILE_STATE,
7013 * BLUETOOTH_DPM_POLICY_SPP_PROFILE_STATE,
7014 * BLUETOOTH_DPM_PROFILE_NONE
7015 * @param[in] value - State value.
7016 * BLUETOOTH_DPM_ALLOWED = 0, < DPM Policy status allowed.
7017 * BLUETOOTH_DPM_RESTRICTED = 1, < DPM Policy status restricted.
7021 int bluetooth_dpm_set_profile_state(bt_dpm_profile_t profile, bt_dpm_status_t value);
7024 * @fn int bluetooth_dpm_get_profile_state(bt_dpm_profile_t profile, bt_dpm_status_t *value);
7026 * @brief Reads the Restriction for using Profiles.
7028 * This function is a synchronous call.
7030 * @return BLUETOOTH_DPM_RESULT_SUCCESS - Success \n
7031 * BLUETOOTH_DPM_RESULT_ACCESS_DENIED - BT restricted \n
7032 * BLUETOOTH_DPM_RESULT_FAIL - Internal error \n
7035 * @param[in]profile - Profile.
7036 * BLUETOOTH_DPM_POLICY_A2DP_PROFILE_STATE,
7037 * BLUETOOTH_DPM_POLICY_AVRCP_PROFILE_STATE,
7038 * BLUETOOTH_DPM_POLICY_BPP_PROFILE_STATE,
7039 * BLUETOOTH_DPM_POLICY_DUN_PROFILE_STATE,
7040 * BLUETOOTH_DPM_POLICY_FTP_PROFILE_STATE,
7041 * BLUETOOTH_DPM_POLICY_HFP_PROFILE_STATE,
7042 * BLUETOOTH_DPM_POLICY_HSP_PROFILE_STATE,
7043 * BLUETOOTH_DPM_POLICY_PBAP_PROFILE_STATE,
7044 * BLUETOOTH_DPM_POLICY_SAP_PROFILE_STATE,
7045 * BLUETOOTH_DPM_POLICY_SPP_PROFILE_STATE,
7046 * BLUETOOTH_DPM_PROFILE_NONE
7047 * @param[out] value - State value.
7048 * BLUETOOTH_DPM_ALLOWED = 0, < DPM Policy status allowed.
7049 * BLUETOOTH_DPM_RESTRICTED = 1, < DPM Policy status restricted.
7053 int bluetooth_dpm_get_profile_state(bt_dpm_profile_t profile, bt_dpm_status_t *value);
7056 * @fn int bluetooth_dpm_set_desktop_connectivity_state(bt_dpm_status_t value);
7058 * @brief Sets the Restriction for Desktop Connectivity.
7060 * This function is a synchronous call.
7062 * @return BLUETOOTH_DPM_RESULT_SUCCESS - Success \n
7063 * BLUETOOTH_DPM_RESULT_ACCESS_DENIED - BT restricted \n
7064 * BLUETOOTH_DPM_RESULT_FAIL - Internal error \n
7067 * @param[in] value - State value.
7068 * BLUETOOTH_DPM_ALLOWED = 0, < DPM Policy status allowed.
7069 * BLUETOOTH_DPM_RESTRICTED = 1, < DPM Policy status restricted.
7073 int bluetooth_dpm_set_desktop_connectivity_state(bt_dpm_status_t value);
7076 * @fn int bluetooth_dpm_get_desktop_connectivity_state(bt_dpm_status_t *value);
7078 * @brief Reads the Restriction for Desktop Connectivity.
7080 * This function is a synchronous call.
7082 * @return BLUETOOTH_DPM_RESULT_SUCCESS - Success \n
7083 * BLUETOOTH_DPM_RESULT_ACCESS_DENIED - BT restricted \n
7084 * BLUETOOTH_DPM_RESULT_FAIL - Internal error \n
7088 * @param[out] value - State value.
7089 * BLUETOOTH_DPM_ALLOWED = 0, < DPM Policy status allowed.
7090 * BLUETOOTH_DPM_RESTRICTED = 1, < DPM Policy status restricted.
7094 int bluetooth_dpm_get_desktop_connectivity_state(bt_dpm_status_t *value);
7097 * @fn int bluetooth_dpm_set_discoverable_state(bt_dpm_status_t value);
7099 * @brief Sets the Restriction for Discoverable state.
7101 * This function is a synchronous call.
7103 * @return BLUETOOTH_DPM_RESULT_SUCCESS - Success \n
7104 * BLUETOOTH_DPM_RESULT_ACCESS_DENIED - BT restricted \n
7105 * BLUETOOTH_DPM_RESULT_FAIL - Internal error \n
7108 * @param[in] value - State value.
7109 * BLUETOOTH_DPM_ALLOWED = 0, < DPM Policy status allowed.
7110 * BLUETOOTH_DPM_RESTRICTED = 1, < DPM Policy status restricted.
7114 int bluetooth_dpm_set_discoverable_state(bt_dpm_status_t value);
7117 * @fn int bluetooth_dpm_get_discoverable_state(bt_dpm_status_t *value);
7119 * @brief Reads the Restriction for Discoverable state.
7121 * This function is a synchronous call.
7123 * @return BLUETOOTH_DPM_RESULT_SUCCESS - Success \n
7124 * BLUETOOTH_DPM_RESULT_ACCESS_DENIED - BT restricted \n
7125 * BLUETOOTH_DPM_RESULT_FAIL - Internal error \n
7129 * @param[out] value - State value.
7130 * BLUETOOTH_DPM_ALLOWED = 0, < DPM Policy status allowed.
7131 * BLUETOOTH_DPM_RESTRICTED = 1, < DPM Policy status restricted.
7135 int bluetooth_dpm_get_discoverable_state(bt_dpm_status_t *value);
7138 * @fn int bluetooth_dpm_set_limited_discoverable_state(bt_dpm_status_t value);
7140 * @brief Sets the Restriction for linited discoverable state..
7142 * This function is a synchronous call.
7144 * @return BLUETOOTH_DPM_RESULT_SUCCESS - Success \n
7145 * BLUETOOTH_DPM_RESULT_ACCESS_DENIED - BT restricted \n
7146 * BLUETOOTH_DPM_RESULT_FAIL - Internal error \n
7149 * @param[in] value - State value.
7150 * BLUETOOTH_DPM_ALLOWED = 0, < DPM Policy status allowed.
7151 * BLUETOOTH_DPM_RESTRICTED = 1, < DPM Policy status restricted.
7155 int bluetooth_dpm_set_limited_discoverable_state(bt_dpm_status_t value);
7158 * @fn int bluetooth_dpm_get_limited_discoverable_state(bt_dpm_status_t *value);
7160 * @brief Reads the Restriction for limited discoverable state.
7162 * This function is a synchronous call.
7164 * @return BLUETOOTH_DPM_RESULT_SUCCESS - Success \n
7165 * BLUETOOTH_DPM_RESULT_ACCESS_DENIED - BT restricted \n
7166 * BLUETOOTH_DPM_RESULT_FAIL - Internal error \n
7170 * @param[out] value - State value.
7171 * BLUETOOTH_DPM_ALLOWED = 0, < DPM Policy status allowed.
7172 * BLUETOOTH_DPM_RESTRICTED = 1, < DPM Policy status restricted.
7176 int bluetooth_dpm_get_limited_discoverable_state(bt_dpm_status_t *value);
7178 * @fn int bluetooth_dpm_set_data_transfer_state(bt_dpm_status_t value);
7180 * @brief Sets the Restriction for Data trasnfer.
7182 * This function is a synchronous call.
7184 * @return BLUETOOTH_DPM_RESULT_SUCCESS - Success \n
7185 * BLUETOOTH_DPM_RESULT_ACCESS_DENIED - BT restricted \n
7186 * BLUETOOTH_DPM_RESULT_FAIL - Internal error \n
7189 * @param[in] value - State value.
7190 * BLUETOOTH_DPM_ALLOWED = 0, < DPM Policy status allowed.
7191 * BLUETOOTH_DPM_RESTRICTED = 1, < DPM Policy status restricted.
7195 int bluetooth_dpm_set_data_transfer_state(bt_dpm_status_t value);
7199 * @fn int bluetooth_dpm_get_data_transfer_state(bt_dpm_status_t *value);
7201 * @brief Reads the Restriction for Data trasnfer.
7203 * This function is a synchronous call.
7205 * @return BLUETOOTH_DPM_RESULT_SUCCESS - Success \n
7206 * BLUETOOTH_DPM_RESULT_ACCESS_DENIED - BT restricted \n
7207 * BLUETOOTH_DPM_RESULT_FAIL - Internal error \n
7211 * @param[out] value - State value.
7212 * BLUETOOTH_DPM_ALLOWED = 0, < DPM Policy status allowed.
7213 * BLUETOOTH_DPM_RESTRICTED = 1, < DPM Policy status restricted.
7217 int bluetooth_dpm_get_data_transfer_state(bt_dpm_status_t *value);
7220 * @fn int bluetooth_proximity_monitor_set_property(const bluetooth_device_address_t *device_address,
7221 * bluetooth_pxp_poperty_t property, int value);
7223 * @brief Sets the Proximity alert level/properties for monitor role.
7225 * This function is a synchronous call.
7227 * @return BLUETOOTH_ERROR_NONE - Success \n
7228 * BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Device is not enabled \n
7229 * BLUETOOTH_ERROR_NOT_FOUND - Cannot find the proxy\n
7230 * BLUETOOTH_ERROR_INVALID_PARAM - Invalid parameter \n
7233 * @param[in] device_address remote device address
7234 * @param[in] property proximity profile property
7235 * @param[in] value alert level/property value to be set
7240 int bluetooth_proximity_monitor_set_property(const bluetooth_device_address_t *device_address,
7241 bluetooth_pxp_poperty_t property, int value);
7244 * @fn int bluetooth_proximity_monitor_get_property(const bluetooth_device_address_t *device_address,
7245 * bluetooth_pxp_poperty_t property, int *value);
7247 * @brief Reads the Proximity alert level/properties for monitor role.
7249 * This function is a synchronous call.
7251 * @return BLUETOOTH_ERROR_NONE - Success \n
7252 * BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Device is not enabled \n
7253 * BLUETOOTH_ERROR_NOT_FOUND - Cannot find the proxy\n
7254 * BLUETOOTH_ERROR_INVALID_PARAM - Invalid parameter \n
7257 * @param[in] device_address remote device address
7258 * @param[in] property proximity profile property
7259 * @param[out] value alert level/property value
7263 int bluetooth_proximity_monitor_get_property(const bluetooth_device_address_t *device_address,
7264 bluetooth_pxp_poperty_t property, int *value);
7267 * @fn int bluetooth_proximity_monitor_get_supported_services(const bluetooth_device_address_t *device_address,
7268 * int *services_supported);
7270 * @brief Reads the Proximity Monitor profile supported properties/services.
7272 * This function is a synchronous call.
7274 * @return BLUETOOTH_ERROR_NONE - Success \n
7275 * BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Device is not enabled \n
7276 * BLUETOOTH_ERROR_NOT_FOUND - Cannot find the proxy\n
7277 * BLUETOOTH_ERROR_INVALID_PARAM - Invalid parameter \n
7280 * @param[in] device_address remote device address
7281 * @param[out] services_supported proximity profile property/service
7285 int bluetooth_proximity_monitor_get_supported_services(const bluetooth_device_address_t *device_address,
7286 int *services_supported);
7289 * @fn int bluetooth_proximity_reporter_register();
7291 * @brief Register all proximity related services in BlueZ.
7293 * This function is a synchronous call.
7295 * @return BLUETOOTH_ERROR_NONE - Success \n
7296 * BLUETOOTH_ERROR_NOT_FOUND - Cannot find the proxy\n
7302 int bluetooth_proximity_reporter_register(void);
7305 * @fn int bluetooth_proximity_reporter_unregister();
7307 * @brief Unregister all proximity related services in BlueZ.
7309 * This function is a synchronous call.
7311 * @return BLUETOOTH_ERROR_NONE - Success \n
7312 * BLUETOOTH_ERROR_NOT_FOUND - Cannot find the proxy\n
7318 int bluetooth_proximity_reporter_unregister(void);
7321 * @fn int bluetooth_proximity_reporter_get_property(const bluetooth_device_address_t *device_address,
7322 * bluetooth_pxp_poperty_t property, int *value);
7324 * @brief Reads the Proximity alert level/properties for reporter role.
7326 * This function is a synchronous call.
7328 * @return BLUETOOTH_ERROR_NONE - Success \n
7329 * BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Device is not enabled \n
7330 * BLUETOOTH_ERROR_NOT_FOUND - Cannot find the proxy\n
7331 * BLUETOOTH_ERROR_INVALID_PARAM - Invalid parameter \n
7334 * @param[in] device_address remote device address
7335 * @param[in] property proximity profile property
7336 * @param[out] value alert level/property value
7340 int bluetooth_proximity_reporter_get_property(const bluetooth_device_address_t *device_address,
7341 bluetooth_pxp_poperty_t property, int *value);
7344 * @fn int bluetooth_tds_provider_register(void);
7346 * @brief Register Transport Discovery Provider role.
7348 * This function is a synchronous call.
7350 * @return BLUETOOTH_ERROR_NONE - Success \n
7351 * BLUETOOTH_ERROR_ALREADY_INITIALIZED - Already done \n
7352 * BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter not enabled \n
7353 * BLUETOOTH_ERROR_INTERNAL - Operation failed\n
7361 int bluetooth_tds_provider_register(void);
7364 * @fn int bluetooth_tds_provider_unregister(void);
7366 * @brief Unregister Transport Discovery Provider role.
7368 * This function is a synchronous call.
7370 * @return BLUETOOTH_ERROR_NONE - Success \n
7371 * BLUETOOTH_ERROR_NOT_INITIALIZED - Provider not registered \n
7372 * BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter not enabled \n
7373 * BLUETOOTH_ERROR_INTERNAL - Operation failed\n
7381 int bluetooth_tds_provider_unregister(void);
7384 * @fn int bluetooth_tds_provider_create(int transport, unsigned int handle);
7386 * @brief Create Transport Discovery Provider for a transport.
7388 * This function is a synchronous call.
7390 * @return BLUETOOTH_ERROR_NONE - Success \n
7391 * BLUETOOTH_ERROR_INVALID_PARAM - Invalid parameter \n
7392 * BLUETOOTH_ERROR_NOT_INITIALIZED - Provider not registered \n
7393 * BLUETOOTH_ERROR_INTERNAL - Operation failed\n
7396 * @param[in] Transport (BT, CUSTOM etc.)
7397 * @param[in] Unique handle for TDS provider.
7402 int bluetooth_tds_provider_create(int transport, unsigned int handle);
7405 * @fn int bluetooth_tds_provider_destroy(unsigned int handle);
7407 * @brief Remove previously created Transport Discovery Provider.
7409 * This function is a synchronous call.
7411 * @return BLUETOOTH_ERROR_NONE - Success \n
7412 * BLUETOOTH_ERROR_INVALID_PARAM - Invalid parameter \n
7415 * @param[in] Unique handle for previously created provider.
7420 int bluetooth_tds_provider_destroy(unsigned int handle);
7423 * @fn int bluetooth_set_tds_provider_manuf_data(unsigned char *buf, unsigned int length);
7425 * @brief Set transport block for in advertisement and gatt db.
7427 * This function is a synchronous call.
7429 * @return BLUETOOTH_ERROR_NONE - Success \n
7430 * BLUETOOTH_ERROR_INVALID_PARAM - Invalid parameter \n
7431 * BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter not enabled \n
7432 * BLUETOOTH_ERROR_INTERNAL - Operation failed\n
7435 * @param[in] Provider specific manufacturer data.
7436 * @param[in] Provider specific manufacturer data length.
7441 int bluetooth_set_tds_provider_manuf_data(unsigned char *buf, unsigned int length);
7444 * @fn int bluetooth_set_tds_provider_transport_data(unsigned int tds_handle,
7445 * bluetooth_tds_transport_state_t state, unsigned char *buf, unsigned int length);
7447 * @brief Set transport block for in advertisement and gatt db.
7449 * This function is a synchronous call.
7451 * @return BLUETOOTH_ERROR_NONE - Success \n
7452 * BLUETOOTH_ERROR_INVALID_PARAM - Invalid parameter \n
7453 * BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Adapter not enabled \n
7454 * BLUETOOTH_ERROR_INTERNAL - Operation failed\n
7457 * @param[in] Unique handle for TDS provider.
7458 * @param[in] Transport state (On/Off/Not Available).
7459 * @param[in] Transport specific data block.
7460 * @param[in] Transport specific data block length.
7465 int bluetooth_set_tds_provider_transport_data(unsigned int tds_handle,
7466 bluetooth_tds_transport_state_t state, unsigned char *buf, unsigned int length);
7469 * @fn int bluetooth_send_tds_activation_response(bluetooth_device_address_t *device_address,
7470 * unsigned int tds_handle, int response, unsigned char *buf, unsigned int length);
7472 * @brief Send response to TDS activation request from remoted device.
7474 * This function is a synchronous call.
7476 * @return BLUETOOTH_ERROR_NONE - Success \n
7477 * BLUETOOTH_ERROR_INVALID_PARAM - Invalid parameter \n
7478 * BLUETOOTH_ERROR_NOT_INITIALIZED - Provider not registered \n
7479 * BLUETOOTH_ERROR_INTERNAL - Operation failed\n
7482 * @param[in] Remote device BT address.
7483 * @param[in] Unique handle for TDS provider.
7484 * @param[in] Response for TDS activation request.
7485 * @param[in] Transport specific data block to be sent in activation response.
7486 * @param[in] Data block length.
7491 int bluetooth_send_tds_activation_response(bluetooth_device_address_t *device_address,
7492 unsigned int tds_handle, int response, unsigned char *buf, unsigned int length);
7495 * @fn int bluetooth_tds_read_transport_data(bluetooth_device_address_t *device_address, const char *handle);
7497 * @brief Reads the Complete TDS transport Blocks from Remote Provider's GATT database.
7499 * This function is an asynchronous call.
7501 * @return BLUETOOTH_ERROR_NONE - Success \n
7502 * BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Device is not enabled \n
7503 * BLUETOOTH_ERROR_INTERNAL - Internal Error \n
7504 * BLUETOOTH_ERROR_IN_PROGRESS - Already Read Request is pending on same provider \n
7505 * BLUETOOTH_ERROR_INVALID_PARAM - Invalid parameter \n
7508 * @param[in] device_address remote device address
7509 * @param[in] handle attribute handle
7511 * @remark BLUETOOTH_EVENT_TDS_TRANSPORT_DATA_RECEIVED event is sent to pplication
7512 * when TDS data is received from Remote provider
7514 int bluetooth_tds_read_transport_data(const bluetooth_device_address_t *device_address,
7515 const char *handle);
7518 * @fn int bluetooth_tds_enable_control_point(const bluetooth_device_address_t *device_address, const char *handle);
7520 * @brief Enables CCCD on Remote Provider.
7522 * This function is an asynchronous call.
7524 * @return BLUETOOTH_ERROR_NONE - Success \n
7525 * BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Device is not enabled \n
7526 * BLUETOOTH_ERROR_INTERNAL - Internal Error \n
7527 * BLUETOOTH_ERROR_IN_PROGRESS - Already Control Point activation is ongoing to Same Provider \n
7528 * BLUETOOTH_ERROR_INVALID_PARAM - Invalid parameter \n
7531 * @param[in] device_address remote device address
7532 * @param[in] handle attribute handle
7534 * @remark BLUETOOTH_EVENT_TDS_CONTROL_POINT_ENABLED event is sent to application
7535 * when Indication is enabled on Remote provider
7537 int bluetooth_tds_enable_control_point(const bluetooth_device_address_t *device_address,
7538 const char *handle);
7541 * @fn int bluetooth_tds_activate_control_point(const bluetooth_device_address_t *device_address, const char *handle
7542 * unsigned char *buf, int length);
7543 * @brief Sends activation request for Alternate Transport enable on Remote Provider
7545 * This function is an asynchronous call.
7547 * @return BLUETOOTH_ERROR_NONE - Success \n
7548 * BLUETOOTH_ERROR_DEVICE_NOT_ENABLED - Device is not enabled \n
7549 * BLUETOOTH_ERROR_INTERNAL - Internal Error \n
7550 * BLUETOOTH_ERROR_IN_PROGRESS - Already Control Point activation is ongoing to Same Provider \n
7551 * BLUETOOTH_ERROR_INVALID_PARAM - Invalid parameter \n
7554 * @param[in] device_address remote device address
7555 * @param[in] handle attribute handle
7556 * @param[in] buf Control point activation param
7557 * @param[in] param length
7559 * @remark BLUETOOTH_EVENT_TDS_ACTIVATION_INDICATION event is sent to application when Indication response
7560 * is received from remote Provider
7562 int bluetooth_tds_activate_control_point(const bluetooth_device_address_t *device_address, const char *handle,
7563 unsigned char *buf, int length);
7566 * @fn int bluetooth_otp_server_init(const char *directory);
7568 * @brief Starts OTP server.
7570 * This function is a synchronous call.
7580 int bluetooth_otp_server_init(const char *directory);
7583 * @fn int bluetooth_otp_server_deinit();
7585 * @brief Stops OTP server.
7587 * This function is a synchronous call.
7597 int bluetooth_otp_server_deinit();
7600 * @fn int bluetooth_otp_enable_notification(const char *handle);
7602 * @brief Enable notification for remote OACP & OLCP characteristics.
7604 * This function is a synchronous call.
7614 int bluetooth_otp_enable_notification(const char *handle);
7617 * @fn int bluetooth_otp_write_characteristics_value( const char *handle,
7618 * unsigned char *buf, int length);
7620 * @brief Write value on remote characteristics.
7622 * This function is a synchronous call.
7632 int bluetooth_otp_write_characteristics_value( const char *handle,
7633 unsigned char *buf, int length);
7636 * @fn int bluetooth_otp_read_characteristic_value(const char *handle);
7638 * @brief Read value for remote characteristics.
7640 * This function is a synchronous call.
7650 int bluetooth_otp_read_characteristic_value(const char *handle);
7653 * @fn int bluetooth_otp_connect_otc(const bluetooth_device_address_t *device_address);
7655 * @brief Read value for remote characteristics.
7657 * This function is a synchronous call.
7667 int bluetooth_otp_connect_otc(const bluetooth_device_address_t *device_address);
7670 * @fn int bluetooth_otp_disconnect_otc(const bluetooth_device_address_t *device_address);
7672 * @brief Read value for remote characteristics.
7674 * This function is a synchronous call.
7684 int bluetooth_otp_disconnect_otc(const bluetooth_device_address_t *device_address);
7692 #endif /* __cplusplus */
7693 #endif /* _BLUETOOTH_API_H_*/