nRF51 SDK - S110 SoftDevice
 All Data Structures Functions Variables Typedefs Enumerations Enumerator Groups Pages
BLE S110 GAP Functions

Table of Contents

0x70 - sd_ble_gap_address_set

Function packet format

Frame format encoding of the sd_ble_gap_address_set packet.

The parameters are encoded in the following order:

Length Parameter Value
1 byte Operation Code 0x70, see BLE_GAP_SVCS
1 byte Address Cycle Mode see sd_ble_gap_address_set
1 byte Address present 0x00 Field not present, 0x01 Field present
7 bytes Address see ble_gap_addr_t


As can also be seen inside Figure 1 the 7 bytes inside ble_gap_addr_t are encoded as:

Length Parameter Value
1 byte Address Type see ble_gap_addr_t::addr_type
6 bytes Address see ble_gap_addr_t::addr


gap_address_set_packet.png
Figure 1: Packet format for sd_ble_address_set function.


Response packet format

Frame format encoding of the sd_ble_gap_address_set response packet:

Length Parameter Value
1 byte Operation Code 0x70, see BLE_GAP_SVCS
4 bytes nRF Error Code see sd_ble_gap_address_set


default_response_packet_generic.png
Figure 2: Packet format for sd_ble_gap_address_set response.


0x71 - sd_ble_gap_address_get

Function packet format

Frame format encoding of the sd_ble_gap_address_get packet.

The parameters are encoded in the following order:

Length Parameter Value
1 byte Operation Code 0x71, see BLE_GAP_SVCS
1 byte Address present 0x00 Field not present, 0x01 Field present


gap_address_get_request.png
Figure 1: Packet format for sd_ble_gap_address_get function.


Response packet format

In case of a successful command, i.e. 'nRF Error Code' = NRF_SUCCESS nRF Error Code is followed by conditional data.

Frame format encoding of the sd_ble_gap_address_get response packet.:

Length Parameter Value
1 byte Operation Code 0x71, see BLE_GAP_SVCS
4 bytes nRF Error Code see sd_ble_gap_address_get
7 bytes Conditional: Address see ble_gap_addr_t

ble_gap_addr_t is encoded as:

Length Parameter Value
1 byte Address Type see ble_gap_addr_t::addr_type
6 bytes Address see ble_gap_addr_t::addr


gap_address_get_response.png
Figure 2: Packet format for sd_ble_gap_address_get response.


0x72 - sd_ble_gap_adv_data_set

Function packet format

Frame format encoding of the sd_ble_gap_adv_data_set packet.

The parameters are encoded in the following order:

Length Parameter Value
1 byte Operation Code 0x72, see BLE_GAP_SVCS
1 byte Advertising Data Length see sd_ble_gap_adv_data_set
1 byte Advertising Data Present 0x00 Field not present, 0x01 Field present
n bytes Advertising Data see sd_ble_gap_adv_data_set
1 byte Scan Response Data Length see sd_ble_gap_adv_data_set
1 byte Scan Response Data Present 0x00 Field not present, 0x01 Field present
n bytes Scan Response Data see sd_ble_gap_adv_data_set


advertising_set_packet.png
Figure 1: Packet format for sd_ble_gap_adv_set function.


Response packet format

Frame format encoding of the sd_ble_gap_adv_data_set response packet:

Length Parameter Value
1 byte Operation Code 0x72, see BLE_GAP_SVCS
4 bytes nRF Error Code see sd_ble_gap_adv_data_set


default_response_packet_generic.png
Figure 2: Packet format for sd_ble_gap_adv_data_set success response.


0x73 - sd_ble_gap_adv_start

Function packet format

Frame format encoding of the sd_ble_gap_adv_start packet.

The parameters are encoded in the following order:

Length Parameter Value
1 byte Operation Code 0x73, see BLE_GAP_SVCS
1 byte Advertising Parameters Present 0x00 Fields not present, 0x01 Fields present
8 ... 201 bytes GAP Advertising Parameters see ble_gap_adv_params_t


The data inside ble_gap_adv_start_params_t are encoded as:

Length Parameter Value
1 byte GAP Advertising Type see ble_gap_adv_params_t::type
1 byte Peer Address Present 0x00 Field not present, 0x01 Field present
7 bytes Conditional: Peer Address see ble_gap_adv_params_t::p_peer_addr (Encoding details can be seen in Figure 2)
1 byte Filter Policy see ble_gap_adv_params_t::fp
1 byte GAP Whitelist Present 0x00 Field not present, 0x01 Field present
2 ... 186 bytes Conditional: GAP Whitelist see ble_gap_adv_params_t::p_whitelist (Encoding details can be seen in Figure 3)
2 bytes Interval see in ble_gap_adv_params_t::interval
2 bytes Timeout see in ble_gap_adv_params_t::timeout


advertising_start_packet.png
Figure 1: Packet format for sd_ble_gap_adv_start function.


Encoding of Peer Address

If 'Peer Address Present' = 0x01, then the encoding of the 'Peer Address' will follow. 'Peer Address' is a ble_gap_addr_t .

The data inside ble_gap_addr_t are encoded as:

Length Parameter Value
1 byte Address type see ble_gap_addr_t::addr_type
6 bytes Address see ble_gap_addr_t::addr


If 'Peer Address Present' = 0x00, the encoding of 'Filter Policy' will follow, and hence no 'Peer Address' will be encoded in the packet.

advertising_start_address_packet.png
Figure 2: Encoding of peer address if present.


Encoding of GAP Whitelist

If 'GAP Whitelist Present' = 0x01, then the encoding of the 'GAP Whitelist' will follow.
'GAP Whitelist' is a ble_gap_whitelist_t.

ble_gap_whitelist_t contains two counters, ble_gap_whitelist_t::addr_count and ble_gap_whitelist_t::irk_count, as well as two pointers to arrays. One pointer ble_gap_whitelist_t::pp_addrs pointing to array of device address pointers, pointing to addresses to be used in whitelist, and a pointer ble_gap_whitelist_t::pp_irks pointing to array of Identity Resolving Key (IRK) pointers, each pointing to an IRK in the whitelist.

The encoded 'GAP whitelist' will first contain the address counter, followed by the encoding of each address. Then the IRK counter, followed by the encoding of each IRK.

The data inside ble_gap_whitelist_t are encoded as:

Length Parameter Value
1 byte Address Counter see ble_gap_whitelist_t::addr_count
0 ... 56 bytes Address list see ble_gap_addr_t ('Address Counter' specifies the actual number of addresses encoded)
1 byte IRK Counter see ble_gap_whitelist_t::irk_count
0 ... 128 bytes IRK list see ble_gap_irk_t ('IRK Counter' specifies the actual number of IRKs encoded)


If 'GAP Whitelist Present' = 0x00, the encoding of 'Interval' will follow, and hence no 'GAP Whitelist' will be encoded in the packet.

advertising_start_whitelist_packet.png
Figure 3: Encoding of GAP Whitelist if present.


Encoding of GAP Whitelist Addresses Array

The encoding of whitelist addresses start with the 'Whitelist Count' according to the value in ble_gap_whitelist_t::addr_count.
If, the value of 'Whitelist Count' is 0, then no whitelist addresses are encoded, and the 'Whitelist Count' will be followed by the 'IRK Count' as seen in the top of Figure 4.

Otherwise each whitelist address, ble_gap_addr_t , will be encoded as specified by the counter. Each address is 7 bytes, with first byte specifying the address type.

The Whitelist addresses are encoded as:

Length Parameter Value
1 byte Whitelist Address Count see ble_gap_whitelist_t::addr_count

For each address, as defined by 'Whitelist Address Count', the following data are encoded:

Length Parameter Value
1 byte Address type see ble_gap_addr_t::addr_type
6 bytes Address see ble_gap_addr_t::addr


advertising_start_whitelist_addr_full_packet.png
Figure 4: Encoding of Whitelist Addresses.


Encoding of GAP Whitelist IRKs Array

The encoding of whitelist IRKs start with the 'IRK Count' according to the value in ble_gap_whitelist_t::irk_count.
If, the value of 'IRK Count' is 0, then no IRKs are encoded, and the 'IRK Count' will be followed by the 'Interval' field as seen in the top of Figure 5.

Otherwise each IRK, ble_gap_irk_t , will be encoded as specified by the counter. Each IRK is 16 bytes.

The IRKs are encoded as:

Length Parameter Value
1 byte IRK Count see ble_gap_whitelist_t::irk_count

For each IRK, as defined by 'IRK Count', the following data are encoded:

Length Parameter Value
16 bytes IRK see ble_gap_irk_t


advertising_start_whitelist_irk_packet.png
Figure 5: Encoding of Whitelist IRKs.


Response packet format

Frame format encoding of the sd_ble_gap_adv_start response packet:

Length Parameter Value
1 byte Operation Code 0x73, see BLE_GAP_SVCS
4 bytes nRF Error Code see sd_ble_gap_adv_start


default_response_packet_generic.png
Figure 6: Packet format for sd_ble_gap_adv_start response.


0x74 - sd_ble_gap_adv_stop

Function packet format.

Frame format encoding of the sd_ble_gap_adv_stop packet.

The parameters are encoded in the following order:

Length Parameter Value
1 byte Operation Code 0x74, see BLE_GAP_SVCS


gap_adv_stop.png
Figure 1: Packet format for sd_ble_gap_adv_stop function.


Response packet format

Frame format encoding of the sd_ble_gap_adv_stop response packet:

Length Parameter Value
1 byte Operation Code 0x74, see BLE_GAP_SVCS
4 bytes nRF Error Code see sd_ble_gap_adv_stop


default_response_packet_generic.png
Figure 2: Packet format for sd_ble_gap_adv_stop response.


0x75 - sd_ble_gap_conn_param_update

Function packet format

Frame format encoding of the sd_ble_gap_conn_param_update packet.

The parameters are encoded in the following order:

Length Parameter Value
1 byte Operation Code 0x75, see BLE_GAP_SVCS
2 bytes Connection Handle Handle Value
1 byte Connection Parameters Present 0x00 Field not present, 0x01 Field present
8 bytes Conditional: Connection Parameters see ble_gap_conn_params_t


As can also be seen inside Figure 1 the 8 bytes inside ble_gap_conn_params_t are encoded as:

Length Parameter Value
2 bytes see ble_gap_conn_params_t::min_conn_interval Minimum Connection Interval
2 bytes see ble_gap_conn_params_t::max_conn_interval Maximum Connection Interval
2 bytes see ble_gap_conn_params_t::slave_latency Slave Latency in number of connection events
2 bytes see ble_gap_conn_params_t::conn_sup_timeout Connection Supervision Timeout


conn_param_update_packet.png
Figure 1: Packet format for sd_ble_gap_conn_param_update function.


Response packet format

Frame format encoding of the sd_ble_gap_conn_param_update response packet:

Length Parameter Value
1 byte Operation Code 0x75 (117)
4 bytes nRF Error Code see sd_ble_gap_conn_param_update


default_response_packet_generic.png
Figure 2: Packet format for sd_ble_gap_conn_param_update response.


0x76 - sd_ble_gap_disconnect

Function packet format

Frame format encoding of the sd_ble_gap_disconnect packet.

The parameters are encoded in the following order:

Length Parameter Value
1 byte Operation Code 0x76, see BLE_GAP_SVCS
2 bytes Connection Handle Handle
1 byte HCI Status Code see Bluetooth status codes


disconnect_packet.png
Figure 1: Packet format for sd_ble_gap_disconnect function.


Response packet format

Frame format encoding of the sd_ble_gap_disconnect response packet:

Length Parameter Value
1 byte Operation Code 0x76, see BLE_GAP_SVCS
4 bytes nRF Error Code see sd_ble_gap_disconnect


default_response_packet_generic.png
Figure 2: Packet format for sd_ble_gap_disconnect response.


0x77 - sd_ble_gap_tx_power_set

Function packet format

Frame format encoding of the sd_ble_gap_tx_power_set packet.

The parameters are encoded in the following order:

Length Parameter Value
1 byte Operation Code 0x77, see BLE_GAP_SVCS
1 byte TX Power in dBm see sd_ble_gap_tx_power_set


gap_tx_power_set.png
Figure 1: Packet format for sd_ble_gap_tx_power_set function.


Response packet format

Frame format encoding of the sd_ble_gap_tx_power_set response packet:

Length Parameter Value
1 byte Operation Code 0x77, see BLE_GAP_SVCS
4 bytes nRF Error Code see sd_ble_gap_tx_power_set


default_response_packet_generic.png
Figure 2: Packet format for sd_ble_gap_tx_power_set response.


0x78 - sd_ble_gap_appearance_set

Function packet format

Frame format encoding of the sd_ble_gap_appearance_set packet.

The parameters are encoded in the following order:

Length Parameter Value
1 byte Operation Code 0x78, see BLE_GAP_SVCS
2 bytes Appearance see Bluetooth Appearance values


appearance_set_packet.png
Figure 1: Packet format for sd_ble_gap_appearance_set function.


Response packet format

Frame format encoding of the sd_ble_gap_appearance_set response packet:

Length Parameter Value
1 byte Operation Code 0x78, see BLE_GAP_SVCS
4 bytes nRF Error Code see sd_ble_gap_appearance_set


default_response_packet_generic.png
Figure 2: Packet format for sd_ble_gap_appearance_set response.


0x79 - sd_ble_gap_appearance_get

Function packet format

Frame format encoding of the sd_ble_gap_appearance_get packet.

The parameters are encoded in the following order:

Length Parameter Value
1 byte Operation Code 0x79, see BLE_GAP_SVCS
1 byte Appearance present 0x00 Field not present, 0x01 Field present


appearance_get.png
Figure 1: Packet format for sd_ble_gap_appearance_get function.


Response packet format

Frame format encoding of the sd_ble_gap_appearance_get response packet:

Length Parameter Value
1 byte Operation Code 0x79, see BLE_GAP_SVCS
4 bytes nRF Error Code see sd_ble_gap_appearance_get
2 bytes Conditional: Appearance see sd_ble_gap_appearance_get


appearance_get_response.png
Figure 2: Packet format for sd_ble_gap_appearance_get function response.


0x7A - sd_ble_gap_ppcp_set

Function packet format

Frame format encoding of the sd_ble_gap_ppcp_set packet.

The parameters are encoded in the following order:

Length Parameter Value
1 byte Operation Code 0x7A, see BLE_GAP_SVCS
1 byte Next Field Present 0x00 Field not present, 0x01 Field present
8 bytes GAP Connection Parameters see ble_gap_conn_params_t


GAP Connection Parameters are encoded in following order:

Length Parameter Value
2 bytes Minimum Connection Interval see ble_gap_conn_params_t::min_conn_interval
2 bytes Maximum Connection Interval see ble_gap_conn_params_t::max_conn_interval
2 bytes Slave Latency see ble_gap_conn_params_t::slave_latency
2 bytes Connection Supervision Timeout see ble_gap_conn_params_t::conn_sup_timeout


ppcp_set_packet.png
Figure 1: Packet format for sd_ble_gap_ppcp_set function.


Response packet format

Frame format encoding of the sd_ble_gap_ppcp_set response packet:


Length Parameter Value
1 byte Operation Code 0x7A, see BLE_GAP_SVCS
4 bytes nRF Error Code see sd_ble_gap_ppcp_set


default_response_packet_generic.png
Figure 2: Packet format for sd_ble_gap_ppcp_set response.


0x7B - sd_ble_gap_ppcp_get

Function packet format

Frame format encoding of the sd_ble_gap_ppcp_get packet.

The parameters are encoded in the following order:

Length Parameter Value
1 byte Operation Code 0x7B, see BLE_GAP_SVCS
1 byte Peripheral Preferred Connection Parameters field present 0x00 Field not present, 0x01 Field present


gap_ppcp_get_request.png
Figure 1: Packet format for sd_ble_gap_ppcp_get function.


Response packet format

In case of a successful command, i.e. 'nRF Error Code' = NRF_SUCCESS nRF Error Code is followed by conditional data.

Frame format encoding of the sd_ble_gap_ppcp_get response packet:

Length Parameter Value
1 byte Operation Code 0x7B, see BLE_GAP_SVCS
4 bytes nRF Error Code see sd_ble_gap_ppcp_get
8 bytes Conditional: Connection Parameters see ble_gap_conn_params_t


GAP Connection Parameters are encoded in following order:

Length Parameter Value
2 bytes Minimum Connection Interval see ble_gap_conn_params_t::min_conn_interval
2 bytes Maximum Connection Interval see ble_gap_conn_params_t::max_conn_interval
2 bytes Slave Latency see ble_gap_conn_params_t::slave_latency
2 bytes Connection Supervision Timeout see ble_gap_conn_params_t::conn_sup_timeout


gap_ppcp_get_response.png
Figure 2: Packet format for sd_ble_gap_ppcp_get response.


0x7C - sd_ble_gap_device_name_set

Function packet format

Frame format encoding of the sd_ble_gap_device_name_set packet.

The parameters are encoded in the following order:

Length Parameter Value
1 byte Operation Code 0x7C, see BLE_GAP_SVCS
1 byte Next Field Present 0x00 Field not present, 0x01 Field present
1 byte Conditional: Write Permissions see ble_gap_conn_sec_mode_t
2 bytesDevice Name Length see sd_ble_gap_device_name_set
1 byte Next Field Present 0x00 Field not present, 0x01 Field present
n bytesConditional: Device Name see sd_ble_gap_device_name_set


The bit fields of Write Permissions are encoded as:

Length Parameter Value
bit 0 to 3 Security Mode see ble_gap_conn_sec_mode_t::sm
bit 4 to 7 Security Level see ble_gap_conn_sec_mode_t::lv


device_name_set_packet.png
Figure 1: Packet format for sd_ble_gap_device_name_set function.


Response packet format

Frame format encoding of the sd_ble_gap_device_name_set response packet:

Length Parameter Value
1 byte Operation Code 0x7C, see BLE_GAP_SVCS
4 bytes nRF Error Code see sd_ble_gap_device_name_set


default_response_packet_generic.png
Figure 2: Packet format for sd_ble_gap_device_name_set response.


0x7D - sd_ble_gap_device_name_get

Function packet format

Frame format encoding of the sd_ble_gap_device_name_get packet.

The parameters are encoded in the following order:

Length Parameter Value
1 byte Operation Code 0x7D, see BLE_GAP_SVCS
1 byte Device Name Length Present 0x00 Field not present, 0x01 Field present
2 bytesConditional: Device Name Lengthsee sd_ble_gap_device_name_get
2 bytesDevice Name Buffer Present 0x00 Field not present, 0x01 Field present


device_name_get_packet.png
Figure 1: Packet format for sd_ble_gap_device_name_get function.


Response packet format

In case of a successful command, i.e. 'nRF Error Code' = NRF_SUCCESS nRF Error Code is followed by conditional data.

Frame format encoding of the sd_ble_gap_device_name_get response packet:

Length Parameter Value
1 byte Operation Code 0x7D, see BLE_GAP_SVCS
4 bytesnRF Error Code see sd_ble_gap_device_name_get
2 bytesConditional: Device Name Length see sd_ble_gap_device_name_get
1 byte Conditional: Next Field Present 0x00 Field not present, 0x01 Field present
n bytesConditional: Device Name see sd_ble_gap_device_name_get


device_name_get_response_packet.png
Figure 2: Packet format for sd_ble_gap_device_name_get response.


Device name data length

The device name length and device name data will not be returned if the device name length in sd_ble_gap_device_name_get is larger than the internal connectivity buffer size. The caller of the function can not indicate larger buffer than what the command decoder can be able to provide to the SoftDevice. An NRF_ERROR_DATA_SIZE will be returned in the error code field of the packet, and no device name length or data will be returned.

0x7E - sd_ble_gap_authenticate

Function packet format

Frame format encoding of the sd_ble_gap_authenticate packet.

The parameters are encoded in the following order:

Length Parameter Value
1 byte Operation Code 0x7E, see BLE_GAP_SVCS
2 bytesConnection Handle see sd_ble_gap_authenticate
1 byte Security Parameters Present 0x00 Field not present, 0x01 Field present
5 bytesConditional: Security Parameterssee sd_ble_gap_authenticate


ble_gap_sec_params_t are encoded in following order:

Length Parameter Value
2 bytesTimeout see ble_gap_sec_params_t::timeout
1 byte Bond, MITM, IO Caps and OOB see ble_gap_sec_params_t
1 byte Minimum Key Size see ble_gap_sec_params_t::min_key_size
1 byte Maximum Key Size see ble_gap_sec_params_t::max_key_size


gap_authenticate_packet.png
Figure 1: Packet format for sd_ble_gap_authenticate function.


The Bond, MITM, IO Capabilities and OOB fields are all bitfields inside 1 byte as seen in Figure 2.

Encoding of Bond, MITM, IO Caps and OOB

gap_authenticate_packet_detail.png
Figure 2: Encoding of Bond, MITM, IO Caps and OOB inside a sd_sd_ble_gap_authenticate function packet.


Response packet format

Frame format encoding of the sd_ble_gap_authenticate response packet:

Length Parameter Value
1 byte Operation Code 0x7E, see BLE_GAP_SVCS
4 bytes nRF Error Code see sd_ble_gap_authenticate


default_response_packet_generic.png
Figure 3: Packet format for sd_ble_gap_authenticate response.


0x7F - sd_ble_gap_sec_params_reply

Function packet format

Frame format encoding of the sd_ble_gap_sec_params_reply packet.

The parameters are encoded in the following order:

Length Parameter Value
1 byte Operation Code 0x7F, see BLE_GAP_SVCS
2 bytes Connection Handle Handle Value
1 byte Security Status Status Code
1 byte Security Parameters Present 0x00 Field not present, 0x01 Field present
2 bytes Conditional: ble_gap_sec_params_t::timeout Timeout for SMP transactions or Security Request in seconds
1 byte Conditional: bitfields of ble_gap_sec_params_t Bond, MITM, IO capabilites and OOB bitfield
1 byte Conditional: ble_gap_sec_params_t::min_key_size Minimum encryption key size in octets
1 byte Conditional: ble_gap_sec_params_t::max_key_size Maximum encryption key size in octets


sec_params_reply_packet.png
Figure 1: Packet format for sd_ble_gap_sec_params_reply function.


The Bond, MITM, IO Capabilities and OOB fields are all bitfields inside 1 byte as seen in Figure 2.

Encoding of Bond, MITM, IO Caps and OOB

sec_params_reply_packet_bitfields.png
Figure 2: Encoding of Bond, MITM, IO Caps and OOB inside a sd_ble_gap_sec_params_reply function packet.


Response packet format

Frame format encoding of the sd_ble_gap_sec_params_reply response packet:

Length Parameter Value
1 byte Operation Code 0x7F, see BLE_GAP_SVCS
4 bytes nRF Error Code see sd_ble_gap_sec_params_reply


default_response_packet_generic.png
Figure 3: Packet format for sd_ble_gap_sec_params_reply response.


0x80 - sd_ble_gap_auth_key_reply

Function packet format

Frame format encoding of the sd_ble_gap_auth_key_reply packet.

The parameters are encoded in the following order:

Length Parameter Value
1 byte Operation Code 0x80, see BLE_GAP_SVCS
2 bytes Connection Handle Handle Value
1 byte Key Type see GAP Authentication Key Types
1 byte Key Present 0x00 Field not present, 0x01 Field present
6 or 16 bytes Conditional: Key Key Value


gap_auth_key_reply_packet.png
Figure 1: Packet format for sd_ble_gap_auth_key_reply function.


Response packet format

Frame format encoding of the sd_ble_gap_auth_key_reply response packet:

Length Parameter Value
1 byte Operation Code 0x80 (128)
4 bytes nRF Error Code see sd_ble_gap_auth_key_reply


default_response_packet_generic.png
Figure 2: Packet format for sd_ble_gap_auth_key_reply response.


0x81 - sd_ble_gap_sec_info_reply

Function packet format

Frame format encoding of the sd_ble_gap_sec_info_reply packet.

The parameters are encoded in the following order:

Length Parameter Value
1 byte Operation Code 0x81, see BLE_GAP_SVCS
2 bytes Connection Handle Handle Value
1 byte Encryption Information Present 0x00 Field not present, 0x01 Field present
19 bytes Conditional: Encryption Information see ble_gap_enc_info_t
1 byte Signing Information Present 0x00 Field not present, 0x01 Field present
16 bytes Conditional: Signing Information see ble_gap_sign_info_t


sec_info_reply_packet.png
Figure 1: Packet format for sd_ble_gap_sec_info_reply function.


The bit fields of Encryption Information are encoded as below and depicted in Figure 2 and Figure 3:

sec_info_reply_packet2.png
Figure 2: Contents of Encryption information.


Length Parameter Value
bit 0 Authenticated Key see ble_gap_enc_info_t::auth
bit 1 to 7 LTK length in octets see ble_gap_enc_info_t::ltk_len


sec_info_reply_packet3.png
Figure 3: Bit Ordering of LTK and Authenticated Key fields.


Response packet format

Frame format encoding of the sd_ble_gap_sec_info_reply response packet:

Length Parameter Value
1 byte Operation Code 0x81, see BLE_GAP_SVCS
4 bytes nRF Error Code see sd_ble_gap_sec_info_reply


default_response_packet_generic.png
Figure 4: Packet format for sd_ble_gap_sec_info_reply response.


0x82 - sd_ble_gap_conn_sec_get

Function packet format

Frame format encoding of the sd_ble_gap_conn_sec_get packet.

The parameters are encoded in the following order:

Length Parameter Value
1 byte Operation Code 0x82, see BLE_GAP_SVCS
2 bytesConnection Handle Handle value
1 byte Connection Security field present 0x00 Field not present, 0x01 Field present


gap_conn_sec_get_packet.png
Figure 1: Packet format for sd_ble_gap_conn_sec_get function.


Response packet format

In case of a successful command, i.e. 'nRF Error Code' = NRF_SUCCESS nRF Error Code is followed by conditional data.

Frame format encoding of the sd_ble_gap_conn_sec_get response packet:

Length Parameter Value
1 byte Operation Code 0x82, see BLE_GAP_SVCS
4 bytes nRF Error Code see sd_ble_gap_ppcp_get
1 byte Conditional: Connection Security field present 0x00 Field not present, 0x01 Field present
2 bytes Conditional: Connection Security see ble_gap_conn_sec_t


gap_conn_sec_get_reply.png
Figure 2: Packet format for sd_ble_gap_conn_sec_get response.


0x83 - sd_ble_gap_rssi_start

Function packet format

Frame format encoding of the sd_ble_gap_rssi_start packet.

The parameters are encoded in the following order:

Length Parameter Value
1 byte Operation Code 0x83, see BLE_GAP_SVCS
2 bytesConnection Handle Handle value


rssi_start_stop_packet.png
Figure 1: Packet format for sd_ble_gap_rssi_start function.


Response packet format

Frame format encoding of the sd_ble_gap_rssi_start response packet:

Length Parameter Value
1 byte Operation Code 0x83
4 bytes nRF Error Code see sd_ble_gap_rssi_start


default_response_packet_generic.png
Figure 2: Packet format for sd_ble_gap_rssi_start response.


0x84 - sd_ble_gap_rssi_stop

Function packet format

Frame format encoding of the sd_ble_gap_rssi_stop packet.

The parameters are encoded in the following order:

Length Parameter Value
1 byte Operation Code 0x84, see BLE_GAP_SVCS
2 bytesConnection Handle Handle value


rssi_start_stop_packet.png
Figure 1: Packet format for sd_ble_gap_rssi_stop function.


Response packet format

Frame format encoding of the sd_ble_gap_rssi_stop response packet:

Length Parameter Value
1 byte Operation Code 0x84
4 bytes nRF Error Code see sd_ble_gap_rssi_stop


default_response_packet_generic.png
Figure 2: Packet format for sd_ble_gap_rssi_stop response.