Tizen Native API  8.0
Bluetooth LE Adapter for Bluetooth Extended Advertising

Bluetooth LE API provides functions for bluetooth extended advertising functionality such as setting Primary and Secondary Phy.

Required Header

#include <bluetooth.h>

Overview

Bluetooth LE API provides functions for bluetooth extended advertising functionality such as setting Primary and Secondary Phy

Related Features

This API is related with the following features:

  • http://tizen.org/feature/network.bluetooth
  • http://tizen.org/feature/network.bluetooth.le
  • http://tizen.org/feature/network.bluetooth.le.5_0
  • http://tizen.org/feature/network.bluetooth.le.adv_ext
    It is recommended to design applications with regard to features, for reliability.

You can check if the device supports the related features for this API by using System Information, and control your application's actions accordingly.

To ensure your application is only running on devices with specific features, please define the features in your manifest file using the manifest editor in the SDK.

More details on featuring your application can be found from feature element description.

Functions

int bt_adapter_le_start_scan_new (bt_adapter_le_new_scan_result_cb cb, void *user_data)
 Starts the LE scan to find LE advertisement.
int bt_adapter_le_set_scan_role (bt_adapter_le_scan_role_e role)
 Sets Bluetooth LE scan role.
int bt_adapter_le_set_scan_phy (bt_adapter_le_phy_e phy)
 Sets Bluetooth LE scan phy.
int bt_adapter_le_set_advertising_legacy_mode (bt_advertiser_h advertiser, bool is_legacy)
 Sets Bluetooth LE advertising legacy mode.
int bt_adapter_le_set_advertising_primary_phy (bt_advertiser_h advertiser, bt_adapter_le_phy_e primary_phy)
 Sets Bluetooth LE advertising primary phy.
int bt_adapter_le_set_advertising_secondary_phy (bt_advertiser_h advertiser, bt_adapter_le_phy_e secondary_phy)
 Sets Bluetooth LE advertising secondary phy.
int bt_adapter_le_is_extended_advertising_supported (bool *is_supported)
 Checks if LE Extended Advertising feature is supported or not.
int bt_adapter_le_is_extended_scan_supported (bool *is_supported)
 Checks if LE Extended Scan feature is supported or not.
int bt_adapter_le_get_maximum_advertising_data_length (int *data_length)
 Gets maximum advertisement data length supported by controller.
int bt_adapter_le_get_new_scan_result_primary_phy (bt_new_scan_result_h handle, int *primary_phy)
 Gets the primary phy data from the extended scan result.
int bt_adapter_le_get_new_scan_result_secondary_phy (bt_new_scan_result_h handle, int *secondary_phy)
 Gets the secondary phy data from the extended scan result.
int bt_adapter_le_get_new_scan_result_advertising_sid (bt_new_scan_result_h handle, int *advertising_sid)
 Gets the advertising sid data from the extended scan result.
int bt_adapter_le_get_new_scan_result_periodic_adv_int (bt_new_scan_result_h handle, int *periodic_adv_int)
 Gets the periodic advertising interval data from the extended scan result.
int bt_adapter_le_get_new_scan_result_is_extended (bt_new_scan_result_h handle, bool *is_extended)
 Checks if the scan result is extended or not.
int bt_adapter_le_get_new_scan_result_legacy_info (bt_new_scan_result_h handle, bt_adapter_le_device_scan_result_info_s **legacy_info)
 Gets the legacy scan result information from the extended scan result.

Typedefs

typedef void * bt_new_scan_result_h
 The handle of a new scan result.
typedef void(* bt_adapter_le_new_scan_result_cb )(int result, bt_new_scan_result_h handle, void *user_data)
 Called when the LE advertisement has been found.

Typedef Documentation

typedef void(* bt_adapter_le_new_scan_result_cb)(int result, bt_new_scan_result_h handle, void *user_data)

Called when the LE advertisement has been found.

Since :
8.0
Parameters:
[in]resultThe result of the LE scan
[in]handleThe handle of a new scan result
[in]user_dataThe user data passed from the start function
See also:
bt_adapter_le_start_scan_new()
typedef void* bt_new_scan_result_h

The handle of a new scan result.

Since :
8.0

Enumeration Type Documentation

Enumerations of the Bluetooth LE phy.

Since :
8.0
Enumerator:
BT_LE_ALL_PHY 

All phy

BT_LE_1M_PHY 

1M phy

BT_LE_2M_PHY 

2M phy

BT_LE_CODED_PHY 

Coded phy

Enumerations of the Bluetooth LE scan role.

Since :
8.0
Enumerator:
BT_ADAPTER_LE_SCAN_ALL 

Scan all

BT_ADAPTER_LE_SCAN_LEGACY_ONLY 

Legacy scan only

BT_ADAPTER_LE_SCAN_EXTENDED_ONLY 

Extended scan only


Function Documentation

Gets maximum advertisement data length supported by controller.

Since :
8.0
Remarks:
The LE Maximum Advertising Data Length feature was introduced in the BT 5.0 core specification.
Parameters:
[out]data_lengthThe maximum length supported by controller for use as advertisement data or scan response data
Returns:
0 on success, otherwise a negative error value.
Return values:
BT_ERROR_NONESuccessful
BT_ERROR_NOT_SUPPORTEDNot supported
BT_ERROR_INVALID_PARAMETERInvalid parameter
BT_ERROR_NOT_INITIALIZEDNot initialized
BT_ERROR_NOT_ENABLEDAdapter is not enabled
BT_ERROR_OPERATION_FAILEDOperation failed
Precondition:
The state of local Bluetooth must be BT_ADAPTER_ENABLED.
int bt_adapter_le_get_new_scan_result_advertising_sid ( bt_new_scan_result_h  handle,
int *  advertising_sid 
)

Gets the advertising sid data from the extended scan result.

Since :
8.0
Parameters:
[in]handleThe extended scan result handle
[out]advertising_sidThe advertising sid
Returns:
0 on success, otherwise a negative error value.
Return values:
BT_ERROR_NONESuccessful
BT_ERROR_NOT_SUPPORTEDNot supported
BT_ERROR_INVALID_PARAMETERInvalid parameter
BT_ERROR_NOT_INITIALIZEDNot initialized
BT_ERROR_OPERATION_FAILEDOperation failed
See also:
bt_adapter_le_start_scan_new()
bt_adapter_le_new_scan_result_cb()
int bt_adapter_le_get_new_scan_result_is_extended ( bt_new_scan_result_h  handle,
bool *  is_extended 
)

Checks if the scan result is extended or not.

Since :
8.0
Parameters:
[in]handleThe extended scan result handle
[out]is_extendedThe whether to extended
Returns:
0 on success, otherwise a negative error value.
Return values:
BT_ERROR_NONESuccessful
BT_ERROR_NOT_SUPPORTEDNot supported
BT_ERROR_INVALID_PARAMETERInvalid parameter
BT_ERROR_NOT_INITIALIZEDNot initialized
BT_ERROR_OPERATION_FAILEDOperation failed
See also:
bt_adapter_le_start_scan_new()
bt_adapter_le_new_scan_result_cb()

Gets the legacy scan result information from the extended scan result.

Since :
8.0
Remarks:
The legacy_info should not be released.
The legacy_info is available until the callback has been called.
Parameters:
[in]handleThe extended scan result handle
[out]legacy_infoThe legacy scan result information
Returns:
0 on success, otherwise a negative error value.
Return values:
BT_ERROR_NONESuccessful
BT_ERROR_NOT_SUPPORTEDNot supported
BT_ERROR_INVALID_PARAMETERInvalid parameter
BT_ERROR_NOT_INITIALIZEDNot initialized
BT_ERROR_OPERATION_FAILEDOperation failed
See also:
bt_adapter_le_start_scan_new()
bt_adapter_le_new_scan_result_cb()
int bt_adapter_le_get_new_scan_result_periodic_adv_int ( bt_new_scan_result_h  handle,
int *  periodic_adv_int 
)

Gets the periodic advertising interval data from the extended scan result.

Since :
8.0
Parameters:
[in]handleThe extended scan result handle
[out]periodic_adv_intThe periodic advertising interval
Returns:
0 on success, otherwise a negative error value.
Return values:
BT_ERROR_NONESuccessful
BT_ERROR_NOT_SUPPORTEDNot supported
BT_ERROR_INVALID_PARAMETERInvalid parameter
BT_ERROR_NOT_INITIALIZEDNot initialized
BT_ERROR_OPERATION_FAILEDOperation failed
See also:
bt_adapter_le_start_scan_new()
bt_adapter_le_new_scan_result_cb()

Gets the primary phy data from the extended scan result.

Since :
8.0
Parameters:
[in]handleThe extended scan result handle
[out]primary_phyThe primary PHY
Returns:
0 on success, otherwise a negative error value.
Return values:
BT_ERROR_NONESuccessful
BT_ERROR_NOT_SUPPORTEDNot supported
BT_ERROR_INVALID_PARAMETERInvalid parameter
BT_ERROR_NOT_INITIALIZEDNot initialized
BT_ERROR_OPERATION_FAILEDOperation failed
See also:
bt_adapter_le_start_scan_new()
bt_adapter_le_new_scan_result_cb()
int bt_adapter_le_get_new_scan_result_secondary_phy ( bt_new_scan_result_h  handle,
int *  secondary_phy 
)

Gets the secondary phy data from the extended scan result.

Since :
8.0
Parameters:
[in]handleThe extended scan result handle
[out]secondary_phyThe secondary PHY
Returns:
0 on success, otherwise a negative error value.
Return values:
BT_ERROR_NONESuccessful
BT_ERROR_NOT_SUPPORTEDNot supported
BT_ERROR_INVALID_PARAMETERInvalid parameter
BT_ERROR_NOT_INITIALIZEDNot initialized
BT_ERROR_OPERATION_FAILEDOperation failed
See also:
bt_adapter_le_start_scan_new()
bt_adapter_le_new_scan_result_cb()

Checks if LE Extended Advertising feature is supported or not.

Since :
8.0
Remarks:
The LE Extended Advertising feature was introduced in the BT 5.0 core specification.
Parameters:
[out]is_supportedThe LE Extended Advertising feature support: (true = supported , false = not supported)
Returns:
0 on success, otherwise a negative error value.
Return values:
BT_ERROR_NONESuccessful
BT_ERROR_NOT_SUPPORTEDNot supported
BT_ERROR_INVALID_PARAMETERInvalid parameter
BT_ERROR_NOT_INITIALIZEDNot initialized
BT_ERROR_NOT_ENABLEDAdapter is not enabled
BT_ERROR_OPERATION_FAILEDOperation failed
Precondition:
The state of local Bluetooth must be BT_ADAPTER_ENABLED.
int bt_adapter_le_is_extended_scan_supported ( bool *  is_supported)

Checks if LE Extended Scan feature is supported or not.

Since :
8.0
Remarks:
The LE Extended Scan feature was introduced in the BT 5.0 core specification.
Parameters:
[out]is_supportedThe LE Extended Scan feature support: (true = supported , false = not supported)
Returns:
0 on success, otherwise a negative error value.
Return values:
BT_ERROR_NONESuccessful
BT_ERROR_NOT_SUPPORTEDNot supported
BT_ERROR_INVALID_PARAMETERInvalid parameter
BT_ERROR_NOT_INITIALIZEDNot initialized
BT_ERROR_NOT_ENABLEDAdapter is not enabled
BT_ERROR_OPERATION_FAILEDOperation failed
Precondition:
The state of local Bluetooth must be BT_ADAPTER_ENABLED.
int bt_adapter_le_set_advertising_legacy_mode ( bt_advertiser_h  advertiser,
bool  is_legacy 
)

Sets Bluetooth LE advertising legacy mode.

Since :
8.0
Privilege Level:
public
Privilege:
http://tizen.org/privilege/bluetooth
Parameters:
[in]advertiserThe handle of advertiser
[in]is_legacyAdvertisement is extended or legacy
Returns:
0 on success, otherwise a negative error value.
Return values:
BT_ERROR_NONESuccessful
BT_ERROR_NOT_SUPPORTEDNot supported
BT_ERROR_PERMISSION_DENIEDPermission denied
BT_ERROR_INVALID_PARAMETERInvalid parameter
BT_ERROR_NOT_ENABLEDAdapter is not enabled
Precondition:
The state of local bluetooth must be BT_ADAPTER_ENABLED.
The bluetooth service must be initialized with bt_initialize().
See also:
bt_initialize()

Sets Bluetooth LE advertising primary phy.

Since :
8.0
Privilege Level:
public
Privilege:
http://tizen.org/privilege/bluetooth
Parameters:
[in]advertiserThe handle of advertiser
[in]primary_phyPrimary phy of advertiser. Valid values are BT_LE_1M_PHY, BT_LE_CODED_PHY.
Returns:
0 on success, otherwise a negative error value.
Return values:
BT_ERROR_NONESuccessful
BT_ERROR_NOT_SUPPORTEDNot supported
BT_ERROR_PERMISSION_DENIEDPermission denied
BT_ERROR_INVALID_PARAMETERInvalid parameter
BT_ERROR_NOT_ENABLEDAdapter is not enabled
Precondition:
The state of local bluetooth must be BT_ADAPTER_ENABLED.
The bluetooth service must be initialized with bt_initialize().
See also:
bt_initialize()

Sets Bluetooth LE advertising secondary phy.

Since :
8.0
Privilege Level:
public
Privilege:
http://tizen.org/privilege/bluetooth
Parameters:
[in]advertiserThe handle of advertiser
[in]secondary_phySecondary phy of advertiser, Valid values are BT_LE_1M_PHY, BT_LE_2M_PHY, BT_LE_CODED_PHY.
Returns:
0 on success, otherwise a negative error value.
Return values:
BT_ERROR_NONESuccessful
BT_ERROR_NOT_SUPPORTEDNot supported
BT_ERROR_PERMISSION_DENIEDPermission denied
BT_ERROR_INVALID_PARAMETERInvalid parameter
BT_ERROR_NOT_ENABLEDAdapter is not enabled
Precondition:
The state of local bluetooth must be BT_ADAPTER_ENABLED.
The bluetooth service must be initialized with bt_initialize().
See also:
bt_initialize()

Sets Bluetooth LE scan phy.

Since :
8.0
Privilege Level:
public
Privilege:
http://tizen.org/privilege/bluetooth
Parameters:
[in]phyThe scanning phy. Valid values are one of BT_LE_ALL_PHY, BT_LE_1M_PHY, BT_LE_CODED_PHY.
Returns:
0 on success, otherwise a negative error value.
Return values:
BT_ERROR_NONESuccessful
BT_ERROR_NOT_SUPPORTEDNot supported
BT_ERROR_PERMISSION_DENIEDPermission denied
BT_ERROR_INVALID_PARAMETERInvalid parameter
BT_ERROR_NOT_ENABLEDAdapter is not enabled
Precondition:
The state of local bluetooth must be BT_ADAPTER_ENABLED.
The bluetooth service must be initialized with bt_initialize().
See also:
bt_initialize()

Sets Bluetooth LE scan role.

Since :
8.0
Privilege Level:
public
Privilege:
http://tizen.org/privilege/bluetooth
Parameters:
[in]roleThe scan role
Returns:
0 on success, otherwise a negative error value.
Return values:
BT_ERROR_NONESuccessful
BT_ERROR_NOT_SUPPORTEDNot supported
BT_ERROR_PERMISSION_DENIEDPermission denied
BT_ERROR_INVALID_PARAMETERInvalid parameter
BT_ERROR_NOT_ENABLEDAdapter is not enabled
Precondition:
The state of local bluetooth must be BT_ADAPTER_ENABLED.
The bluetooth service must be initialized with bt_initialize().
See also:
bt_initialize()

Starts the LE scan to find LE advertisement.

If a LE advertisement is found, bt_adapter_le_new_scan_result_cb() will be invoked.

Since :
8.0
Privilege Level:
public
Privilege:
http://tizen.org/privilege/bluetooth
Parameters:
[in]cbThe callback to report the result of this function
[in]user_dataThe user data to be passed when callback is called
Returns:
0 on success, otherwise a negative error value.
Return values:
BT_ERROR_NONESuccessful
BT_ERROR_NOT_SUPPORTEDNot supported
BT_ERROR_PERMISSION_DENIEDPermission denied
BT_ERROR_INVALID_PARAMETERInvalid parameter
BT_ERROR_NOT_INITIALIZEDNot initialized
BT_ERROR_NOT_ENABLEDNot enabled
BT_ERROR_NOW_IN_PROGRESSOperation is now in progress
BT_ERROR_OPERATION_FAILEDOperation failed
Precondition:
The state of local Bluetooth must be BT_ADAPTER_ENABLED.
Postcondition:
This function invokes bt_adapter_le_scan_result_cb().
See also:
bt_adapter_le_new_scan_result_cb()