Bluetooth Low Energy Application Developer Guide
Bluetooth Low Energy Application Developer Guide
Contents
Chapter 1 Introduction........................................................................................... 6
Chapter 2 Prerequisites......................................................................................... 7
2.1 RTOS task queues and events..................................................................................................7
2.2 GATT database......................................................................................................................... 7
2.3 Non-Volatile Memory (NVM) access ........................................................................................ 8
Bluetooth® Low Energy Application Developer’s Guide, Rev. 14, Nov 2020
User's Guide 2 / 138
NXP Semiconductors
Contents
Bluetooth® Low Energy Application Developer’s Guide, Rev. 14, Nov 2020
User's Guide 3 / 138
NXP Semiconductors
Contents
Bluetooth® Low Energy Application Developer’s Guide, Rev. 14, Nov 2020
User's Guide 4 / 138
NXP Semiconductors
Contents
Bluetooth® Low Energy Application Developer’s Guide, Rev. 14, Nov 2020
User's Guide 5 / 138
NXP Semiconductors
Chapter 1
Introduction
This document explains how to integrate the Bluetooth® Low Energy Host Stack in an application and provides detailed
explanation of the most commonly used APIs and code examples.
The document also sets out the prerequisites and the initialization of the Bluetooth Low Energy Host Stack, followed by the
presentation of APIs grouped by layers and by application role, as described below.
First, the Generic Access Profile (GAP) layer is divided into two sections according to the GAP role of the device: Central
and Peripheral.
The basic setup of two such devices is explained with code examples, such as how to prepare the devices for connections, how
to connect them together, and pairing and bonding processes.
Next, the Generic Attribute Profile (GATT) layer introduces the APIs required for data transfer between the two connected devices.
Again, the chapter is divided into two sections according to the GATT role of the device: Client and Server.
The document further describes the usage of the GATT Database APIs in the application to manipulate the data in the GATT
server database.
Then, the document shows a user-friendly method to statically build a GATT Database. The method involves the use of a
predefined set of macros that the application may include to build the database at application compile time.
The following section contains instructions on how to build a custom profile. The subsequent section is dedicated to the structure
of the typical application.
Additionally, the document has a chapter dedicated to low-power management and how the low-power modes of the hardware
and software can be used by an application.
The next section describes the Over The Air Programming (OTAP) capabilities offered by the Host Stack via a dedicated
Service/Profile and how to use them in an application. This section also contains a detailed description of the components of the
Framework involved in the OTAP process and the Bootloader application, which does the actual upgrade of the image on a device.
Finally, the document has a section, which describes how to build a Bluetooth Low Energy application when the Host Stack is
running on a separate processor.
Bluetooth® Low Energy Application Developer’s Guide, Rev. 14, Nov 2020
User's Guide 6 / 138
NXP Semiconductors
Chapter 2
Prerequisites
The Bluetooth Low Energy Host Stack library contains a number of external references that the application must define to provide
the full functionality of the Host.
Failing to do so results in linkage errors when trying to build the application binary.
See Host Task initialization for more details about the RTOS Tasks required by the Host.
typedef struct {
uint16_t handle ;
/*!< Attribute handle - cannot be 0x0000; attribute handles need not be consecutive, but must be
strictly increasing. */
uint16_t permissions ;
/*!< Attribute permissions as defined by ATT. */
uint32_t uuid ;
/*!< The UUID should be read according to the gattDbAttribute_t.uuidType member: for 2-byte and
4-byte UUIDs, this contains the value of the UUID; for 16-byte UUIDs, this is a pointer to the
allocated 16-byte array containing the UUID. */
uint8_t * pValue ;
/*!< Pointer to allocated value array. */
uint16_t valueLength ;
/*!< Size of the value array. */
uint16_t uuidType : 2;
/*!< Identifies the length of the UUID; the 2-bit values are interpreted according to the
bleUuidType_t enumeration. */
uint16_t maxVariableValueLength : 10;
Bluetooth® Low Energy Application Developer’s Guide, Rev. 14, Nov 2020
User's Guide 7 / 138
NXP Semiconductors
Prerequisites
/*!< Maximum length of the attribute value array; if this is set to 0, then the attribute's length
(valueLength) is fixed and cannot be changed. */
} gattDbAttribute_t ;
The device information is divided into several components to ensure that even software wear leveling mechanisms can be used
optimally. The components sizes are fixed (defined in ble_constants.h) and have the following meaning:
Bluetooth® Low Energy Application Developer’s Guide, Rev. 14, Nov 2020
User's Guide 8 / 138
NXP Semiconductors
Prerequisites
The application developer need not care about the format of the bonding information as this is handled by the host stack. Each
bonding data slot must contain one bonding header blob, one dynamic data blob, one static data blob, one device information
blob and an array of descriptor blobs equal to gcGapMaximumSavedCccds_c (ble_constants.h). A slot is uniquely identified by
the mEntryIdx parameter. A descriptor is uniquely identified by the pair mEntryIdx - mDescriptorIndex.
If one or more pointers passed as parameters are NULL, the read from or write to the corresponding blob of the bonding slot must
be ignored. The erase function must clear the entire bonding data slot specified by the entry index.
The current implementation of the aforementioned functions uses either the framework NVM module or a RAM buffer. Additional
details about the NVM configuration and functionality can be found in the Connectivity Framework Reference Manual.
To enable the NVM mechanism make sure:
• gAppUseNvm_d (app_preinclude.h) is set to 1 and
• gUseNVMLink_d=1 in the linker options of the toolchain.
If gAppUseNvm_d is set to 0 then all bonding data will be stored in RAM and will be accessible until reset or power cycle.
NOTE
The default NVM module configurations are applied in the app_preinclude.h file if gAppUseNvm_d is set to 1.
Bluetooth® Low Energy Application Developer’s Guide, Rev. 14, Nov 2020
User's Guide 9 / 138
NXP Semiconductors
Chapter 3
Host Stack Initialization and APIs
It should be called with NULL as an argument in the task code from the application.
Application developers are required to define task events and queues as explained in RTOS Task Queues and Events.
The Controller task always has a higher priority than the Host task. The priority values are configured by gHost_TaskPriority_c
(ble_host_task_config.h) and gControllerTaskPriority_c (ble_controller_task_config.h). Note that changing these values can have
a significant impact on the Bluetooth Low Energy stack.
The priority levels are defined in accordance with the OS Abstraction (OSA) priority levels, where 0 is the maximum priority and 15
is the minimum priority. For additional information, see the Connectivity Framework Reference Manual. Note that RTOS-specific
priority levels may differ from one operating system to another.
bleResult_t Ble_HostInitialize
(
gapGenericCallback_t genericCallback,
hciHostToControllerInterface_t hostToControllerInterface
);
The genericCallback is the main callback installed by the application. It receives most of the events from the GAP layer, which are
called generic events. A generic event has a type (see gapGenericEventType_t) and data according to the event type (a union).
The hostToControllerInterface is the HCI exit point of the Host Stack. This is the function that the Host calls every time it tries to
send an HCI message to the LE Controller.
The completion of the Host Stack initialization is signaled in the genericCallback by the gInitializationComplete_c generic event.
After this event is received, the main application logic may be started.
Bluetooth® Low Energy Application Developer’s Guide, Rev. 14, Nov 2020
User's Guide 10 / 138
NXP Semiconductors
Host Stack Initialization and APIs
void Ble_HciRecv
(
hciPacketType_t packetType,
void* pPacket,
uint16_t packetSize
);
This is the function that the application must call to insert an HCI message into the Host.
Therefore, the Ble_HciRecv function and the hostToControllerInterface parameter of the Ble_Initialize function represent the two
points that need to be connected to the LE Controller (see Figure 1), either directly (if the Controller software runs on the same
chip as the Host) or through a physical interface (for example, UART).
Bluetooth® Low Energy Application Developer’s Guide, Rev. 14, Nov 2020
User's Guide 11 / 138
NXP Semiconductors
Host Stack Initialization and APIs
However, some applications may be targeted to memory-constrained devices and do not need the full support. In the interest of
reducing code size and RAM utilization, two more libraries are provided:
• lib_ble_5-0_host_peripheral_cm0p_iar.a, lib_ble_5-0_AE_host_peripheral_cm0p_iar.a
lib_ble_5-0_host_peripheral_cm0p_gcc.a, and lib_ble_5-0_AE_host_peripheral_cm0p_gcc.a
— Supports only APIs for the GAP Peripheral and GAP Broadcaster roles
— Supports only APIs for the GATT Server role
• lib_ble_5-0_host_central_cm0p_iar.a and lib_ble_5-0_AE_host_central_cm0p_iar.a lib_ble_5-0_host_central_cm0p_gcc.a ,
and lib_ble_5-0_AE_host_central_cm0p_gcc.a
— Supports only APIs for the GAP Central and GAP Observer roles
— Supports only APIs for the GATT Client role
If one attempts to use an API that is not supported (for instance, calling Gap_Connect with the
lib_ble_5-0_host_peripheral_cm0p_iar.a and lib_ble_5-0_host_peripheral_cm0p_gcc.a), then the API returns the
gBleFeatureNotSupported_c error code. Similarly, if the API for AE is used with a host library that does not have
support for AE (for instance, calling Gap_SetExtAdvertisingParameters with the lib_ble_5-0_host_peripheral_cm0p_iar.a and
lib_ble_5-0_host_peripheral_cm0p_gcc.a), then gBleFeatureNotSupported_c is returned.
NOTE
See the Bluetooth Low Energy Host StackAPI Reference Manual for explicit information regarding API support.
Each function documentation contains this information in the Remarks section.
#define Controller_SetAdvertisingTxPowerLevel(level) \
Controller_SetTxPowerLevel(level,gAdvTxChannel_c)
and
#define Controller_SetConnectionTxPowerLevel(level) \
Controller_SetTxPowerLevel(level,gConnTxChannel_c)
The numeric power levels are distributed evenly between the minimum and maximum output power values (in dBm). For more
information, see the silicon datasheet.
Bluetooth® Low Energy Application Developer’s Guide, Rev. 14, Nov 2020
User's Guide 12 / 138
NXP Semiconductors
Host Stack Initialization and APIs
The radio allows the increase of transmit output power by the HF LDO regulator. The input of low-dropout (LDO) regulator is
VDD_RF, that can be either external (bypass mode) or tied to the DCDC_1P5 output. It also has a programmable level. Hence, the
first condition to be able to transmit at +5 dBm is to supply the VDD_RFx pins with at least 1.55 V. This is configured through the
DCDC driver included in the wireless connectivity example. In order to support 1.55 V at DCDC_1P5 pin, the following structure
contained in the “board.c” file is configured as shown below:
#if gDCDC_Enabled_d == 1
const dcdcConfig_t mDcdcDefaultConfig =
{
#if APP_DCDC_MODE == gDCDC_Mode_Buck_c
.vbatMin = 1800,
.vbatMax = 4200,
#elif APP_DCDC_MODE == gDCDC_Mode_Boost_c
.vbatMin = 900,
.vbatMax = 1800,
#endif
.dcdcMode = APP_DCDC_MODE,
.vBatMonitorIntervalMs = APP_DCDC_VBAT_MONITOR_INTERVAL,
.pfDCDCAppCallback = NULL, /* .pfDCDCAppCallback = DCDCCallback, */
.dcdcMcuVOutputTargetVal = gDCDC_McuV_OutputTargetVal_1_550_c,
.dcdc1P8OutputTargetVal = gDCDC_1P8OutputTargetVal_1_800_c
};
#endif
The second condition is to define the following definition in the “app_preinclude.h” file:
#define mDefaultTxPowerUsePaBump_c 1
Moreover, the application verifies the call to the API “Controller_BumpPaPowerUp()”. This API receives the
“mDefaultTxPowerUsePaBump_c” defined as parameter. Hence, it should be called as shown next:
(void)Controller_BumpPaPowerUp(mDefaultTxPowerUsePaBump_c);
This API is called before calling “Controller_SetTxPowerLevel()” function. Finally, the TX power level is set to the maximum, in this
case, the API should be called with the number 31 as parameter. This way, the output power of the radio would be around +5 dBm.
Bluetooth® Low Energy Application Developer’s Guide, Rev. 14, Nov 2020
User's Guide 13 / 138
NXP Semiconductors
Chapter 4
Generic Access Profile (GAP) Layer
The GAP layer manages connections, security, and bonded devices.
The GAP layer APIs are built on top of the Host-Controller Interface (HCI), the Security Manager Protocol (SMP), and the
Device Database.
GAP defines four possible roles that a Bluetooth Low Energy device may have in a Bluetooth Low Energy system (see Table 1):
• Central
— Scans for advertisers (Peripherals and Broadcasters)
— Initiates connection to Peripherals; Master at Link Layer (LL) level
— Usually acts as a GATT Client, but can also contain a GATT Database itself
• Peripheral
— Advertises and accepts connection requests from Centrals; LL Slave
— Usually contains a GATT Database and acts as a GATT Server, but may also be a Client
• Observer
— Scans for advertisers, but does not initiate connections; Transmit is optional
• Broadcaster
— Advertises, but does not accept connection requests from Centrals; Receive is optional
Bluetooth® Low Energy Application Developer’s Guide, Rev. 14, Nov 2020
User's Guide 14 / 138
NXP Semiconductors
Generic Access Profile (GAP) Layer
4.1.1 Scanning
The most basic setup for a Central device begins with scanning, which is performed by the following function from gap_interface.h:
If the pScanningParameters pointer is NULL, the currently set parameters are used. If no parameters have been set after a device
power-up, the standard default values are used:
#define gGapDefaultScanningParameters_d \
{ \
/* type */ gGapScanTypePassive_c, \
/* interval */ gGapScanIntervalDefault_d, \
/* window */ gGapScanWindowDefault_d, \
/* ownAddressType */ gBleAddrTypePublic_c, \
/* filterPolicy */ gScanAll_c \
/* scanning PHY */ gLePhylMFlag_c\
}
The easiest way to define non-default scanning parameters is to initialize a gapScanningParameters_t structure with the above
default and change only the required fields.
For example, to perform active scanning and only scan for devices in the White List, the following code can be used:
The scanningCallback is triggered by the GAP layer to signal events related to scanning.
The most important event is the gDeviceScanned_c event, which is triggered each time an advertising device is scanned. This
event’s data contains information about the advertiser:
typedef struct
{
bleAddressType_t addressType ;
bleDeviceAddress_t aAddress ;
int8_t rssi ;
uint8_t dataLength ;
uint8_t * data ;
bleAdvertisingReportEventType_t advEventType ;
bool_t directRpaUsed;
bleDeviceAddress_t directRpa;
bool_t advertisingAddressResolved;
} gapScannedDevice_t;
If this information signals a known Peripheral that the Central wants to connect to, the latter must stop scanning and connect to
the Peripheral.
To stop scanning, call this function:
By default, the GAP layer is configured to report all scanned devices to the application using the gDeviceScanned_c event type.
However, some use cases may require to perform specific GAP Discovery Procedures in which the advertising reports have to
Bluetooth® Low Energy Application Developer’s Guide, Rev. 14, Nov 2020
User's Guide 15 / 138
NXP Semiconductors
Generic Access Profile (GAP) Layer
be filtered by the Flags AD value from the advertising data. Other use cases require the Host stack to automatically initiate a
connection when a specific device has been scanned.
To enable filtering based on the Flags AD value or to set device addresses for automatic connections, the following function must
be called before the scanning is started:
bleResult_t Gap_SetScanMode
(
gapScanMode_t scanMode,
gapAutoConnectParams_t* pAutoConnectParams,
gapConnectionCallback_t connCallback
);
The default value for the scan mode is gNoDiscovery_c, which reports all packets regardless of their content and does not perform
any automatic connection.
To enable Limited Discovery, the gLimitedDiscovery_c value must be used, while the gGeneralDiscovery_c value activates
General Discovery.
To enable automatic connection when specific devices are scanned, the gAutoConnect_c value must be set, in which case
the pAutoConnectParams parameter must point to the structure that holds the target device addresses and the connection
parameters to be used by the Host for these devices.
If scanMode is set to gAutoConnect_c, connCallback must be set and will be triggered by GAP to send the events related to
the connection.
bleResult_t Gap_Connect
(
const gapConnectionRequestParameters_t * pParameters,
gapConnectionCallback_t connCallback
);
An easy way to create the connection parameter structure is to initialize it with the defaults, then change only the necessary fields.
The default structure is defined as shown here:
#define gGapDefaultConnectionRequestParameters_d \
{ \
/* scanInterval */ gGapScanIntervalDefault_d, \
/* scanWindow */ gGapScanWindowDefault_d, \
/* filterPolicy */ gUseDeviceAddress_c, \
/* ownAddressType */ gBleAddrTypePublic_c, \
/* peerAddressType */ gBleAddrTypePublic_c, \
/* peerAddress */ { 0, 0, 0, 0, 0, 0 }, \
/* connIntervalMin */ gGapDefaultMinConnectionInterval_d, \
/* connIntervalMax */ gGapDefaultMaxConnectionInterval_d, \
/* connLatency */ gGapDefaultConnectionLatency_d, \
/* supervisionTimeout */ gGapDefaultSupervisionTimeout_d, \
/* connEventLengthMin */ gGapConnEventLengthMin_d, \
/* connEventLengthMax */ gGapConnEventLengthMax_d \
/* initiatingPHYs */ gLePhylMFlag_c \
}
Bluetooth® Low Energy Application Developer’s Guide, Rev. 14, Nov 2020
User's Guide 16 / 138
NXP Semiconductors
Generic Access Profile (GAP) Layer
In the following example, Central scans for a specific Heart Rate Sensor with a known address. When it finds it, it immediately
connects to it.
The connCallback is triggered by GAP to send all events related to the active connection. It has the following prototype:
The very first event that should be listened inside this callback is the gConnEvtConnected_c event. If the application decides to
drop the connection establishment before this event is generated, it should call the following macro:
#define Gap_CancelInitiatingConnection()\
Gap_Disconnect(gCancelOngoingInitiatingConnection_d)
Bluetooth® Low Energy Application Developer’s Guide, Rev. 14, Nov 2020
User's Guide 17 / 138
NXP Semiconductors
Generic Access Profile (GAP) Layer
This is useful, for instance, when the application chooses to use an expiration timer for the connection request.
Upon receiving the gConnEvtConnected_c event, the application may proceed to extract the necessary parameters from the event
data (pConnectionEvent->event.connectedEvent). The most important parameter to be saved is the deviceId.
The deviceId is a unique 8-bit, unsigned integer, used to identify an active connection for subsequent GAP and GATT API calls.
All functions related to a certain connection require a deviceId parameter. For example, to disconnect, call this function:
bleResult_t Gap_Disconnect
(
deviceId_t deviceId
);
bleResult_t Gap_CheckIfBonded
(
deviceId_t deviceId,
bool_t * pOutIsBonded
);
bleResult_t Gap_EncryptLink
(
deviceId_t deviceId,
);
If the link encryption is successful, the gConnEvtEncryptionChanged_c connection event is triggered. Otherwise,
a gConnEvtAuthenticationRejected_c event is received with the rejectReason event data parameter set
to gLinkEncryptionFailed_c.
On the other hand, if this is a new device (not bonded), pairing may be started as shown here:
bleResult_t Gap_Pair
(
deviceId_t deviceId,
const gapPairingParameters_t * pPairingParameters
);
The names of the parameters are self-explanatory. The withBonding flag should be set to TRUE if the Central must/wants to bond.
For the Security Mode and Level, the GAP layer defines them as follows:
Bluetooth® Low Energy Application Developer’s Guide, Rev. 14, Nov 2020
User's Guide 18 / 138
NXP Semiconductors
Generic Access Profile (GAP) Layer
The centralKeys should have the flags set for all the keys that are available in the application. The IRK is mandatory if the Central
is using a Private Resolvable Address, while the CSRK is necessary if the Central wants to use data signing. The LTK is provided
by the Peripheral and should only be included if the Central intends on becoming a Peripheral in future reconnections (GAP
role change).
The peripheralKeys should follow the same guidelines. The LTK is mandatory if encryption is to be performed, while the peer’s
IRK should be requested if the Peripheral is using Private Resolvable Addresses.
See Table 2 for detailed guidelines regarding key distribution.
The first three rows are both guidelines for Pairing Parameters (centralKeys and peripheralKeys) and for distribution of keys
with Gap_SendSmpKeys.
If LE Secure Connections Pairing is performed (Bluetooth LE 4.2 and above), then the LTK is generated internally, so the
corresponding bits in the key distribution fields from the pairing parameters are ignored by the devices.
The Identity Address shall be distributed if the IRK is also distributed (its flag has been set in the Pairing Parameters). Therefore,
it can be “asked” only by asking for IRK (it does not have a separate flag in a gapSmpKeyFlags_t structure), hence the N/A.
The negotiation of the distributed keys is as follows:
• In the SMP Pairing Request (started by Gap_Pair), the Central sets the flags for the keys it wants to distribute
(centralKeys) and receive (peripheralKeys).
Bluetooth® Low Energy Application Developer’s Guide, Rev. 14, Nov 2020
User's Guide 19 / 138
NXP Semiconductors
Generic Access Profile (GAP) Layer
CENTRAL PERIPHERAL
Long Term Key (LTK) If it wants to be a If it wants encryption If it wants encryption If it wants to become
+EDIV +RAND peripheral in a future a central in a future
reconnection reconnection
Identity Resolving Key If it uses or intends to If a peripheral is using If it uses or intends to If a central is using
(IRK) use private resolvable a private resolvable use private resolvable a private resolvable
addresses address addresses address
Connection Signature If it wants to sign data If it wants the If it wants to sign data If it wants the Central
Resolving Key (CSRK) as GATT Client peripheral to sign data as GATT Client to sign data as GATT
as GATT Client Client
Identity address If it distributes the IRK N/A If it distributes the IRK N/A
• The Peripheral examines the two distributions and must send an SMP Pairing Response (started by the
Gap_AcceptPairingRequest) after performing any changes it deems necessary. The Peripheral is only allowed to set
to 0 some flags that are set to 1 by the Central, but not the other way around. For example, it cannot request/distribute
keys that were not offered/requested by the Central. If the Peripheral is adverse to the Central’s distributions, it can reject
the pairing by using the Gap_RejectPairing function.
• The Central examines the updated distributions from the Pairing Response. If it is adverse to the changes made by the
Peripheral, it can reject the pairing (Gap_RejectPairing). Otherwise, the pairing continues and, during the key distribution
phase (the gConnEvtKeyExchangeRequest_c event) only the final negotiated keys are included in the key structure sent
with Gap_SendSmpKeys.
• For LE Secure Connections (Both devices set the SC bit in the AuthReq field of the Pairing Request and Pairing
Response packets) the LTK is not distributed it is generated and the corresponding bit in the Initiator Key Distribution and
Responder Key Distribution fields of the Pairing Response packet shall be set to 0.
If LE Secure Connections Pairing (Bluetooth LE 4.2 and above) is used, and OOB data needs to be exchanged, the application
must obtain the local LE SC OOB Data from the host stack by calling the Gap_LeScGetLocalOobData function. The data is
contained by the generic gLeScLocalOobData_c event.
The local LE SC OOB Data is refreshed in the following situations:
• The Gap_LeScRegeneratePublicKey function is called (the gLeScPublicKeyRegenerated_c generic event is also
generated as a result of this API).
• The device is reset (which also causes the Public Key to be regenerated).
If the pairing continues, the following connection events may occur:
• Request events
— gConnEvtPasskeyRequest_c: a PIN is required for pairing; the application must respond with the
Gap_EnterPasskey(deviceId, passkey).
— gConnEvtOobRequest_c: if the pairing started with the oobAvailable set to TRUE by both sides; the application must
respond with the Gap_ProvideOob(deviceId, oob).
— gConnEvtKeyExchangeRequest_c: the pairing has reached the key exchange phase; the application must respond
with the Gap_SendSmpKeys(deviceId, smpKeys).
— gConnEvtLeScOobDataRequest_c: the stack requests the LE SC OOB Data received from the peer (r, Cr and Addr);
the application must respond with Gap_LeScSetPeerOobData(deviceId, leScOobData).
— gConnEvtLeScDisplayNumericValue_c: the stack requests the display and confirmation of the LE SC Numeric
Comparison Value; the application must respond with Gap_LeScValidateNumericValue(deviceId, ncvValidated).
Bluetooth® Low Energy Application Developer’s Guide, Rev. 14, Nov 2020
User's Guide 20 / 138
NXP Semiconductors
Generic Access Profile (GAP) Layer
• Informational events
— gConnEvtKeysReceived_c: the key exchange phase is complete; keys are automatically saved in the internal device
database and are also provided to the application for immediate inspection; application does not have to save the
keys in NVM storage because this is done internally if withBonding was set to TRUE by both sides.
— gConnEvtAuthenticationRejected_c: the peer device rejected the pairing; the rejectReason parameter of the
event data indicates the reason that the Peripheral does not agree with the pairing parameters (it cannot be
gLinkEncryptionFailed_c because that reason is reserved for the link encryption failure).
— gConnEvtPairingComplete_c: the pairing process is complete, either successfully, or an error may have occurred
during the SMP packet exchanges; note that this is different from the gConnEvtKeyExchangeRequest_c event; the
latter signals that the pairing was rejected by the peer, while the former is used for failures due to the SMP packet
exchanges.
— gConnEvtLeScKeypressNotification_c: the stack informs the application that a remote SMP Keypress Notification
has been received during Passkey Entry Pairing Method.
After the link encryption or pairing is completed successfully, the Central may immediately start exchanging data using the
GATT APIs.
Figure 3. Central pairing flow – APIs and eventsGap_RejectPairing may be called on any pairing event
4.2.1 Advertising
Before starting advertising, the advertising parameters should be configured. Otherwise, the following defaults are used.
#define gGapDefaultAdvertisingParameters_d \
{ \
Bluetooth® Low Energy Application Developer’s Guide, Rev. 14, Nov 2020
User's Guide 21 / 138
NXP Semiconductors
Generic Access Profile (GAP) Layer
/* minInterval */ gGapAdvertisingIntervalDefault_c, \
/* maxInterval */ gGapAdvertisingIntervalDefault_c, \
/* advertisingType */ gConnectableUndirectedAdv_c, \
/* addressType */ gBleAddrTypePublic_c, \
/* directedAddressType */ gBleAddrTypePublic_c, \
/* directedAddress */ {0U, 0U, 0U, 0U, 0U, 0U}, \
/* channelMap */ (gapAdvertisingChannelMapFlags_t)gGapAdvertisingChannelMapDefault_c, \
/* filterPolicy */ gProcessAll_c \
}
To set different advertising parameters, a gapAdvertisingParameters_t structure should be allocated and initialized with defaults.
Then, the necessary fields may be modified.
After that, the following function should be called:
bleResult_t Gap_SetAdvertisingParameters
(
const gapAdvertisingParameters_t * pAdvertisingParameters
);
bleResult_t Gap_SetAdvertisingData
(
const gapAdvertisingData_t * pAdvertisingData,
const gapScanResponseData_t * pScanResponseData
);
Either of the two pointers may be NULL, in which case they are ignored (the corresponding data is left as it was previously
configured, or empty if it has never been set), but not both at the same time.
The application should listen to the gAdvertisingDataSetupComplete_c generic event.
After all the necessary setup is done, advertising may be started with this function:
bleResult_t Gap_StartAdvertising
(
gapAdvertisingCallback_t advertisingCallback,
gapConnectionCallback_t connectionCallback
);
The advertisingCallback is used to receive advertising events (advertising state changed or advertising command failed), while
the connectionCallback is only used if a connection is established during advertising.
The connection callback is the same as the callback used by the Central when calling the Gap_Connect function.
If a Central initiates a connection to this Peripheral, the gConnEvtConnected_c connection event is triggered.
To stop advertising while the Peripheral has not yet received any connection requests, use this function:
This function should not be called after the Peripheral enters a connection.
Bluetooth® Low Energy Application Developer’s Guide, Rev. 14, Nov 2020
User's Guide 22 / 138
NXP Semiconductors
Generic Access Profile (GAP) Layer
bleResult_tGap_RegisterDeviceSecurityRequirements
(
gapDeviceSecurityRequirements_t * pSecurity
);
The parameter is a pointer to a structure which contains a “device master security setting” and service-specific security settings.
All these security requirements are pointers to gapSecurityRequirements_t structures. The pointers that are to be ignored should
be set to NULL.
Although the Peripheral does not initiate any kind of security procedure, it can inform the Central about its security requirements.
This is usually done immediately after the connection to avoid exchanging useless packets for requests that might be denied
because of insufficient security.
The informing is performed through the Slave Security Request packet at SMP level. To use it, the following GAP API is provided:
bleResult_tGap_SendSlaveSecurityRequest
(
deviceId_t deviceId,
const gapPairingParameters_t* pPairingParameters
);
The gapPairingParameters_t structure includes two important fields. The withBonding field indicates to the Central whether this
Peripheral can bond and the securityModeAndLevel field informs about the required security mode and level that the Central
should pair for. See Section 4.1.3 for an explanation about security modes and levels, as defined by the GAP module.
This request expects no reply, nor any immediate action from the Central. The Central may easily choose to ignore the Slave
Security Request.
If the two devices have bonded in the past, the Peripheral should expect to receive a gConnEvtLongTermKeyRequest_c
connection event (unless LE Secure Connections Pairing was performed, as specified in Bluetooth Low Energy 4.2 and above),
which means that the Central has also recognized the bond and, instead of pairing, it goes directly to encrypting the link using
the previously shared LTK. At this point, the local LE Controller requests that the Host provides the same LTK it exchanged
during pairing.
When the devices have been previously paired, along with the Peripheral’s LTK, the EDIV (2 bytes) and RAND (8 bytes) values
were also sent (their meaning is defined by the SMP). Therefore, before providing the key to the Controller, the application should
check that the two values match with those received in the gConnEvtLongTermKeyRequest_c event. If they do, the application
should reply with:
bleResult_tGap_ProvideLongTermKey
(
Bluetooth® Low Energy Application Developer’s Guide, Rev. 14, Nov 2020
User's Guide 23 / 138
NXP Semiconductors
Generic Access Profile (GAP) Layer
deviceId_t deviceId,
const uint8_t aLtk,
uint8_t ltkSize
);
bleResult_tGap_DenyLongTermKey
(
deviceId_t deviceId
);
If LE SC Pairing was used then the LTK is generated internally by the host stack and it is not requested from the application
during post-bonding link encryption. In this scenario, the application is only notified of the link encryption through the
gConnEvtEncryptionChanged_c connection event.
If the devices are not bonded, the Peripheral should expect to receive the gConnEvtPairingRequest_c, indicating that the Central
has initiated pairing.
If the application agrees with the pairing parameters (see Pairing and bonding for detailed explanations), it can reply with:
bleResult_tGap_AcceptPairingRequest
(
deviceId_t deviceId,
const gapPairingParameters_t * pPairingParameters
);
This time, the Peripheral sends its own pairing parameters, as defined by the SMP.
After sending this response, the application should expect to receive the same pairing events as the Central (see Pairing and
bonding), with one exception: the gConnEvtPasskeyRequest_c event is not called if the application sets the Passkey (PIN) for
pairing before the connection by calling the API:
bleResult_tGap_SetLocalPasskey
(
uint32_t passkey
);
This is done because, usually, the Peripheral has a static secret PIN that it distributes only to trusted devices. If, for any reason,
the Peripheral must dynamically change the PIN, it can call the aforementioned function every time it wants to, before the pairing
starts (for example, right before sending the pairing response with Gap_AcceptPairingRequest).
If the Peripheral application never calls Gap_SetLocalPasskey, then the gConnEvtPasskeyRequest_c event is sent to the
application as usual.
The following API can be used by the Peripheral to reject the pairing process:
bleResult_tGap_RejectPairing
(
deviceId_t deviceId,
gapAuthenticationRejectReason_t reason
);
The reason should indicate why the application rejects the pairing. The value gLinkEncryptionFailed_c is reserved for the
gConnEvtAuthenticationRejected_c connection event to indicate the link encryption failure rather than pairing failures. Therefore,
it is not meant as a pairing reject reason.
Bluetooth® Low Energy Application Developer’s Guide, Rev. 14, Nov 2020
User's Guide 24 / 138
NXP Semiconductors
Generic Access Profile (GAP) Layer
The Gap_RejectPairing function may be called not only after the Pairing Request was received, but also during the pairing
process, when handling pairing events or asynchronously, if for any reason the Peripheral decides to abort the pairing. This also
holds true for the Central.
Figure 4. Peripheral pairing flow – APIs and eventsGap_RejectPairing may be called on any pairing event
For both the Central and the Peripheral, bonding is performed internally and is not the application’s concern. The application is
informed about whether or not bonding occurred through the gConnEvtPairingComplete_c event parameters.
#ifndef gBleDefaultTxOctets_c
#define gBleDefaultTxOctets_c 0x00FB
#endif
#ifndef gBleDefaultTxTime_c
Bluetooth® Low Energy Application Developer’s Guide, Rev. 14, Nov 2020
User's Guide 25 / 138
NXP Semiconductors
Generic Access Profile (GAP) Layer
The device can update the data length anytime, while in connection. The function that triggers this mechanism is the following:
bleResult_tGap_UpdateLeDataLength
(
deviceId_t deviceId,
uint16_t txOctets,
uint16_t txTime
);
After the procedure executes, a gConnEvtLeDataLengthChanged_c connection event is triggered with the maximum values for
number of payload octets and time to transmit and receive a link layer data channel PDU. The event is send event if the remote
device initiates the procedure. This procedure is detailed below:
4.4.1 Introduction
Starting with Bluetooth 4.2,Privacy can be enabled either in the Host or in the Controller:
• Host Privacy consists of:
— Random address generation - Periodically regenerating a random address (Resolvable or Non-Resolvable Private
Address) inside the Host and the applying it into the Controller.
— Random address resolution - Try to resolve incoming RPAs using the IRKs stored in the bonded devices list. The
address resolution is performed when a connection is established with a device or for the auto-connect scan. The
advertising packets that have an RPA will not be resolved automatically due to the high MCU processing that will
require. Each of the use cases will be detailed in the following sections.
The random address resolution is performed by default by the Host whenever the Controller was not able to resolve an
RPA. The random address generation is performed by the Host only when Host Privacy is requested to be enabled.
• Controller Privacy, introduced by Bluetooth 4.2, consists of writing the local IRK in the Controller, together with all
known peer IRKs, and letting the Controller perform hardware, fully automatic RPA generation and resolution. The
Bluetooth® Low Energy Application Developer’s Guide, Rev. 14, Nov 2020
User's Guide 26 / 138
NXP Semiconductors
Generic Access Profile (GAP) Layer
Controller uses a Resolving List to store these entries and the size of the list is platform dependent, given by
gMaxResolvingListSize_c. For RPA resolution, the entries that do not fit in this list will be processed by the Host to
be resolved using the IRKs from bonded devices list.
Either Host Privacy or Controller Privacy can be enabled at any time. Trying to enable one while the other is in progress generates
a gBleInvalidState_c error. The same error is returned when trying to enable the same privacy type twice, or when trying to disable
privacy when it is not enabled.
The recommended way of using Privacy is the Controller Privacy. However, enabling Controller Privacy requires at least a pair
of local IRK and peer IRK, so this can only be enabled only after a pairing is performed with a peer and the IRKs are exchanged
during the Key Distribution phase. When a device starts, if Privacy is required the workflow is the following:
1. Enable Host Privacy using the local IRK.
2. Connect to a peer and perform pairing and bonding to exchange IRKs.
3. Disable Host Privacy.
4. Enable Controller Privacy using the local IRK and the peer IRK and peer identity address.
bleResult_tGap_EnableHostPrivacy
(
Bluetooth® Low Energy Application Developer’s Guide, Rev. 14, Nov 2020
User's Guide 27 / 138
NXP Semiconductors
Generic Access Profile (GAP) Layer
bool_t enable,
const uint8_t * aIrk
);
When enable is set to TRUE, the aIrk parameter defines which type of Private Address to generate. If aIrk is NULL, then a new
NRPA is generated periodically and written into the Controller. Otherwise, an IRK is copied internally from the aIrk address and
it is used to periodically generate a new RPA.
The lifetime of the Private Address (NRPA or RPA) is a number of seconds contained by the gGapHostPrivacyTimeout external
constant, which is defined in the ble_config.c source file. The default value for this is 900 (15 minutes).
When Host Privacy is enabled, the Host will ignore the ownAddressType value for the advertising, scanning or connect
parameters. It will always use the random address type in order to use the RPA configured in the Controller in the packets sent
over the air.
As mentioned in the Introduction section, call this API for random address generation. For random address resolution there is no
need to do so, it is performed by default against the bonded devices list.
bleResult_tGap_EnableControllerPrivacy
(
bool_t enable,
const uint8_t * aOwnIrk,
uint8_t peerIdCount,
const gapIdentityInformation_t* aPeerIdentities
);
When enable is set to TRUE, aOwnIrk parameter shall not be NULL, peerIdCount shall not be zero or greater than
gMaxResolvingListSize_c, and aPeerIdentities shall not be NULL.
The IRK defined by aOwnIrk is used by the Controller to periodically generate a new RPA. The lifetime of the RPA is a number of
seconds contained by the gGapControllerPrivacyTimeout external constant, which is defined in the ble_config.c source file. The
default value for this is 900 (15 minutes).
The aPeerIdentities is an array of identity information for each bonded device. The identity information contains the device’s
identity address (public or random static address) and the device’s IRK. This array can be obtained from the Host with the
Gap_GetBondedDevicesIdentityInformation API.
Enabling Controller Privacy involves a quick sequence of commands to the Controller. When the sequence is complete, the
gControllerPrivacyStateChanged_c generic event is triggered.
Bluetooth® Low Energy Application Developer’s Guide, Rev. 14, Nov 2020
User's Guide 28 / 138
NXP Semiconductors
Generic Access Profile (GAP) Layer
To change the privacy mode of a device and make the change persistent, the user must call the following API:
bleResult_t Gap_SetPrivacyMode
(
uint8_t nvmIndex,
blePrivacyMode_t privacyMode
);
4.4.3.3 Advertising
When a Peripheral starts advertising while Controller Privacy is enabled, the ownAddressType field of the advertising parameter
structure is unused. Instead, the Controller always generates an RPA and advertises with it as Advertising Address.
If directed advertising is used, the Host will only allow advertising to a device in the resolving list in order to be able to
generate RPAs.
4.4.3.4 Connected
When a device connects while Controller Privacy is enabled, the gConnEvtConnected_c connection event parameter structure
contains more relevant fields than without Controller Privacy.
The peerRpaResolved field equals TRUE if the peer was using an RPA that was resolved using an IRK from the list. In that case,
the peerAddressType and peerAddress fields contain the identity address of the resolved device, and the actual RPA used to
create the connection (the RPA that a Central used when initiating the connection, or the RPA that the Peripheral advertised with)
is contained by the peerRpa field.
The localRpaUsed field equals TRUE if the local Controller was automatically generating an RPA when the connection was
created, and the actual RPA is contained by the localRpa field.
bleResult_t Gap_LeSetPhy
(
bool_t defaultMode,
deviceId_t deviceId,
uint8_t allPhys,
uint8_t txPhys,
uint8_t rxPhys,
Bluetooth® Low Energy Application Developer’s Guide, Rev. 14, Nov 2020
User's Guide 29 / 138
NXP Semiconductors
Generic Access Profile (GAP) Layer
uint16_t phyOptions
);
bleResult_t Gap_LeReadPhy
(
deviceId_t deviceId
);
The application should listen for gLePhyEvent_c with the gPhyRead_c sub event type for the confirmation of the operation. The
txPhy and rxPhy indicate the current modes used in the connection.
Bluetooth® Low Energy Application Developer’s Guide, Rev. 14, Nov 2020
User's Guide 30 / 138
NXP Semiconductors
Generic Access Profile (GAP) Layer
However, there may be some cases when an application wants to manage this data to read data from a bonded device created
by the Host, create a bond obtained out of band or update an existing bond. For this use case, two GAP APIs and a GAP event
have been added.
1. Load the Keys of a bonded device.
The user can call the following function to read the keys exchanged during pairing and stored by the Bluetooth LE stack in
the bond area when the pairing is complete.
The application is informed of the NVM index through the gBondCreatedEvent_c sent by the stack immediately after the
bond creation. The application is responsible for passing the memory in the pOutKeys OUT parameter to fill in the keys, if
any of the keys are set to NULL, the stack will not fill that information. The pOutKeyFlags OUT parameter will indicate to
the application which of the keys were stored by the stack as not all of them may have been distributed during pairing.
The pOutLeSc indicates if Bluetooth LE 4.2 LE Secure Connections Pairing was used, while the pOutAuth indicates if the
peer device is authenticated for MITM protection. All these OUT parameters are recommended to be retrieved from the
bond and added if later passed as input parameters for the save keys API.
This function executes synchronously.
bleResult_t Gap_LoadKeys
(
uint8_t nvmIndex,
gapSmpKeys_t* pOutKeys,
gapSmpKeyFlags_t* pOutKeyFlags,
bool_t* pOutLeSc,
bool_t* pOutAuth);
);
The gapSmpKeys_t is the structure used during the key distribution phase, as well as in the gConnEvtKeysReceived_c
event and is as follows. The difference is that the Bluetooth LE device address cannot be set to NULL neither when loading
a bond or when creating one as it identifies the bonded device together with the NVM index.
cLtkSize uint8_t Encryption Key Size filled by the stack. If aLtk is NULL, this
is ignored.
aLtk uint8_t* Long Term (Encryption) Key. NULL if LTK is not distributed, else
size is given by cLtkSize.
aRand uint8_t* RAND value used to identify the LTK. If aLtk is NULL, this
is ignored.
ediv uint16_t EDIV value used to identify the LTK. If aLtk is NULL, this
is ignored.
The structure for the GAP SMP Key Flags is the following:
Bluetooth® Low Energy Application Developer’s Guide, Rev. 14, Nov 2020
User's Guide 31 / 138
NXP Semiconductors
Generic Access Profile (GAP) Layer
bleResult_t Gap_SaveKeys
(
uint8_t nvmIndex,
gapSmpKeys_t* pKeys,
bool_t leSc,
bool_t auth
);
Bluetooth® Low Energy Application Developer’s Guide, Rev. 14, Nov 2020
User's Guide 32 / 138
NXP Semiconductors
Generic Access Profile (GAP) Layer
NOTE
The application callback does not run on ISR context as current system architecture defines that the Link Layer
notifications are processed on the Controller task.
• GAP configuration:
The user should call the following function to enable various events from the mask or use Event None to disable the feature.
The Device ID is valid only for connection events.
bleResult_t Gap_ControllerEnhancedNotification
( uint16_t eventType,
deviceId_t deviceId
);
After enabling events, the user should wait for a gControllerNotificationEvent_c GAP Generic Event in the GAP Generic
Callback. The first event received should have the event type set to gNotifEventNone_c with a status of success confirming
the selected event mask has been enabled. The same event types apply for both the GAP command and the GAP event. The
structure for the Controller Notification event is the following:
Bluetooth® Low Energy Application Developer’s Guide, Rev. 14, Nov 2020
User's Guide 33 / 138
NXP Semiconductors
Generic Access Profile (GAP) Layer
• Controller configuration:
The user should call the following function to enable various events from the mask or use Event None to disable the feature.
The same event types apply as the GAP layer types. The connection handle is valid only for connection events.
bleResult_t Controller_ConfigureEnhancedNotification
(
uint16_t eventType,
uint16_t conn_handle
);
bleResult_t Controller_RegisterEnhancedEventCallback
(
bleCtrlNotificationCallback_t notificationCallback
);
The event structure is nearly identical as the GAP one, except there is no status as the function call executes synchronously.
Bluetooth® Low Energy Application Developer’s Guide, Rev. 14, Nov 2020
User's Guide 34 / 138
NXP Semiconductors
Generic Access Profile (GAP) Layer
Bluetooth® Low Energy Application Developer’s Guide, Rev. 14, Nov 2020
User's Guide 35 / 138
NXP Semiconductors
Generic Access Profile (GAP) Layer
An advertising data set is represented by advertising PDUs belonging together in an advertising event. Each set has different
advertising parameters: PDU type, advertising interval and PHY mode. The advertising data sets are identified by the Advertising
SID (Set ID) field from the ADI – Advertising Data Info. Advertising data or Scan response data can be changed for each adverting
data set and the random value of DID (Data ID) field will be updated to differentiate between them.
bleResult_t Gap_SetExtAdvertisingParameters
(
gapExtAdvertisingParameters_t* pAdvertisingParameters
);
It may use the default set of parameters gGapDefaultExtAdvertisingParameters_d. The application should wait for a
gExtAdvertisingParametersSetupComplete_c event in the Generic Callback. Only one advertising set can be configured at
a time.
Comparing with the legacy Gap_SetAdvertisingParameters command, the new set of parameters is:
Parameter Description
Bluetooth® Low Energy Application Developer’s Guide, Rev. 14, Nov 2020
User's Guide 36 / 138
NXP Semiconductors
Generic Access Profile (GAP) Layer
Parameter Description
NOTE
When using LE Coded PHY for advertising, the default coding scheme chosen by link layer is S=8 (125 kb/s data
rate). To change the default coding scheme, the user has two options:
In both cases, the value of the define or the parameter of the API has to be an appropriate value for primary and
secondary PHYs as defined by the enumeration advCodingScheme_tag found in controller_interface.h.
Bluetooth® Low Energy Application Developer’s Guide, Rev. 14, Nov 2020
User's Guide 37 / 138
NXP Semiconductors
Generic Access Profile (GAP) Layer
bleResult_t Gap_SetExtAdvertisingData
(
uint8_t handle,
gapAdvertisingData_t* pAdvertisingData,
gapScanResponseData_t* pScanResponseData
);
Either of the pAdvertisingData or pScanResponseData parameters can be NULL, but not both. For extended advertising
(BIT4 = 0) only one must be different than NULL – the scannable advertising bit (BIT1) indicates whether pAdvertisingData
(BIT1 = 0) orpScanResponseData (BIT1 = 1) is accepted. The total amount of Advertising Data shall not exceed 1650 bytes.
Application should wait for a gExtAdvertisingDataSetupComplete_c event in the Generic Callback.
3. Enable extended advertising by calling:
bleResult_t Gap_StartExtAdvertising
(
gapAdvertisingCallback_t advertisingCallback,
gapConnectionCallback_t connectionCallback,
uint8_t handle,
uint16_t duration,
uint8_t maxExtAdvEvents
);
Advertising may be enabled for each previously configured advertising set, identified by the handle parameter. If duration
is set to 0, advertising continues until the Host disables it, otherwise advertising is only enabled for this period (multiple of
10 ms). maxExtAdvEvents represent the maximum number of extended advertising events the Controller shall attempt to
send prior to terminating the extended advertising, ignored if set to 0.
Application should wait for a gExtAdvertisingStateChanged_c or a gAdvertisingCommandFailed_c event in the
Advertising Callback.
4. Disable advertising by calling:
bleResult_t Gap_StopExtAdvertising
( uint8_t handle
);
bleResult_t Gap_RemoveAdvSet
(
Bluetooth® Low Energy Application Developer’s Guide, Rev. 14, Nov 2020
User's Guide 38 / 138
NXP Semiconductors
Generic Access Profile (GAP) Layer
uint8_t handle
);
bleResult_t Gap_StartScanning
(
const gapScanningParameters_t* pScanningParameters,
gapScanningCallback_t scanningCallback,
gapFilterDuplicates_t enableFilterDuplicates,
uint16_t duration,
uint16_t period
)
Application may use the default set of parameters gGapDefaultExtScanningParameters_d. If the pScanningParameters
pointer is NULL, the latest set of parameters are used. The scanningPHYs parameter indicates the PHYs on which the
advertising packets should be received on the primary advertising channel. As a result, permitted values for the parameter
are 0x01 (scan LE 1M), 0x04 (scan LE Coded) and 0x05 (scan both LE 1M and LE Coded). There are no strict timing rules
for scanning, yet if both PHYs are enabled for scanning, the scan interval value must be large enough to accommodate two
scan windows (interval >= 2 * window).
If the advertiser uses legacy advertising PDUs, the device may actively scan by sending a SCAN_REQ PDU to the
advertiser on the LE 1M primary advertising channel (no secondary channel in legacy advertising). Respectively, if the
advertiser uses extended advertising PDUs, the active scan operation takes place on the secondary advertising channel.
After the device receives a scannable ADV_EXT_IND PDU on the primary advertising channel (PHY LE 1M or Coded), it
starts listening for the AUX_ADV_IND PDU on the secondary advertising channel (PHY 1M, 2M or Coded). Once received,
the device sends an AUX_SCAN_REQ to the advertiser. Next, an AUX_SCAN_RSP PDU should be received, containing
the scan response data.
Application should wait for a gScanStateChanged_c or a gScanCommandFailed_c in the Scanning Callback.
2. Collect information by waiting for gDeviceScanned_c (legacy advertising PDUs) or gExtDeviceScanned_c (extended
advertising PDUs) event in the Scanning Callback. The gExtDeviceScanned_c event contains additional information
pertaining to the extended received PDU, such as: primary PHY, secondary PHY, advertising SID, interval of the periodic
advertising if enabled in the set.
3. Stop scanning by calling:
bleResult_t Gap_StopScanning(void);
bleResult_t Gap_Connect
(
const gapConnectionRequestParameters_t* pParameters,
gapConnectionCallback_t connCallback
);
The initiatingPHYs parameter indicates the PHYs on which the advertising packets should be received on the primary
advertising channel and the PHYs for which connection parameters have been specified. The parameter is a bitmask of
PHYs: BIT0 = LE 1M, BIT1 = LE 2M and BIT2 = LE Coded. The Host may enable one or more initiating PHYs, but it must
Bluetooth® Low Energy Application Developer’s Guide, Rev. 14, Nov 2020
User's Guide 39 / 138
NXP Semiconductors
Generic Access Profile (GAP) Layer
at least set one bit for a PHY allowed for scanning on the primary advertising channel, i.e. BIT0 for LE 1M PHY or BIT2 for
LE Coded PHY.
If the advertiser uses legacy advertising PDUs, the device may connect by sending a CONNECT_IND PDU to the advertiser
on the LE 1M primary advertising channel (no secondary channel in legacy advertising). On the other hand, if the advertiser
uses extended advertising PDUs, the extended connect operation takes place on the secondary advertising channel. After
the device receives a connectable ADV_EXT_IND PDU on the primary advertising channel (PHY LE 1M or Coded), it starts
listening for the connectable AUX_ADV_IND PDU on the secondary advertising channel (PHY 1M, 2M or Coded). Once
received, the device sends an AUX_CONNECT_REQ to the advertiser. Next, if AUX_CONNECT_RSP PDU is received,
the device enters the Connection State in the Master role on the secondary advertising channel PHY.
Application should wait for a gConnEvtConnected_c event in the Connection Callback. If the channel selection algorithm
#2 is used for this connection, then a gConnEvtChanSelectionAlgorithm2_c event will also be generated.
After the connection is successfully established, the application may choose to read the connection PHY by calling the
Gap_LeReadPhy API. It may also opt to change the PHY of the connection by triggering a PHY Update Procedure using
the Gap_LeSetPhy API, yet the Controller might not be able to perform the change if, e.g., the peer does not support the
new requested PHY.
Bluetooth® Low Energy Application Developer’s Guide, Rev. 14, Nov 2020
User's Guide 40 / 138
NXP Semiconductors
Generic Access Profile (GAP) Layer
bleResult_t Gap_SetPeriodicAdvParameters
(
gapPeriodicAdvParameters_t* pAdvertisingParameters
);
bleResult_t Gap_SetPeriodicAdvertisingData
(
uint8_t handle,
gapAdvertisingData_t* pAdvertisingData
);
pAdvertisingData cannot be NULL. If periodic advertising data must be empty, set cNumAdStructures to 0. Wait for a
gPeriodicAdvDataSetupComplete_c event in the generic callback.
4. Start extended advertising using Gap_StartExtAdvertising.
5. Last, enable Periodic Advertising. Periodic advertising will start only after extended advertising is started.
bleResult_t Gap_StartPeriodicAdvertising
(
uint8_t handle
);
Bluetooth® Low Energy Application Developer’s Guide, Rev. 14, Nov 2020
User's Guide 41 / 138
NXP Semiconductors
Generic Access Profile (GAP) Layer
1. [Optional] Add a known periodic advertiser to the periodic advertiser list held in the Controller by calling:
bleResult_t Gap_UpdatePeriodicAdvList
(
gapPeriodicAdvListOperation_t operation,
bleAddressType_t addrType,
uint8_t* pAddr,
uint8_t SID
);
bleResult_t Gap_PeriodicAdvCreateSync
(
gapPeriodicAdvSyncReq_t* pReq,
gapScanningCallback_t scanningCallback
);
pReq parameterfilterPolicy can be set to gUseCommandParameters_c to synchronize with the given peer, or to
gUsePeriodicAdvList_c to start synchronizing with all the devices in the previously populated periodic advertiser list.
Wait for the gPeriodicAdvSyncEstablished_c event and check the status. If scanning is not enabled at the
time this command is sent, synchronization will occur after scanning is started. Synchronization is pending until
gPeriodicAdvSyncEstablished_c event is received. If it was successful, the syncHandle is returned in this event.
3. Terminate the synchronization with the periodic advertiser by calling:
bleResult_t Gap_PeriodicAdvTerminateSync
(
uint16_t syncHandle
);
Bluetooth® Low Energy Application Developer’s Guide, Rev. 14, Nov 2020
User's Guide 42 / 138
NXP Semiconductors
Chapter 5
Generic Attribute Profile (GATT) Layer
The GATT layer contains the APIs for discovering services and characteristics and transferring data between devices.
The GATT layer is built on top of the Attribute Protocol (ATT), which transfers data between Bluetooth Low Energy devices on a
dedicated L2CAP channel (channel ID 0x04).
As soon as a connection is established between devices, the GATT APIs are readily available. No initialization is required because
the L2CAP channel is automatically created.
To identify the GATT peer instance, the same deviceId value from the GAP layer (obtained in the
gConnEvtConnected_cconnection event) is used.
There are two GATT roles that define the two devices exchanging data over ATT:
• GATT Server – the device that contains a GATT Database, which is a collection of services and characteristics exposing
meaningful data. Usually, the Server responds to requests and commands sent by the Client, but it can be configured to
send data on its own through notifications and indications.
• GATT Client – the “active” device that usually sends requests and commands to the Server to discover Services and
Characteristics on the Server’s Database and to exchange data.
There is no fixed rule deciding which device is the Client and which one is the Server. Any device may initiate a request at any
moment, thus temporarily acting as a Client, at which the peer device may respond, provided it has the Server support and a
GATT Database.
Often, a GAP Central acts as a GATT Client to discover Services and Characteristics and obtain data from the GAP Peripheral,
which usually has a GATT Database. Many standard Bluetooth Low Energy profiles assume that the Peripheral has a database
and must act as a Server. However, this is by no means a general rule.
typedefvoid (* gattClientProcedureCallback_t )
(
deviceId_t deviceId,
gattProcedureType_t procedureType,
gattProcedureResult_t procedureResult,
bleResult_t error
);
Bluetooth® Low Energy Application Developer’s Guide, Rev. 14, Nov 2020
User's Guide 43 / 138
NXP Semiconductors
Generic Attribute Profile (GATT) Layer
bleResult_tGattClient_RegisterProcedureCallback
(
gattClientProcedureCallback_t callback
);
The procedureType parameter may be used to identify the procedure that was started and has reached completion. Only one
procedure may be active at a given moment. Trying to start another procedure while a procedure is already in progress returns
the error gGattAnotherProcedureInProgress_c.
The procedureResult parameter indicates whether the procedure completes successfully or an error occurs. In the latter case, the
error parameter contains the error code.
voidgattClientProcedureCallback
(
deviceId_t deviceId,
gattProcedureType_t procedureType,
gattProcedureResult_t procedureResult,
bleResult_t error
)
{
switch (procedureType)
{
/* ... */
}
}
GattClient_RegisterProcedureCallback(gattClientProcedureCallback);
typedefvoid (* gattClientNotificationCallback_t )
(
deviceId_t deviceId,
uint16_t characteristicValueHandle,
uint8_t * aValue,
uint16_t valueLength
);
The deviceId identifies the Server connection (for multiple connections at the same time). The characteristicValueHandle is the
attribute handle of the Characteristic Value declaration in the GATT Database. The Client must have discovered it previously to
be able recognize it.
The callback must be installed with:
bleResult_tGattClient_RegisterNotificationCallback
(
gattClientNotificationCallback_t callback
);
Bluetooth® Low Energy Application Developer’s Guide, Rev. 14, Nov 2020
User's Guide 44 / 138
NXP Semiconductors
Generic Attribute Profile (GATT) Layer
NOTE
This number is fixed and cannot be increased in Bluetooth Low Energy 4.1.
To maintain a logical mapping between radio packets and ATT packets, the Standard has set the default length of an ATT packet
(the so-called ATT_MTU) also equal to 23. Thus, any ATT request fits in a single radio packet. If the layer above ATT wishes to
send more than 23 bytes of data, it needs to fragment the data into smaller packets and issue multiple ATT requests.
However, the ATT protocol allows devices to increase the ATT_MTU, only if both can support it. Increasing the ATT_MTU has only
one effect: the application does not have to fragment long data, however it can send more than 23 bytes in a single transaction.
The fragmentation is moved on to the L2CAP layer. Over the air though, there would still be more than one radio packet sent.
If the GATT Client supports a larger than default MTU, it should start an MTU exchange as soon as it connects to any Server.
During the MTU exchange, both devices would send their maximum MTU to the other, and the minimum of the two is chosen as
the new MTU.
For example, if the Client supports a maximum ATT_MTU of 250, and the Server supports maximum 120, after the exchange, both
devices set the new ATT_MTU value equal to 120.
To initiate the MTU exchange, call the following function from gatt_client_interface.h:
if (gBleSuccess_c != result)
{
/* Treat error */
}
The value of the maximum supported ATT_MTU of the local device does not have to be included in the request because it is static.
It is defined in the ble_constants.h file under the name gAttMaxMtu_c. Inside the GATT implementation, the ATT Exchange MTU
Request (and Response, for Servers) uses that value.
When the exchange is complete, the Client callback is triggered by the gGattProcExchangeMtu_c procedure type.
voidgattClientProcedureCallback
(
deviceId_t deviceId,
gattProcedureType_t procedureType,
gattProcedureResult_t procedureResult,
bleResult_t error
)
{
switch (procedureType)
{
/* ... */
casegGattProcExchangeMtu_c:
if (gGattProcSuccess_c == procedureResult)
{
/* To obtain the new MTU */
uint16_t newMtu;
bleResult_t result = Gatt_GetMtu(deviceId, &newMtu);
if (gBleSuccess_c == result)
{
/* Use the value of the new MTU */
(void) newMtu;
}
Bluetooth® Low Energy Application Developer’s Guide, Rev. 14, Nov 2020
User's Guide 45 / 138
NXP Semiconductors
Generic Attribute Profile (GATT) Layer
}
else
{
/* Handle error */
}
break;
/* ... */
}
}
bleResult_tGattClient_DiscoverAllPrimaryServices
(
deviceId_t deviceId,
gattService_t * aOutPrimaryServices,
uint8_t maxServiceCount,
uint8_t * pOutDiscoveredCount
);
The aOutPrimaryServices parameter must point to an allocated array of services. The size of the array must be equal to the value
of the maxServiceCount parameter, which is passed to make sure the GATT module does not attempt to write past the end of the
array if more Services are discovered than expected.
The pOutDiscoveredCount parameter must point to a static variable because the GATT module uses it to write the number of
Services discovered at the end of the procedure. This number is less than or equal to the maxServiceCount.
If there is equality, it is possible that the Server contains more than maxServiceCount Services, but they could not be discovered
as a result of the array size limitation. It is the application developer’s responsibility to allocate a large enough number according
to the expected contents of the Server’s database.
In the following example, the application expects to find no more than 10 Services on the Server.
#define mcMaxPrimaryServices_c 10
static gattService_t primaryServices[mcMaxPrimaryServices_c];
uint8_t mcPrimaryServices;
if (gBleSuccess_c != result)
{
/* Treat error */
}
Bluetooth® Low Energy Application Developer’s Guide, Rev. 14, Nov 2020
User's Guide 46 / 138
NXP Semiconductors
Generic Attribute Profile (GATT) Layer
The operation triggers the Client Procedure Callback when complete. The application may read the number of discovered services
and each service’s handle range and UUID.
voidgattClientProcedureCallback
(
deviceId_t deviceId,
gattProcedureType_t procedureType,
gattProcedureResult_t procedureResult,
bleResult_t error
)
{
switch (procedureType)
{
/* ... */
casegGattProcDiscoverAllPrimaryServices_c:
if (gGattProcSuccess_c == procedureResult)
{
/* Read number of discovered services */
PRINT( mcPrimaryServices );
/* Read each service's handle range and UUID */
for (int j = 0; j < mcPrimaryServices; j++)
{
PRINT( primaryServices[j]. startHandle );
PRINT( primaryServices[j]. endHandle );
PRINT( primaryServices[j]. uuidType );
PRINT( primaryServices[j]. uuid );
}
}
else
{
/* Handle error */
PRINT( error );
}
break;
/* ... */
}
}
bleResult_tGattClient_DiscoverPrimaryServicesByUuid
(
deviceId_t deviceId,
bleUuidType_t uuidType,
const bleUuid_t * pUuid,
gattService_t * aOutPrimaryServices,
uint8_t maxServiceCount,
uint8_t * pOutDiscoveredCount
);
The procedure is very similar to the one described in Discover all primary services. The only difference is this time we are filtering
the search according to a Service UUID described by two extra parameters: pUuid and uuidType.
This procedure is useful when the Client is only interested in a specific type of Services. Usually, it is performed on Servers that
are known to contain a certain Service, which is specific to a certain profile. Therefore, most of the times the search is expected
to find a single Service of the given type. As a result, only one structure is usually allocated.
Bluetooth® Low Energy Application Developer’s Guide, Rev. 14, Nov 2020
User's Guide 47 / 138
NXP Semiconductors
Generic Attribute Profile (GATT) Layer
For example, when two devices implement the Heart Rate (HR) Profile, an HR Collector connects to an HR Sensor and may only
be interested in discovering the Heart Rate Service (HRS) to work with its Characteristics. The following code example shows
how to achieve this. Standard values for Service and Characteristic UUIDs, as defined by the Bluetooth SIG, are located in the
ble_sig_defines.h file.
In the Client Procedure Callback, the application should check if any Service with the given UUID was found and read its handle
range (also perhaps proceed with Characteristic Discovery within that service range).
void gattClientProcedureCallback
(
deviceId_t deviceId,
gattProcedureType_t procedureType,
gattProcedureResult_t procedureResult,
bleResult_t error
)
{
switch (procedureType)
{
/* ... */
case gGattProcDiscoverPrimaryServicesByUuid_c:
if (gGattProcSuccess_c == procedureResult)
{
if (1 == mcHrs)
{
/* HRS found, read the handle range */
PRINT( heartRateService. startHandle );
PRINT( heartRateService. endHandle );
}
else
{
/* HRS not found! */
}
}
else
{
/* Handle error */
PRINT( error );
}
break;
/* ... */
Bluetooth® Low Energy Application Developer’s Guide, Rev. 14, Nov 2020
User's Guide 48 / 138
NXP Semiconductors
Generic Attribute Profile (GATT) Layer
}
}
bleResult_tGattClient_FindIncludedServices
(
deviceId_t deviceId,
gattService_t * pIoService,
uint8_t maxServiceCount
);
The service structure that pIoService points to must have the aIncludedServices field linked to an allocated array of services,
of size maxServiceCount, chosen according to the expected number of included services to be found. This is the application’s
choice, usually following profile specifications.
Also, the service’s range must be set (the startHandle and endHandle fields), which may have already been done by the previous
Service Discovery procedure (as described in Discover all primary services and Discover primary services by UUID).
The number of discovered included services is written by the GATT module in the cNumIncludedServices field of the structure
from pIoService. Obviously, a maximum of maxServiceCount included services is discovered.
The following example assumes the Heart Rate Service was discovered using the code provided in Discover primary services
by UUID.
#define mxMaxIncludedServices_c 3
static gattService_t includedServices[mxMaxIncludedServices_c];
if (gBleSuccess_c != result)
{
/* Treat error */
}
When the Client Procedure Callback is triggered, if any included services are found, the application can read their handle range
and their UUIDs.
void gattClientProcedureCallback
(
deviceId_t deviceId,
gattProcedureType_t procedureType,
Bluetooth® Low Energy Application Developer’s Guide, Rev. 14, Nov 2020
User's Guide 49 / 138
NXP Semiconductors
Generic Attribute Profile (GATT) Layer
gattProcedureResult_t procedureResult,
bleResult_t error
)
{
switch (procedureType)
{
/* ... */
case gGattProcFindIncludedServices_c:
if (gGattProcSuccess_c == procedureResult)
{
/* Read included services data */
PRINT( pPrimaryService-> cNumIncludedServices );
for (int j = 0; j < pPrimaryService-> cNumIncludedServices ; j++)
{
PRINT( pPrimaryService-> aIncludedServices [j]. startHandle );
PRINT( pPrimaryService-> aIncludedServices [j]. endHandle );
PRINT( pPrimaryService-> aIncludedServices [j]. uuidType );
PRINT( pPrimaryService-> aIncludedServices [j]. uuid );
}
}
else
{
/* Handle error */
PRINT( error );
}
break;
/* ... */
}
}
bleResult_tGattClient_DiscoverAllCharacteristicsOfService
(
deviceId_t deviceId,
gattService_t * pIoService,
uint8_t maxCharacteristicCount
);
All required information is contained in the service structure pointed to by pIoService, most importantly being the service range
(startHandle and endHandle) which is usually already filled out by a Service Discovery procedure. If not, they need to be
written manually.
Also, the service structure’s aCharacteristics field must be linked to an allocated characteristic array.
The following example discovers all Characteristics contained in the Heart Rate Service discovered in Section Discover primary
services by UUID.
#define mcMaxCharacteristics_c 10
static gattCharacteristic_t hrsCharacteristics[mcMaxCharacteristics_c];
pService->aCharacteristics = hrsCharacteristics;
Bluetooth® Low Energy Application Developer’s Guide, Rev. 14, Nov 2020
User's Guide 50 / 138
NXP Semiconductors
Generic Attribute Profile (GATT) Layer
deviceId,
pService,
mcMaxCharacteristics_c
);
voidgattClientProcedureCallback
(
deviceId_t deviceId,
gattProcedureType_t procedureType,
gattProcedureResult_t procedureResult,
bleResult_t error
)
{
switch (procedureType)
{
/* ... */
casegGattProcDiscoverAllCharacteristics_c:
if (gGattProcSuccess_c == procedureResult)
{
/* Read number of discovered Characteristics */
PRINT(pService-> cNumCharacteristics );
/* Read discovered Characteristics data */
for ( uint8_t j = 0; j < pService-> cNumCharacteristics ; j++)
{
/* Characteristic UUID is found inside the value field
* to avoid duplication */
PRINT(pService-> aCharacteristics [j]. value . uuidType );
PRINT(pService-> aCharacteristics [j]. value . uuid );
}
else
{
/* Handle error */
PRINT( error );
}
break;
/* ... */
}
}
Bluetooth® Low Energy Application Developer’s Guide, Rev. 14, Nov 2020
User's Guide 51 / 138
NXP Semiconductors
Generic Attribute Profile (GATT) Layer
This API can be used as in the previous examples, in other words, following a Service Discovery procedure. However, the user
may want to perform a Characteristic search with UUID over the entire database, skipping the Service Discovery entirely. To do
so, a dummy service structure must be defined and its range must be set to maximum, as shown in the following example:
gattService_t dummyService;
dummyService. startHandle = 0x0001;
dummyService. endHandle = 0xFFFF;
static gattCharacteristic_t hrcpCharacteristic;
static uint8_t mcHrcpChar;
In either case, the value of the mcHrcpChar variable should be checked in the procedure callback.
voidgattClientProcedureCallback
(
deviceId_t deviceId,
gattProcedureType_t procedureType,
gattProcedureResult_t procedureResult,
bleResult_t error
)
{
switch (procedureType)
{
/* ... */
casegGattProcDiscoverCharacteristicByUuid_c:
Bluetooth® Low Energy Application Developer’s Guide, Rev. 14, Nov 2020
User's Guide 52 / 138
NXP Semiconductors
Generic Attribute Profile (GATT) Layer
if (gGattProcSuccess_c == procedureResult)
{
if (1 == mcHrcpChar)
{
/* HRCP found, read discovered data */
PRINT(hrcpCharacteristic. properties );
PRINT(hrcpCharacteristic. value . handle );
}
else
{
/* HRCP not found! */
}
}
else
{
/* Handle error */
PRINT(error);
}
break;
/* ... */
}
}
bleResult_tGattClient_DiscoverAllCharacteristicDescriptors
(
deviceId_t deviceId,
gattCharacteristic_t * pIoCharacteristic,
uint16_t endingHandle,
uint8_t maxDescriptorCount
);
The pIoCharacteristic pointer must point to a Characteristic structure with the value.handle field set (either by a discovery
operation or by the application) and the aDescriptors field pointed to an allocated array of Descriptor structures.
The endingHandle should be set to the handle of the next Characteristic or Service declaration in the database to indicate when the
search for descriptors must stop. The GATT Client module uses ATT Find Information Requests to discover the descriptors, and
it does so until it discovers a Characteristic or Service declaration or until endingHandle is reached. Thus, by providing a correct
ending handle, the search for descriptors is optimized, sparing unnecessary extra air packets.
If, however, the application does not know where the next declaration lies and cannot provide this optimization hint, the
endingHandle should be set to 0xFFFF.
Continuing the example from Discover characteristics by UUID, the following code assumes that the Heart Rate Control Point
Characteristic has no more than 5 descriptors and performs Descriptor Discovery.
#define mcMaxDescriptors_c 5
static gattAttribute_t aDescriptors[mcMaxDescriptors_c];
hrcpCharacteristic. aDescriptors = aDescriptors;
Bluetooth® Low Energy Application Developer’s Guide, Rev. 14, Nov 2020
User's Guide 53 / 138
NXP Semiconductors
Generic Attribute Profile (GATT) Layer
);
if (gBleSuccess_c != result)
{
/* Handle error */
}
voidgattClientProcedureCallback
(
deviceId_t deviceId,
gattProcedureType_t procedureType,
gattProcedureResult_t procedureResult,
bleResult_t error
)
{
switch (procedureType)
{
/* ... */
casegGattProcDiscoverAllCharacteristicDescriptors_c:
if (gGattProcSuccess_c == procedureResult)
{
/* Read number of discovered descriptors */
PRINT(hrcpCharacteristic. cNumDescriptors );
/* Read descriptor data */
for ( uint8_t j = 0; j < hrcpCharacteristic. cNumDescriptors ; j++)
{
PRINT(hrcpCharacteristic. aDescriptors [j]. handle );
PRINT(hrcpCharacteristic. aDescriptors [j]. uuidType );
PRINT(hrcpCharacteristic. aDescriptors [j]. uuid );
}
}
else
{
/* Handle error */
PRINT(error);
}
break;
/* ... */
}
}
bleResult_tGattClient_ReadCharacteristicValue
(
deviceId_t deviceId,
gattCharacteristic_t * pIoCharacteristic,
uint16_t maxReadBytes
);
Bluetooth® Low Energy Application Developer’s Guide, Rev. 14, Nov 2020
User's Guide 54 / 138
NXP Semiconductors
Generic Attribute Profile (GATT) Layer
This procedure assumes that the application knows the Characteristic Value Handle, usually from a previous Characteristic
Discovery procedure. Therefore, the value.handle field of the structure pointed by pIoCharacteristic must be completed.
Also, the application must allocate a large enough array of bytes where the received value (from the ATT packet exchange) is
written. The maxReadBytes parameter is set to the size of this allocated array.
The GATT Client module takes care of long characteristics, whose values have a greater length than can fit in a single ATT packet,
transparently by issuing repeated ATT Read Blob Requests when needed.
The following examples assume that the application knows the Characteristic Value Handle and that the value length is variable,
but limited to 50 bytes.
gattCharacteristic_t myCharacteristic;
myCharacteristic. value . handle = 0x10AB;
#define mcMaxValueLength_c 50
static uint8_t aValue[mcMaxValueLength_c];
if (gBleSuccess_c != result)
{
/* Handle error */
}
Regardless of the value length, the Client Procedure Callback is triggered when the reading is complete. The received value length
is also filled in the value structure.
voidgattClientProcedureCallback
(
deviceId_t deviceId,
gattProcedureType_t procedureType,
gattProcedureResult_t procedureResult,
bleResult_t error
)
{
switch (procedureType)
{
/* ... */
casegGattProcReadCharacteristicValue_c:
if (gGattProcSuccess_c == procedureResult)
{
/* Read value length */
PRINT(myCharacteristic. value . valueLength );
/* Read data */
for ( uint16_t j = 0; j < myCharacteristic. value . valueLength ; j++)
{
PRINT(myCharacteristic. value . paValue [j]);
}
}
else
{
/* Handle error */
Bluetooth® Low Energy Application Developer’s Guide, Rev. 14, Nov 2020
User's Guide 55 / 138
NXP Semiconductors
Generic Attribute Profile (GATT) Layer
PRINT(error);
}
break;
/* ... */
}
}
bleResult_tGattClient_ReadUsingCharacteristicUuid
(
deviceId_t deviceId,
bleUuidType_t uuidType,
const bleUuid_t* pUuid,
const gattHandleRange_t* pHandleRange,
uint8_t* aOutBuffer,
uint16_t maxReadBytes,
uint16_t* pOutActualReadBytes
);
This provides support for an important optimization, which involves reading a Characteristic Value without performing any Service
or Characteristic Discovery.
For example, the following is the process to write an application that connects to any Server and wants to read the device name.
The device name is contained in the Device Name Characteristic from the GAP Service. Therefore, the necessary steps involve
discovering all primary services, identifying the GAP Service by its UUID, discovering all Characteristics of the GAP Service and
identifying the Device Name Characteristic (alternatively, discovering Characteristic by UUID inside GAP Service), and, finally,
reading the device name by using the Characteristic Read Procedure.
Instead, the Characteristic Read by UUID Procedure allows reading a Characteristic with a specified UUID, assuming one exists
on the Server, without knowing the Characteristic Value Handle.
The described example is implemented as follows:
#define mcMaxValueLength_c 20
static uint8_t aValue[2 + mcMaxValueLength_c]; //First 2 bytes are the handle
static uint16_t deviceNameLength;
bleUuid_t uuid = {
.uuid16 = gBleSig_GapDeviceName_d
};
);
if (gBleSuccess_c != result)
{
Bluetooth® Low Energy Application Developer’s Guide, Rev. 14, Nov 2020
User's Guide 56 / 138
NXP Semiconductors
Generic Attribute Profile (GATT) Layer
/* Handle error */
}
The Client Procedure Callback is triggered when the reading is complete. Because only one air packet is exchanged during this
procedure, it can only be used as a quick reading of Characteristic Values with length no greater than ATT_MTU – 1.
voidgattClientProcedureCallback
(
deviceId_t deviceId,
gattProcedureType_t procedureType,
gattProcedureResult_t procedureResult,
bleResult_t error
)
{
switch (procedureType)
{
/* ... */
casegGattProcReadUsingCharacteristicUuid_c:
if (gGattProcSuccess_c == procedureResult)
{
/* Read characteristic value handle */
PRINT(aValue[0] | (aValue[1] << 8));
deviceNameLength -= 2;
/* ... */
}
}
bleResult_tGattClient_ReadMultipleCharacteristicValues
(
deviceId_t deviceId,
uint8_t cNumCharacteristics,
gattCharacteristic_t * aIoCharacteristics
);
This procedure also allows an optimization for a specific situation, which occurs when multiple Characteristics, whose values are
of known, fixed-length, can be all read in one single ATT transaction (usually one single over-the-air packet).
Bluetooth® Low Energy Application Developer’s Guide, Rev. 14, Nov 2020
User's Guide 57 / 138
NXP Semiconductors
Generic Attribute Profile (GATT) Layer
The application must know the value handle and value length of each Characteristic. It must also write the value.handle and
value.maxValueLength with the aforementioned values, respectively, and then link the value.paValue field with an allocated array
of size maxValueLength.
The following example involves reading three characteristics in a single packet.
#define mcNumCharacteristics_c 3
#define mcChar1Length_c 4
#define mcChar2Length_c 5
#define mcChar3Length_c 6
if (gBleSuccess_c != result)
{
/* Handle error */
}
When the Client Procedure Callback is triggered, if no error occurs, each Characteristic’s value length should be equal to the
requested lengths.
voidgattClientProcedureCallback
(
deviceId_t deviceId,
gattProcedureType_t p rocedureType,
gattProcedureResult_t procedureResult,
bleResult_t error
)
{
switch (procedureType)
{
/* ... */
casegGattProcReadMultipleCharacteristicValues_c:
if (gGattProcSuccess_c == procedureResult)
{
Bluetooth® Low Energy Application Developer’s Guide, Rev. 14, Nov 2020
User's Guide 58 / 138
NXP Semiconductors
Generic Attribute Profile (GATT) Layer
/* ... */
}
}
bleResult_tGattClient_WriteCharacteristicValue
(
deviceId_t deviceId,
const gattCharacteristic_t * pCharacteristic,
uint16_t valueLength,
const uint8_t * aValue,
bool_t withoutResponse,
bool_t signedWrite,
bool_t doReliableLongCharWrites,
const uint8_t * aCsrk
);
Bluetooth® Low Energy Application Developer’s Guide, Rev. 14, Nov 2020
User's Guide 59 / 138
NXP Semiconductors
Generic Attribute Profile (GATT) Layer
This is the simplest usage for writing a Characteristic. It sends an ATT Write Request if the value length does not exceed the
maximum space for an over-the-air packet (ATT_MTU – 3). Otherwise, it sends ATT Prepare Write Requests with parts of the
attribute, without checking the ATT Prepare Write Response data for consistency, and in the end an ATT Execute Write Request.
This usage sends an ATT Write Command. Long Characteristic values are not allowed here and trigger a
gBleInvalidParameter_c error.
This usage sends an ATT Signed Write Command. The CSRK used to sign data must be provided.
gattCharacteristic_t myChar;
myChar. value . handle = 0x00A0; /* Or maybe it was previously discovered? */
#define mcValueLength_c 3
uint8_t aValue[mcValueLength_c] = { 0x01, 0x02, 0x03 };
if (gBleSuccess_c != result)
{
/* Handle error */
}
voidgattClientProcedureCallback
(
deviceId_t deviceId,
gattProcedureType_t procedureType,
gattProcedureResult_t procedureResult,
bleResult_t error
)
{
switch (procedureType)
{
/* ... */
casegGattProcWriteCharacteristicValue_c:
if (gGattProcSuccess_c == procedureResult)
{
/* Continue */
}
else
{
/* Handle error */
Bluetooth® Low Energy Application Developer’s Guide, Rev. 14, Nov 2020
User's Guide 60 / 138
NXP Semiconductors
Generic Attribute Profile (GATT) Layer
PRINT(error);
}
break;
/* ... */
}
}
bleResult_tGattClient_ReadCharacteristicDescriptor
(
deviceId_t deviceId,
gattAttribute_t * pIoDescriptor,
uint16_t maxReadBytes
);
bleResult_tGattClient_WriteCharacteristicDescriptor
(
deviceId_t deviceId,
gattAttribute_t * pDescriptor,
uint16_t valueLength,
uint8_t * aValue
);
#define mcMaxDescriptors_c 5
static gattAttribute_t aDescriptors[mcMaxDescriptors_c];
myChar. aDescriptors = aDescriptors;
/* ... */
{
bleResult_t result = GattClient_DiscoverAllCharacteristicDescriptors
(
deviceId,
&myChar,
0xFFFF,
mcMaxDescriptors_c
);
Bluetooth® Low Energy Application Developer’s Guide, Rev. 14, Nov 2020
User's Guide 61 / 138
NXP Semiconductors
Generic Attribute Profile (GATT) Layer
if (gBleSuccess_c != result)
{
/* Handle error */
}
}
/* ... */
voidgattClientProcedureCallback
(
deviceId_t deviceId,
gattProcedureType_t procedureType,
gattProcedureResult_t procedureResult,
bleResult_t error
)
{
switch (procedureType)
{
/* ... */
casegGattProcDiscoverAllCharacteristicDescriptors_c:
if (gGattProcSuccess_c == procedureResult)
{
/* Find CCCD */
for ( uint8_t j = 0; j < myChar. cNumDescriptors ; j++)
{
if (gBleUuidType16_c == myChar. aDescriptors [j]. uuidType
&& gBleSig_CCCD_d == myChar. aDescriptors [j]. uuid . uuid16 )
{
uint8_t cccdValue[2];
packTwoByteValue(gCccdNotification_c, cccdValue);
bleResult_t result = GattClient_WriteCharacteristicDescriptor
(
deviceId,
&myChar. aDescriptors [j],
2,
cccdValue
);
if (gBleSuccess_c != result)
{
/* Handle error */
}
break;
}
}
}
else
{
/* Handle error */
PRINT(error);
}
break;
casegGattProcWriteCharacteristicDescriptor_c:
if (gGattProcSuccess_c == procedureResult)
{
/* Notification successfully activated */
}
else
Bluetooth® Low Energy Application Developer’s Guide, Rev. 14, Nov 2020
User's Guide 62 / 138
NXP Semiconductors
Generic Attribute Profile (GATT) Layer
{
/* Handle error */
PRINT(error);
}
/* ... */
}
}
bleResult_tGattClient_ResetProcedure (void);
It resets the internal state of the GATT Client and new procedure may be started at any time.
typedefvoid (* gattServerCallback_t )
(
deviceId_t deviceId, /*!< Device ID identifying the active connection. */
gattServerEvent_t * pServerEvent /*!< Server event. */
);
bleResult_tGattServer_RegisterCallback
(
gattServerCallback_t callback
);
The first member of the gattServerEvent_t structure is the eventType, an enumeration type with the following possible values:
• gEvtMtuChanged_c : Signals that the Client-initiated MTU Exchange Procedure has completed successfully and the
ATT_MTU has been increased. The event data contains the new value of the ATT_MTU. Is it possible that the application
flow depends on the value of the ATT_MTU, for example, there may be specific optimizations for different ATT_MTU
ranges. This event is not triggered if the ATT_MTU was not changed during the procedure.
• gEvtHandleValueConfirmation_c : A Confirmation was received from the Client after an Indication was sent by the Server.
• gEvtAttributeWritten_c, gEvtAttributeWrittenWithoutResponse_c : See Attribute write notifications.
• gEvtCharacteristicCccdWritten_c : The Client has written a CCCD. The application should save the CCCD value for
bonded devices with Gap_SaveCccd.
• gEvtError_c : An error occurred during a Server-initiated procedure.
Bluetooth® Low Energy Application Developer’s Guide, Rev. 14, Nov 2020
User's Guide 63 / 138
NXP Semiconductors
Generic Attribute Profile (GATT) Layer
bleResult_tGattServer_SendNotification
(
deviceId_t deviceId,
uint16_t handle
);
bleResult_tGattServer_SendIndication
(
deviceId_t deviceId,
uint16_t handle
);
Only the attribute handle needs to be provided to these functions. The attribute value is automatically retrieved from the
GATT Database.
Note that is it the application developer’s responsibility to check if the Client designated by the deviceId has previously activated
Notifications/Indications by writing the corresponding CCCD value. To do that, the following GAP APIs should be used:
bleResult_tGap_CheckNotificationStatus
(
deviceId_t deviceId,
uint16_t handle,
bool_t * pOutIsActive
);
bleResult_tGap_CheckIndicationStatus
(
deviceId_t deviceId,
uint16_t handle,
bool_t * pOutIsActive
);
NOTE
It is necessary to use these two functions with the Gap_SaveCccd only for bonded devices, because the data is
saved in NVM and reloaded at reconnection. For devices that do not bond, the application may also use its own
bookkeeping mechanism.
There is an important difference between sending Notifications and Indications: the latter can only be sent one at a time and
the application must wait for the Client Confirmation (signaled by the gEvtHandleValueConfirmation_c Server event, or by a
gEvtError_c event with gGattClientConfirmationTimeout_c error code) before sending a new Indication. Otherwise, a gEvtError_c
event with gGattIndicationAlreadyInProgress_c error code is triggered. The Notifications can be sent consecutively.
Bluetooth® Low Energy Application Developer’s Guide, Rev. 14, Nov 2020
User's Guide 64 / 138
NXP Semiconductors
Generic Attribute Profile (GATT) Layer
LSC is a “normal” Characteristic with Read and Write properties. Its value is either 0, lamp off, or 1, lamp on). Writing the value
sets the lamp in the desired state. Reading it provides its current state, which is only useful when passing the information remotely.
The LAC has only one property, which is Write Without Response. The user can use the Write Without Response procedure to
write only the value 0x01 (all other values are invalid). Whenever the user writes 0x01 in LAC, the lamp switches its state.
The LAC is a good example of a Control-Point Characteristic for these reasons:
• Writing a certain value (in this case 0x01) triggers an action on the lamp.
• The value the user writes has immediate significance only (“0x01 switches the lamp”) and is never used again in the
future. For this reason, it does not need to be stored in the database.
Obviously, whenever a Control-Point Characteristic is written, the application must be notified to trigger some application-
specific action.
The GATT Server allows the application to register a set of attribute handles as “write-notifiable”, in other words, the application
wants to receive an event each time any of these attributes is written by the peer Client.
All Control-Point Characteristics in the GATT Database must have their Value handle registered. In fact, the application may
register any other handle for write notifications for its own purposes with the following API:
bleResult_tGattServer_RegisterHandlesForWriteNotifications
(
uint8_t handleCount,
const uint16_t * aAttributeHandles
);
The handleCount is the size of the aAttributeHandles array and it cannot exceed gcGattMaxHandleCountForWriteNotifications_c.
After an attribute handle has been registered with this function, whenever the Client attempts to write its value, the GATT Server
Callback is triggered with one of the following event types:
• gEvtAttributeWritten_c is triggered when the attribute is written with a Write procedure (ATT Write Request). In this
instance, the application has to decide whether the written value is valid and whether it must be written in the database,
and, if so, the application must write the value with the GattDb_WriteAttribute, see Chapter 6. At this point, the GATT
Server module does not automatically send the ATT Write Response over the air. Instead, it waits for the application to
call this function:
bleResult_tGattServer_SendAttributeWrittenStatus
(
deviceId_t deviceId,
uint16_t attributeHandle,
uint8_t status
);
The value of the status parameter is interpreted as an ATT Error Code. It must be equal to the gAttErrCodeNoError_c (0x00) if
the value is valid and it is successfully processed by the application. Otherwise, it must be equal to a profile-specific error code
(in interval 0xE0-0xFF) or an application-specific error code (in interval 0x80-0x9F).
• gEvtAttributeWrittenWithoutResponse_c is triggered when the attribute is written with a Write Without Response
procedure (ATT Write Command). Because this procedure expects no response, the application may process it and,
if necessary, write it in the database. Regardless of whether the value is valid or not, no response is needed from the
application.
• gEvtLongCharacteristicWritten_c is triggered when the Client has completed writing a Long Characteristic value; the event
data includes the handle of the Characteristic Value attribute and a pointer to its value in the database.
Bluetooth® Low Energy Application Developer’s Guide, Rev. 14, Nov 2020
User's Guide 65 / 138
NXP Semiconductors
Chapter 6
GATT database application interface
For over-the-air packet exchanges between a Client and a Server, the GATT Server module automatically retrieves data from the
GATT Database and responds to all ATT Requests from the peer Client, provided it passes the security checks. This ensures that
the Server application does not have to perform any kind of searches over the database.
However, the application must have access to the database to write meaningful data into its Characteristics. For example,
a temperature sensor must periodically write the temperature, which is measured by an external thermometer, into the
Temperature Characteristic.
For these kinds of situations, a few APIs are provided in the gatt_db_app_interface.h file.
NOTE
All functions provided by this interface are executed synchronously. The result of the operation is saved in the
return value and it generates no event.
bleResult_tGattDb_WriteAttribute
(
uint16_t handle,
uint16_t valueLength,
const uint8_t * aValue
);
The value length must be valid, as defined when the database is created. Otherwise, a gGattInvalidValueLength_c error
is returned.
Also, if the database is created statically, as explained in Creating GATT database, the handle may be referenced through the
enumeration member with a friendly name defined in the gatt_db.h.
bleResult_tGattDb_ReadAttribute
(
uint16_t handle,
uint16_t maxBytes,
uint8_t * aOutValue,
uint16_t * pOutValueLength
);
The aOutValue array must be allocated with the size equal to maxBytes.
bleResult_tGattDb_FindCharValueHandleInService
(
uint16_t serviceHandle,
bleUuidType_t characteristicUuidType,
const bleUuid_t * pCharacteristicUuid,
Bluetooth® Low Energy Application Developer’s Guide, Rev. 14, Nov 2020
User's Guide 66 / 138
NXP Semiconductors
GATT database application interface
uint16_t * pOutCharValueHandle
);
If the return value is gBleSuccess_c, the handle is written at pOutCharValueHandle. If the serviceHandle is invalid
or not a valid Service declaration, the gBleGattDbInvalidHandle_c is returned. Otherwise, the search is performed
starting with the serviceHandle+1. If no Characteristic of the given UUID is found, the function returns the
gBleGattDbCharacteristicNotFound_c value.
To find a Characteristic Descriptor of a given type in a Characteristic, when the Characteristic Value Handle is known, the following
API is provided:
bleResult_tGattDb_FindDescriptorHandleForCharValueHandle
(
uint16_t charValueHandle,
bleUuidType_t descriptorUuidType,
const bleUuid_t * pDescriptorUuid,
uint16_t * pOutDescriptorHandle
);
Similarly, the function returns gBleGattDbInvalidHandle_c is the handle is invalid. Otherwise, it starts searching from the
charValueHandle+1. Then, gBleGattDbDescriptorNotFound_c is returned if no Descriptor of the specified type is found.
Otherwise, its attribute handle is written at the pOutDescriptorHandle and the function returns gBleSuccess_c.
One of the most commonly used Characteristic Descriptor is the Client Configuration Characteristic Descriptor (CCCD), which has
the UUID equal to gBleSig_CCCD_d. For this specific type, a special API is used as a shortcut:
bleResult_tGattDb_FindCccdHandleForCharValueHandle
(
uint16_t charValueHandle,
uint16_t * pOutCccdHandle
);
Bluetooth® Low Energy Application Developer’s Guide, Rev. 14, Nov 2020
User's Guide 67 / 138
NXP Semiconductors
Chapter 7
Creating GATT database
The GATT Database contains several GATT Services where each Service must contain at least one GATT Characteristic.
The Attribute Database contains a collection of attributes. Each attribute has four fields:
• The attribute handle – a 2-byte database index, which starts from 0x0001 and increases with each new attribute, not
necessarily consecutive; maximum value is 0xFFFF.
• The attribute type or UUID – a 2-byte, 4-byte, or 16-byte UUID.
• The attribute permissions – 1 byte containing access flags; this defines whether the attribute’s value can be read or written
and the security requirements for each operation type
• The attribute value – an array of maximum 512 bytes.
The ATT does not interpret the UUIDs and values contained in the database. It only deals with data transfer based on the
attributes’ handles.
The GATT gives meaning to the attributes based on their UUIDs and groups them into Characteristics and Services.
There are two possible ways of defining the GATT Database: at compile-time (statically) or at runtime (dynamically).
NOTE
On some occasions, it is desired to reuse an 128-bit UUID declared in gatt_uuid128.h. The 16 byte array is available
through its friendly name and be accessed by including gatt_db_handles.h in the application. It is strongly advised
to use it only in read-only operations. For example:
(gatt_uuid128.h)
UID128(uuid_service_wireless_uart, 0xE0, 0x1C, 0x4B, 0x5E, 0x1E, 0xEB, 0xA1, 0x5C, 0xEE, 0xF4, 0x5E,
0xBA, 0x00, 0x01, 0xFF, 0x01)
(app.c)
#include "gatt_db_handles.h"
Bluetooth® Low Energy Application Developer’s Guide, Rev. 14, Nov 2020
User's Guide 68 / 138
NXP Semiconductors
Creating GATT database
........
/* Start Service Discovery*/
BleServDisc_FindService(peerDeviceId, gBleUuidType128_c, (bleUuid_t*) &uuid_service_wireless_uart);
• INCLUDE (service_name)
— The service_name parameter is the friendly name used to declare the Secondary Service.
— This macro is used only for Secondary Services with a SIG-defined, 2-byte, Service UUID.
• INCLUDE_CUSTOM (service_name)
— This macro is used for Secondary Services that have either a 4-byte UUID or a 16-byte UUID.
The effect of the service inclusion is that the including Service is considered to contain all the Characteristics of the
included Service.
Bluetooth® Low Energy Application Developer’s Guide, Rev. 14, Nov 2020
User's Guide 69 / 138
NXP Semiconductors
Creating GATT database
Bluetooth® Low Energy Application Developer’s Guide, Rev. 14, Nov 2020
User's Guide 70 / 138
NXP Semiconductors
Creating GATT database
• CCCD (name)
This simple macro is basically equivalent to the following Descriptor declaration:
DESCRIPTOR (name,
0x2902,
(gGattAttPermAccessReadable_c
| gGattAttPermAccessWritable_c),
2, 0x00, 0x00)
PRIMARY_SERVICE(service_gap, 0x1800)
Bluetooth® Low Energy Application Developer’s Guide, Rev. 14, Nov 2020
User's Guide 71 / 138
NXP Semiconductors
Creating GATT database
PRIMARY_SERVICE(service_scan_parameters, 0x1813)
NOTE
All “user-friendly” names given in declarations are statically defined as enum members, numerically equal to
the attribute handle of the declaration. This means that one of those names can be used in code wherever
an attribute handle is required as a parameter of a function if gatt_db_handles.h is included in the application
source file. For example, to write the value of the Scan Refresh Characteristic from the application-level code, use
these instructions:
#include "gatt_db_handles.h"
...
uint8_t scan_refresh_value = 0x12;
GattDb_WriteAttribute( char_scan_refresh, &scan_refresh_value, 1);
Bluetooth® Low Energy Application Developer’s Guide, Rev. 14, Nov 2020
User's Guide 72 / 138
NXP Semiconductors
Creating GATT database
Bluetooth® Low Energy Application Developer’s Guide, Rev. 14, Nov 2020
User's Guide 73 / 138
NXP Semiconductors
Chapter 8
Creating a Custom Profile
This chapter describes how the user can create customizable functionality over the Bluetooth Low Energy host stack by defining
profiles and services. The Temperature Profile, used by the Temperature Sensor and Collector applications is used as a reference
to explain the steps of building custom functionality.
/* Temperature */
UUID128(uuid_service_temperature,
0xfb ,0x34 ,0x9b ,0x5f ,0x80 ,0x00 ,0x00 ,0x80 ,0x00 ,0x10 ,0x00 ,0x02 ,0x00 ,0xfe ,0x00 ,0x00)
The definition of the services and characteristics are made in gattdb.h, as explained in Creating GATT database. For more details
on how to structure the database, see Application Structure.
The service is initialized and changed by the application through a service configuration structure. It usually contains the service
handle, initialization values for the service (for example, the initial temperature for the Temperature Service) and in some cases
user-specific structures that can store saved measurements (for example, the Blood Pressure Service). Below is an example for
the custom Temperature Service:
The initialization of the service is made by calling the start procedure. The function requires as input a pointer to the service
configuration structure. This function is usually called when the application is initialized. It resets the static device identification for
the subscribed client and initializes both dynamic and static characteristic values. An example for the Temperature Service (TMS)
is shown below:
Bluetooth® Low Energy Application Developer’s Guide, Rev. 14, Nov 2020
User's Guide 74 / 138
NXP Semiconductors
Creating a Custom Profile
The service subscription is triggered when a device connects to the server. It requires the peer device identification as an input
parameter to update the local variable. On disconnect, the unsubscribe function is called to reset the device identification. For the
Temperature Service:
Depending on the complexity of the service, the API implements additional functions. For the Temperature Service, there is only
a temperature characteristic that is notifiable by the server. The API implements the record measurement function which saves
the new measured value in the GATT database and send the notification to the client device if possible. The function needs the
service handle and the new temperature value as input parameters:
if (result != gBleSuccess_c)
return result;
if (result != gBleSuccess_c)
return result;
Hts_SendTemperatureMeasurementNotification(handle);
return gBleSuccess_c;
}
To accommodate some use cases where the service is reset, the stop function is called. The reset also implies a service
unsubscribe. Below is an example for the Temperature Service:
Bluetooth® Low Energy Application Developer’s Guide, Rev. 14, Nov 2020
User's Guide 75 / 138
NXP Semiconductors
Creating a Custom Profile
the handles of all the characteristic values and descriptors discovered. Additionally it can contain values that the client can use
to interact with the server. For the Temperature Service client, the structure is as follows:
Bluetooth® Low Energy Application Developer’s Guide, Rev. 14, Nov 2020
User's Guide 76 / 138
NXP Semiconductors
Chapter 9
Application Structure
This chapter describes the organization of the Bluetooth Low Energy demo applications that can be found in the SDK.
By familiarizing with the application structure, the user is able to quickly adapt its design to an existing demo or create a
new application.
The Temperature Sensor application is used as a reference to showcase the architecture.
The app folder follows a specific structure which is recommended for any application developed using the Bluetooth Low Energy
Host Stack:
• the common group contains the application framework shared by all profiles and demo applications:
— Application Main Framework
— Bluetooth Low Energy Connection Manager
— Bluetooth Low Energy Stack and Task Initialization and Configuration
Bluetooth® Low Energy Application Developer’s Guide, Rev. 14, Nov 2020
User's Guide 77 / 138
NXP Semiconductors
Application Structure
— GATT Database
• the source group contains code specific to the HRS application
The bluetooth folder/group contains:
• controller/interface and host/interface – public interfaces for the Controller and the Host; Functionality is included in the
libraries located in subfolders controller/lib and host/lib, not shown in the IAR project structure, but added into the toolchain
linker settings under the library category.
• profiles contains profile-specific code; it is used by each demo application of standard profiles.
The framework folder/group contains framework components used by the demo applications. For additional information, see the
Connectivity Framework Reference Manual.
The amazon-freertos folder contains sources for the supported operating system.
#ifndef gMainThreadStackSize_c
#define gMainThreadStackSize_c 1024
#endif
#ifndef gMainThreadPriority_c
#define gMainThreadPriority_c 7
#endif
Bluetooth® Low Energy Application Developer’s Guide, Rev. 14, Nov 2020
User's Guide 78 / 138
NXP Semiconductors
Application Structure
When running FreeRTOS as the operating system, the application will hook the idle task implemented in the FreeRTOS library,
by linking vApplicationIdleHook.
The application developer should use this function as container for application specific code:
#ifndef gAppIdleTaskStackSize_c
#define gAppIdleTaskStackSize_c (500)
#endif
Bluetooth® Low Energy Application Developer’s Guide, Rev. 14, Nov 2020
User's Guide 79 / 138
NXP Semiconductors
Application Structure
It is strongly recommended that the application developer use the app.c module to add custom code.
9.3.4 Privacy
To enable or disable Privacy, the following APIs may be used:
bleResult_t BleConnManager_EnablePrivacy
(
void
);
bleResult_t BleConnManager_DisablePrivacy
(
void
);
The function BleConnManager_EnablePrivacy will call BleConnManager_EnablePrivacyInternal after checking if the privacy
is enabled.
If the privacy feature is supported (gAppUsePrivacy_d = 1), the Connection Manager will activate Controller Privacy or Host
Privacy depending on the board capabilities.
The bCheckNewBond is a boolean that tells the Manager whether it should check or not if a bond between the devices
already exists.
At the application layer, for privacy usage, the user must be aware that when connecting with more than one device, the privacy
must be turned off before the second and subsequent connections are established and enabled right after the establishment. This
does not apply to the first connection.
Below is an example that enables and disables the Privacy by requests (reqOff_c == mAppPrivacyChangeReq and reqOn_c ==
mAppPrivacyChangeReq) or until the timer expires (mPrivacyDisableDurationSec_c seconds).
Bluetooth® Low Energy Application Developer’s Guide, Rev. 14, Nov 2020
User's Guide 80 / 138
NXP Semiconductors
Application Structure
TMR_StartLowPowerTimer(mPrivacyDisableTimerId, gTmrLowPowerSingleShotMillisTimer_c,
TmrSeconds(mPrivacyDisableDurationSec_c), PrivacyEnableTimerCallback, NULL);
}
mAppPrivacyChangeReq = reqDisabled_c;
}
else if( reqOn_c == mAppPrivacyChangeReq )
{
BleConnManager_EnablePrivacy();
mAppPrivacyChangeReq = reqDisabled_c;
}
NOTE
Do not modify any of the files contained in the gatt_db folder and its subfolder.
To complete the GATT Database initialization, this demo application includes the required gatt_db.h and gatt_uuid128.h files in
its specific application folder, along with other profile-specific configuration and code files.
Bluetooth® Low Energy Application Developer’s Guide, Rev. 14, Nov 2020
User's Guide 81 / 138
NXP Semiconductors
Application Structure
bleResult_t Ble_Initialize
(
gapGenericCallback_t gapGenericCallback
)
{
#if (gUseHciTransportDownward_d == 1)
#elif (gUseHciTransportUpward_d == 1)
#else
/* Bluetooth Low Energy Host Stack Init */
return Ble_HostInitialize(gapGenericCallback,
( hciHostToControllerInterface_t ) Controller_RecvPacket);
#endif
}
NOTE
This function should be used by your application because it correctly performs all the necessary Bluetooth Low
Energy initialization.
Bluetooth® Low Energy Application Developer’s Guide, Rev. 14, Nov 2020
User's Guide 82 / 138
NXP Semiconductors
Application Structure
Bluetooth® Low Energy Application Developer’s Guide, Rev. 14, Nov 2020
User's Guide 83 / 138
NXP Semiconductors
Application Structure
Bluetooth® Low Energy Application Developer’s Guide, Rev. 14, Nov 2020
User's Guide 84 / 138
NXP Semiconductors
Application Structure
The Temperature Profile implements the custom Temperature service, the Battery, and Device Information services.
/* Start services */
tmsServiceConfig. initialTemperature = 100 * BOARD_GetTemperature();
Tms_Start(&tmsServiceConfig);
#if (cPWR_UsePowerDownMode)
PWR_ChangeDeepSleepMode(3);
PWR_AllowDeviceToSleep();
Bluetooth® Low Energy Application Developer’s Guide, Rev. 14, Nov 2020
User's Guide 85 / 138
NXP Semiconductors
Application Structure
#endif
}
To start the application functionality, BleApp_Start is called. This function usually contains code to start advertising for sensor
nodes or scanning for central devices. In the example of the Temperature Sensor, the function is the following:
void BleApp_Start(void)
{
Led1On();
if (mPeerDeviceId == gInvalidDeviceId_c)
{
/* Device is not connected and not advertising*/
if (!mAdvState. advOn )
{
BleApp_Advertise();
}
}
else
{
BleApp_SendTemperature();
}
}
• app_config.c. This file contains data structures that are used to configure the stack.
This includes advertising data, scanning data, connection parameters, advertising parameters, SMP keys, security requirements,
and so on.
• app_preinclude.h.
This header file contains macros to override the default configuration of any module in the application. It is added as a preinclude
file in the preprocessor command line in IAR:
Bluetooth® Low Energy Application Developer’s Guide, Rev. 14, Nov 2020
User's Guide 86 / 138
NXP Semiconductors
Application Structure
• gatt_db.h and gatt_uuid128.h. The two header files contain the definition of the GATT database and the custom UUIDs
used by the application. See Creating GATT database for more information.
Bluetooth® Low Energy Application Developer’s Guide, Rev. 14, Nov 2020
User's Guide 87 / 138
NXP Semiconductors
Application Structure
on the chip, it may be read from a device specific register (if supported), from the global hardware parameters stored in the
flash, or generated randomly based on the processor-unique identifier. The demo applications provide a combination of the
last two options. Before calling the Controller_Init function, the global hardware parameters are read from the flash. If a useful
value is found (which has at least one byte different than 0xFF), the value is used and set in an array that is used by the
controller as an external reference outside the library code and set in the Controller_Init function. Otherwise, if all the values
found in flash hardware parameters are 0xFF, a random address is generated. The OUI is configured at the compile time through
BD_ADDR_OUI, while the random device part is generated using SHA-256 with an input from a board-unique identifier. The
result is concatenated and stored in the flash hardware parameters for a later use. At any point after the controller initialization is
complete, you may set a new BD_ADDR by calling bleResult_t Controller_SetDeviceAddress(uint8_t* bdAddr)
Bluetooth® Low Energy Application Developer’s Guide, Rev. 14, Nov 2020
User's Guide 88 / 138
NXP Semiconductors
Chapter 10
Low-Power Management
#if gFSCI_IncludeLpmCommands_c
/* Send Wake Up indication to FSCI */
FSCI_SendWakeUpIndication();
Bluetooth® Low Energy Application Developer’s Guide, Rev. 14, Nov 2020
User's Guide 89 / 138
NXP Semiconductors
Low-Power Management
#endif
• The node re-enters sleep when the idle task runs again.
Each software layer/entity running on the system can prevent it from entering low-power by calling PWR_DisallowDeviceToSleep.
The system stays awake until all software layers that called PWR_DisallowDeviceToSleep call back PWR_AllowDeviceToSleep
and the system reaches idle task. The MCU enters either sleep or deep sleep depending on the type of the timers started.
Low-power timers are the only timers that do not prevent the system from entering deep sleep. If any other timers are started, the
MCU enters sleep instead of deep sleep. The user should stop all timers other than the low-power ones. The functions that start
timers, like LED_StartFlash, prevent the system from entering deep sleep.
1 LLS3 DSM x x x
2 LLS2 IDLE x x x
3 LLS3 IDLE x x x
4 VLLS0/1* IDLE x x
5 VLLS2 IDLE x x
6 STOP IDLE/RUN x x x x x
Bluetooth® Low Energy Application Developer’s Guide, Rev. 14, Nov 2020
User's Guide 90 / 138
NXP Semiconductors
Low-Power Management
PWR_ChangeDeepSleepMode(3);
PWR_AllowDeviceToSleep();
PWR_ChangeDeepSleepMode(1);
BleApp_Advertise();
MCU enters sleep and wakes up on advertising events. The Bluetooth Low Energy enters DSM between advertising events.
PWR_ChangeDeepSleepMode(1);
App_StartScanning();
Bluetooth® Low Energy Application Developer’s Guide, Rev. 14, Nov 2020
User's Guide 91 / 138
NXP Semiconductors
Low-Power Management
When a connection is created, the application is notified in BLE_SignalFromISRCallback to deny sleep and be ready for other
procedures like service discovery.
PWR_DisallowDeviceToSleep();
These functions are called on the gConnEvtConnected_c event. It needs to allow the system to sleep on account of the callback
executed previously that denied device to sleep.
casegConnEvtConnected_c:
{
PWR_ChangeDeepSleepMode(1);
PWR_AllowDeviceToSleep();
}
Bluetooth® Low Energy Application Developer’s Guide, Rev. 14, Nov 2020
User's Guide 92 / 138
NXP Semiconductors
Chapter 11
Over the Air Programming (OTAP)
This chapter contains a detailed description of the Over The Air Programming capabilities of the Bluetooth Low Energy Host Stack
enabled by dedicated GATT Service/Profile, the support modules needed for OTA programming and the Bootloader application
which performs the actual image upgrade on a device.
The image transfer is done using a dedicated protocol which is designed to run on both the Bluetooth Low Energy transport and
serial transport.
The container for the upgrade image is an image file which has a predefined format which is described in detail. The image file
format is independent of the protocol but must contain information specific to the image upgrade infrastructure on an OTAP Client
device. Detailed information on how to build an image file starting from a generic format executable generated by an embedded
cross-compiling toolchain is shown.
The demo applications implement a typical scenario where a new image is sent from a PC via serial interface to a Bluetooth Low
Energy OTAP Server and then over the air to an OTAP Client which is the target of the upgrade image. There are 3 applications
involved in the OTAP demo: 1 PC application which builds the image file and serves it to the embedded OTAP Server and 2
embedded applications (OTAP Server and OTAP Client). This chapter contains enough information for building Bluetooth Low
Energy OTAP applications which implement different image upgrade scenarios specific to other use cases.
Bluetooth® Low Energy Application Developer’s Guide, Rev. 14, Nov 2020
User's Guide 93 / 138
NXP Semiconductors
Over the Air Programming (OTAP)
Figure 16. Typical Bluetooth Low Energy OTAP Image Upgrade Scenario
Bluetooth® Low Energy Application Developer’s Guide, Rev. 14, Nov 2020
User's Guide 94 / 138
NXP Semiconductors
Over the Air Programming (OTAP)
The OTAP Service custom 128-bit UUID is built using the base UUID by replacing the most significant 4 bytes which are 0 with
a value specific to the OTAP Service which is 01FF5550 in hexadecimal format.
The Bluetooth Low Energy OTAP Service Characteristics UUIDs are built the same as the Bluetooth Low Energy OTAP Service
UUID starting from the base 128-bit UUID but using other values for the most significant 4 bytes.
UUID128(uuid_service_otap, 0xE0, 0x1C, 0x4B, 0x5E, 0x1E, 0xEB, 0xA1, 0x5C, 0xEE, 0xF4, 0x5E, 0xBA,
0x50, 0x55, 0xFF, 0x01)
UUID128(uuid_char_otap_control_point, 0xE0, 0x1C, 0x4B, 0x5E, 0x1E, 0xEB, 0xA1, 0x5C, 0xEE, 0xF4,
0x5E, 0xBA, 0x51, 0x55, 0xFF, 0x01)
UUID128(uuid_char_otap_data, 0xE0, 0x1C, 0x4B, 0x5E, 0x1E, 0xEB, 0xA1, 0x5C, 0xEE, 0xF4, 0x5E, 0xBA,
0x52, 0x55, 0xFF, 0x01)
The service is included into the GATT database of the device. It is declared in the gatt_db.h file as shown below.
PRIMARY_SERVICE_UUID128(service_otap, uuid_service_otap)
CHARACTERISTIC_UUID128(char_otap_control_point, uuid_char_otap_control_point, (gGattCharPropWrite_c |
gGattCharPropIndicate_c))
VALUE_UUID128_VARLEN(value_otap_control_point, uuid_char_otap_control_point,
(gPermissionFlagWritable_c), 16, 16, 0x00)
CCCD(cccd_otap_control_point)
CHARACTERISTIC_UUID128(char_otap_data, uuid_char_otap_data, (gGattCharPropWriteWithoutRsp_c))
VALUE_UUID128_VARLEN(value_otap_data, uuid_char_otap_data, (gPermissionFlagWritable_c), gAttMaxMtu_c
- 3, gAttMaxMtu_c - 3, 0x00)
The Bluetooth Low Energy OTAP Control Point characteristic should be large enough for the longest command which can be
exchanged between the OTAP Server and The OTAP Client.
The Bluetooth Low Energy OTAP Data characteristic should be large enough for the longest data chunk command the OTAP
Client expects from the OTAP Server to be sent via ATT. The maximum length of the OTAP Data Characteristic value is
ATT_MTU- 3. 1 byte is used for the ATT OpCode and 2 bytes are used for the Attribute Handle when performing a Write Without
Response, the only operation permitted for this characteristic value.
Bluetooth® Low Energy Application Developer’s Guide, Rev. 14, Nov 2020
User's Guide 95 / 138
NXP Semiconductors
Over the Air Programming (OTAP)
Bluetooth® Low Energy Application Developer’s Guide, Rev. 14, Nov 2020
User's Guide 96 / 138
NXP Semiconductors
Over the Air Programming (OTAP)
Commands are sent over the transport medium starting with the Command ID and continuing with the Command Payload.
All multibyte command parameters in the Command Payload are sent in a least significant octet first order (little endian).
A summary of the commands supported by the Bluetooth Low Energy OTAP Protocol is shown in the table below. Each of the
commands is then detailed in its own section.
Bluetooth® Low Energy Application Developer’s Guide, Rev. 14, Nov 2020
User's Guide 97 / 138
NXP Semiconductors
Over the Air Programming (OTAP)
Contains
sufficient
information to
identify the
target
hardware, stack
version and
build version.
The ImageId parameter should not be 0x0000 which is the reserved value for the current running image or 0xFFFF which is the
reserved value for “no image available”.
The CurrImageId parameter should be set to 0x0000 to signify the current running image.
The CurrImageVer parameter should contain sufficient information about the target device for the OTAP Server to determine if it
has an upgrade image available for the requesting OTAP Client.
A value of all zeroes for the CurrImageVer means that an OTAP Client is requesting information about all available images on an
OTAP Server and the OTAP Server should send a New Image Info Response for each image.
Bluetooth® Low Energy Application Developer’s Guide, Rev. 14, Nov 2020
User's Guide 98 / 138
NXP Semiconductors
Over the Air Programming (OTAP)
The ImageId parameter with a value of 0xFFFF is reserved for the situation where no upgrade image is available for the
requesting device.
ChunkSize 2 Should be
optimized to the
TransferChanne
l type. The
maximum
number of
chunks per
block is 256.
Value is in
bytes.
Bluetooth® Low Energy Application Developer’s Guide, Rev. 14, Nov 2020
User's Guide 99 / 138
NXP Semiconductors
Over the Air Programming (OTAP)
Bluetooth® Low Energy Application Developer’s Guide, Rev. 14, Nov 2020
User's Guide 100 / 138
NXP Semiconductors
Over the Air Programming (OTAP)
The SeqNumber parameter is the chunk sequence number and it has incremental values from 0 to 255 (0x00 to 0x FF) for a
maximum of 256 chunks per block.
The Data parameter is an array containing the actual image part being transferred starting from the BlockStartPosition +
SeqNumber * ChunkSize position in the image file and containing ChunkSize or less bytes depending on the position in the block.
Only the last chunk in a block can have less than ChunkSize bytes in the Image Chunk Command data payload.
The ImageId parameter contains the ID of the image file that was transferred.
The Status parameter is 0x00 (Success) if image integrity and possibly other checks have been successfully made after the image
is transferred and another value if integrity or other kind of errors have occurred.
If the status is 0x00 the OTAP Client can trigger the Bootloader to start flashing the new image. The image flashing should take
about 15 seconds for a 160 KB flash memory.
Bluetooth® Low Energy Application Developer’s Guide, Rev. 14, Nov 2020
User's Guide 101 / 138
NXP Semiconductors
Over the Air Programming (OTAP)
The CmdId parameter contains the ID of the command which caused the error (if applicable).
The ErrorStatus parameter contains the source of the error. All error statuses are defined in the otapStatus_t enumerated type in
the otap_interface.h file.
Bluetooth® Low Energy Application Developer’s Guide, Rev. 14, Nov 2020
User's Guide 102 / 138
NXP Semiconductors
Over the Air Programming (OTAP)
or more Image Chunk Commands via the requested transfer method or with an Error Notification if there are improper parameters
in the Image Block Request. The OTAP Clients makes as many Image Block Requests as it is necessary to transfer the entire
image file.
The OTAP Client decides how often Image Block Request Commands are sent and can even stop a block transfer which is in
progress via the Stop Image Transfer Command. The OTAP Client is in complete control of the image download process and can
stop it and restart it at any time based on its resources and application requirements.
A typical Bluetooth Low Energy OTAP Image Transfer scenario is shown in the message sequence chart below.
Figure 17. Typical Bluetooth Low Energy OTAP Image Transfer Scenario Message Sequence Chart
Table 19. Bluetooth Low Energy OTAP Image File General Format
Bluetooth® Low Energy Application Developer’s Guide, Rev. 14, Nov 2020
User's Guide 103 / 138
NXP Semiconductors
Over the Air Programming (OTAP)
Table 19. Bluetooth Low Energy OTAP Image File General Format (continued)
Image File CRC Sub-element 2 This is a 16 bit CCITT type CRC which
is calculated over all elements of the
image file with the exception of the
Image File CRC sub-element itself. This
must be the last sub-element in an
image file.
Each sub-element in a Bluetooth Low Energy OTAP Image File has a Type-Length-Value (TLV) format. The type identifier
provides forward and backward compatibility as new sub-elements are introduced. Existing devices that do not understand newer
sub-elements may ignore the data.
The following table shows the general format of a Bluetooth Low Energy Image File sub-element.
Table 20. Bluetooth Low Energy OTAP Image File Sub-element Format
Some sub-element type identifiers are reserved while others are left for manufacturer-specific use. The table below shows the
reserved type identifiers and the manufacturer-specific ranges.
Bluetooth® Low Energy Application Developer’s Guide, Rev. 14, Nov 2020
User's Guide 104 / 138
NXP Semiconductors
Over the Air Programming (OTAP)
The OTAP Demo applications use two of the manufacturer-specific sub-element type identifiers while the rest remain free to use.
The two are shown in the table below along with a short description.
Table 22. Manufacturer-Specific Sub-element Type Identifiers Used by OTAP Demo Applications
0xf100 Image File CRC 16 bit CRC which is computed over the
image file with the exception of the CRC
sub-element itself.
(including header)
The fields are shown in the order they are placed in memory from the first location to the last.
The total size of the header without the optional fields (if defined by the Header Field Control) is 58 bytes.
All the fields in the header have a little endian format with the exception of the Header String field which is an ASCII
character string.
A packed structure type definition for the contents of the Bluetooth Low Energy OTAP Header can be found in the
otap_interface.h file.
Bluetooth® Low Energy Application Developer’s Guide, Rev. 14, Nov 2020
User's Guide 105 / 138
NXP Semiconductors
Over the Air Programming (OTAP)
11.4.1.6 Image ID
This is a unique short identifier for the image file. It is used to request parts of an image file. This number should be unique for all
images available on a Bluetooth Low Energy OTAP Server.
The value 0x0000 is reserved for the current running image.
The value 0xFFFF is reserved as a “no image available” code for New Image Info Response commands.
This field value must be used in the ImageID field in the New Image Notification and New Image Info Response commands.
Bluetooth® Low Energy Application Developer’s Guide, Rev. 14, Nov 2020
User's Guide 106 / 138
NXP Semiconductors
Over the Air Programming (OTAP)
This field value must be used in the ImageVersion field in the New Image Notification and New Image Info Response commands.
11.5 Building Bluetooth Low Energy OTAP image file from SREC file
A SREC (Motorola S-record) file is an ASCII format file which contains binary information. Common extensions
are: .srec, .s19, .s28, .s37 and others. Most modern compiler toolchains can output a SREC format executable.
To enable the creation of a SREC file for your embedded application in IAR Embedded Workbench®, open the target properties
and go to the Output Converter tab. Activate the “Generate additional output” checkbox and choose the Motorola option from the
“Output format” drop down menu. From the same pane you can also override the name of the output file. A screenshot of the
described configuration is shown below.
Bluetooth® Low Energy Application Developer’s Guide, Rev. 14, Nov 2020
User's Guide 107 / 138
NXP Semiconductors
Over the Air Programming (OTAP)
To enable the creation of a .srec file in MCUXpresso IDE go to the Project properties -> Settings -> Build steps window and
press the "Edit" button for the Post-build steps. A Post-build steps window will show up in which the following command must
be added or uncommented (by removing the '#' character at the beginning) if it is already there: arm-none-eabi-objcopy -v
-O srec "${BuildArtifactFileName}" "${BuildArtifactFileBaseName}.s19". A screenshot of this window is shown in the
figure below."
Bluetooth® Low Energy Application Developer’s Guide, Rev. 14, Nov 2020
User's Guide 108 / 138
NXP Semiconductors
Over the Air Programming (OTAP)
Bluetooth® Low Energy Application Developer’s Guide, Rev. 14, Nov 2020
User's Guide 109 / 138
NXP Semiconductors
Over the Air Programming (OTAP)
The format of the SREC file is very simple. It contains lines of text called records which have a specific format. An example of the
contents of a SREC file is shown below.
S02000006F7461705F636C69656E745F6174745F4672656552544F532E73726563A1
S1130000F83F0020EB0500007506000075060000AF
S113001075060000750600007506000075060000F0
S113002075060000750600007506000075060000E0
S113003075060000750600007506000075060000D0
S113004000000000000000000000000000000000AC
S1130050000000000000000000000000000000009C
.............
S2140117900121380004F05FF8002866D12A003100E4
S2140117A06846008804F022F8A689002E16D0002884
S2140117B014D12569278801A868A11022F7F782FCB1
S2140117C06B4601AA0121380004F045F800284CD1E7
S2140117D02A0031006846008804F008F8A68A002E20
All records start with the ASCII letter ‘S’ followed by an ASCII digit from ‘0’ to ‘9’. These two characters from the record type which
identifies the format of the data field of the record.
The next 2 ASCII characters are 2 hex digits which indicate the number of bytes (hex digit pairs) which follow the rest of the record
(address, data and checksum).
The address follows next which can have 4, 6 or 8 ASCII hex digits depending on the record type.
The data field is placed after the address and it contains 2 * n ASCII hex digits for n bytes of actual data.
The last element of the S record is the checksum which comprises of 2 ASCII hex digits. The checksum is computed by adding all
the bytes of the byte count, address and data fields then computing the ones complement of the least significant octet of the sum.
More details about the SREC file format can be found at this location: en.wikipedia.org/wiki/SREC_(file_format)
We are only interested in records which contain actual data. These are S1, S2 and S3 records. The other types of records can
be ignored.
The S1, S2 and S3 records are used to build the Upgrade Image Sub-element of the image file simply by placing the record data
at the location specified by the record address in the Value field of the Sub-element. It is recommended to fill all gaps in S record
addresses with 0xFF.
To build an OTAP Image File from a SREC file follow the procedure:
• Generate the SREC file by correctly configuring your toolchain to do so
• Create the image file header
— Set the Image ID field of the header to be unique on the OTAP Server.
— Leave the Total Image File Size Field blank for the moment.
• Create the Upgrade Image Sub-element
— Read the S1, S2 and S3 records from the SREC file and place the binary record data to the record addresses in the
Value filed of the sub-element. Fill all address gaps in the S records with 0xFF.
Bluetooth® Low Energy Application Developer’s Guide, Rev. 14, Nov 2020
User's Guide 110 / 138
NXP Semiconductors
Over the Air Programming (OTAP)
— Fill in the Length field of the sub-element with the length of the written Value filed.
• Create the Sector Bitmap Sub-element
— A default working setting would be all byes 0xFF for the Value field of this sub-element
• Create the Image File CRC Sub-element
— Compute the total image file size as the length of the header + the length of all 3 sub-elements and fill in the
appropriate filed in the header with this value
— Compute and write the Value field of this sub-element using the header and all sub-elements except this one
— The OTA_CrcCompute() function in the OtaSupport.c file can be used to incrementally compute the CRC
If the Image ID is not available when the image file is created then the CRC cannot be computed. It can be computed later after
the Image ID is established and written in the appropriate field in the header.
11.6 Building Bluetooth Low Energy OTAP image file from BIN file
A BIN file is an binary file which contains an executable image. The most common extension for this type of file is .bin. Most modern
compiler toolchains can output a BIN format executable.
To enable the creation of a BIN file for your embedded application in IAR Embedded Workbench open the target properties and
go to the Output Converter tab. Activate the “Generate additional output” checkbox and choose the binary option from the “Output
format” drop down menu. From the same pane you can also override the name of the output file. A screenshot of the described
configuration is shown below.
Bluetooth® Low Energy Application Developer’s Guide, Rev. 14, Nov 2020
User's Guide 111 / 138
NXP Semiconductors
Over the Air Programming (OTAP)
To enable the creation of a .bin file in MCUXpresso IDE go to the Project properties -> Settings -> Build steps window and
press the Edit button for the Post-build steps. A Post-build steps window will show up in which the following command must be
added or uncommented (by removing the '#' character at the beginning) if it is already there: arm-none-eabi-objcopy -v -O
binary "${BuildArtifactFileName}" "${BuildArtifactFileBaseName}.bin". A screenshot of this window is shown in the
figure below.
Bluetooth® Low Energy Application Developer’s Guide, Rev. 14, Nov 2020
User's Guide 112 / 138
NXP Semiconductors
Over the Air Programming (OTAP)
The format of the BIN file is very simple. It contains the executable image in binary format as is, starting from address 0 and up
to the highest address. This type of file does not have any explicit address information.
Bluetooth® Low Energy Application Developer’s Guide, Rev. 14, Nov 2020
User's Guide 113 / 138
NXP Semiconductors
Over the Air Programming (OTAP)
To build an OTAP Image File from a BIN file follow the procedure:
• Generate the BIN file by correctly configuring your toolchain to do so
• Create the image file header
— Set the Image ID field of the header to be unique on the OTAP Server.
— Leave the Total Image File Size Field blank for the moment.
• Create the Upgrade Image Sub-element
— Compy the entire contents of the BIN file as is into the Value filed of the sub-element.
— Fill in the Length field of the sub-element with the length of the written Value filed.
• Create the Sector Bitmap Sub-element
— A default working setting would be all byes 0xFF for the Value field of this sub-element
• Create the Image File CRC Sub-element
— Compute the total image file size as the length of the header + the length of all 3 sub-elements and fill in the
appropriate filed in the header with this value
— Compute and write the Value field of this sub-element using the header and all sub-elements except this one
— The OTA_CrcCompute() function in the OtaSupport.c file can be used to incrementally compute the CRC
If the Image ID is not available when the image file is created then the CRC cannot be computed. It can be computed later after
the Image ID is established and written in the appropriate field in the header.
Bluetooth® Low Energy Application Developer’s Guide, Rev. 14, Nov 2020
User's Guide 114 / 138
NXP Semiconductors
Over the Air Programming (OTAP)
The OTAP Server waits in an idle state until a valid Image Block Request command is received and then moves to a pseudo-state
and starts sending the requested block. The transfer can be interrupted by some commands (Error Notification, Stop Image
Transfer, and so on) or other events (disconnection, user interruption, and so on).
The otap_interface.h file contains infrastructure for sending and receiving OTAP Commands and parsing OTAP image files.
Packed structure types are defined for all OTAP commands and type enumerations are defined for command parameter values
and some configuration values like the data payloads for the different transfer methods.
To receive ATT Indications and ATT Write Confirmations from the OTAP Client the OTAP Server application registers a set of
callbacks in the stack. This is done in the BleApp_Config() function.
App_RegisterGattClientProcedureCallback (BleApp_GattClientCallback);
App_RegisterGattClientIndicationCallback (BleApp_GattIndicationCallback);
This BleApp_GattIndicationCallback() function is called when any attribute is indicated so the handle of the indicated attribute must
be checked against a list of expected handles. In our case we are looking for the OTAP Control Point handle which was obtained
during the discovery procedure.
The BleApp_GattIndicationCallback() function from the demo calls an application-specific function called
BleApp_AttributeIndicated() in which the OTAP Commands are handled.
App_HandleOtapCmd (pOtaCmd->cmdId,
(uint8_t*)(&(pOtaCmd->cmd)),
length);
Bluetooth® Low Energy Application Developer’s Guide, Rev. 14, Nov 2020
User's Guide 115 / 138
NXP Semiconductors
Over the Air Programming (OTAP)
}
elseif (handle == otherHandle)
{
/* Handle other attribute indications here */
/* ... Missing code here ... */
}
else
{
/*! A GATT Client is trying to GATT Indicate an unknown attribute value.
* This should not happen. Disconnect the link. */
Gap_Disconnect (deviceId);
}
}
The App_HandleOtapCmd() function is the one which deals with the received command, sending responses if necessary or
starting an image block transfer.
To send OTAP Commands to the OTAP Client the application running the OTAP Server calls the
OtapServer_SendCommandToOtapClient() function which performs an ATT Write operation on the OTAP Control Point attribute.
/* Only the value handle element of this structure is relevant for this operation. */
otapCtrlPointChar.value.handle =
mPeerInformation.customInfo.otapServerConfig.hControlPoint;
if (gBleSuccess_c == bleResult)
{
otapServerData.lastCmdSentToOtapClient =
(otapCmdIdt_t)(((otapCommand_t*)pCommand)->cmdId);
}
else
{
/*! A Bluetooth Low Energy error has occurred - Disconnect */
Gap_Disconnect (otapClientDevId);
}
}
The ATT Confirmation for the ATT Write is received in the BleApp_GattClientCallback() set up earlier which receives a GATT
procedure success message for a gGattProcWriteCharacteristicValue_c procedure type.
Bluetooth® Low Energy Application Developer’s Guide, Rev. 14, Nov 2020
User's Guide 116 / 138
NXP Semiconductors
Over the Air Programming (OTAP)
BleApp_StateMachineHandler(serverDeviceId, mAppEvt_GattProcError_c);
}
case gGattProcWriteCharacteristicValue_c:
BleApp_HandleValueWriteConfirmations (serverDeviceId);
break;
default:
break;
}
BleApp_StateMachineHandler(serverDeviceId, mAppEvt_GattProcComplete_c);
}
}
The BleApp_HandleValueWriteConfirmations() function deals with ATT Write Confirmations based on the requirements of
the application.
There are 2 possible transfer methods for Image Chunks, the ATT transfer method and the L2CAP transfer method. The OTAP
server is prepared to handle both, as requested by the OTAP Client.
To be able to use the L2CAP transfer method the OTAP Server application must register a L2CAP LE PSM and 2 callbacks: a
data callback and a control callback. This is done in the BleApp_Config() function.
Bluetooth® Low Energy Application Developer’s Guide, Rev. 14, Nov 2020
User's Guide 117 / 138
NXP Semiconductors
Over the Air Programming (OTAP)
if (pConnComplete->result == gSuccessful_c)
{
/* Set the application L2CAP PSM Connection flag to TRUE because there is no
gL2ca_LePsmConnectionComplete_c
* event on the responder of the PSM connection. */
otapServerData. l2capPsmConnected = TRUE;
otapServerData. l2capPsmChannelId = pConnComplete->cId;
}
break;
}
case gL2ca_LePsmDisconnectNotification_c:
{
l2caLeCbDisconnection_t *pCbDisconnect = ( l2caLeCbDisconnection_t *)pMessage;
break;
}
default:
break;
}
}
The ATT transfer method is supported by default but the L2CAP transfer method only works if the OTAP Client opens an L2CAP
PSM credit oriented channel.
To send data chunks to the OTAP Client the OTAP Server application calls the OtapServer_SendCImgChunkToOtapClient()
function which delivers the chunk via the selected transfer method. For the ATT transfer method the chunk is sent via
Bluetooth® Low Energy Application Developer’s Guide, Rev. 14, Nov 2020
User's Guide 118 / 138
NXP Semiconductors
Over the Air Programming (OTAP)
the GattClient_CharacteristicWriteWithoutResponse() function and for the L2CAP transfer method the chunk is sent via the
L2ca_SendLeCbData() function.
if (otapServerData.transferMethod == gOtapTransferMethodAtt_c)
{
/* GATT Characteristic to be written without response - OTAP Client Data */
gattCharacteristic_t otapDataChar;
/* Only the value handle element of this structure is relevant for this operation. */
otapDataChar.value.handle = mPeerInformation.customInfo.otapServerConfig.hData;
bleResult = GattClient_CharacteristicWriteWithoutResponse
(mPeerInformation.deviceId,
&otapDataChar,
chunkCmdLength,
pChunk);
}
else if (otapServerData.transferMethod == gOtapTransferMethodL2capCoC_c)
{
bleResult = L2ca_SendLeCbData (mPeerInformation.deviceId,
otapServerData.l2capPsmChannelId,
pChunk,
chunkCmdLength);
}
if (gBleSuccess_c != bleResult)
{
/*! A Bluetooth Low Energy error has occurred - Disconnect */
Gap_Disconnect (otapClientDevId);
}
}
The OTAP Server demo application relays all commands received from the OTAP Client to a PC through the FSCI type protocol
running over a serial interface. It also directly relays all responses from the PC back to the OTAP Client.
Other implementations can bring the image to an external memory through other means of communication and directly respond
to the OTAP Client requests.
Bluetooth® Low Energy Application Developer’s Guide, Rev. 14, Nov 2020
User's Guide 119 / 138
NXP Semiconductors
Over the Air Programming (OTAP)
The upgrade image storage capabilities in the demo OTAP Client applications are handled by the OtaSupport module from the
Framework which contains support modules and drivers. The OtaSupport module has support for both internal storage (a part of
the internal flash memory is reserved for storing the upgrade image) and external storage (a SPI flash memory chip).
The demo applications use external storage by default. The internal storage is viable only if there is enough space in the internal
flash for the upgrade image – the flash in this case should be at least twice the size of the largest application. The OtaSupport
module also needs the Eeprom module from the Framework to work correctly.
The OtaSupport module also contains the placement of the bootloader flags in a dedicated linker section (BOOT_FLAGS). These
flags must be present in any image to correctly interact with the bootloader.
A bootloader is also provided as a separate application which is available in both source code and executable form.
The OTAP Bootloader executable resides in the \tools\wireless\binaries folder for each board, and has the following
format: bootloader_otap_<BOARD>.bin.
To use the OtaSupport module and the OTAP Bootloader several configuration options must be set up in both the source files and
the linker options of the toolchain.
First, the OTASupport and Eeprom module files must be included in the project. To configure the type of storage used the
gEepromType_d preprocessor definition must be given a value.
To use external storage set the gEepromType_d value to the appropriate type of EEPROM present on the board. The correct value
for demo boards is gEepromDevice_AT45DB021E_c and the correct value for demo boards is gEepromDevice_AT45DB041E_c.
The valid gEepromType_d options can be found in the Eeprom.h file:
/* List of the EEPROM devices used on each of the FSL development boards */
#define gEepromDevice_None_c 0
#define gEepromDevice_InternalFlash_c 1
#define gEepromDevice_AT45DB161E_c 2 /* TWR-KW2x */
#define gEepromDevice_AT26DF081A_c 3 /* TWR-MEM */
#define gEepromDevice_AT45DB021E_c 4 /* FRDM-KW40 */
#define gEepromDevice_AT45DB041E_c 5 /* FRDM-KW41, FRDM-KW36 */
#define gEepromDevice_MX25R2035F_c 6 /* QN908x-DK1.2 */
#define gEepromDevice_MX25R2035F_c 7 /* QN908x-DK1.2 */
The setting of the EEPROM type is done in the app_preinclude.h file for the demo applications:
To use internal storage set up the gUseInternalStorageLink_d=1 symbol in the linker configuration window (Linker->Config tab in
the IAR project properties) and set the gEepromType_d value to gEepromDevice_InternalFlash_c in the app_preinclude.h file:
The OTAP demo applications for the IAR EW IDE have some settings in the Linker options tab which must be configured to use
OtaSupport and the OTAP Bootloader.
In the Project Target Options->Linker->Config tab, 3 symbols must be correctly defined. To use NVM storage the gUseNVMLink_d
symbol must be set to 1. The gUseInternalStorageLink_d symbol must be set to 0 when OTAP external storage is used and to
1 when internal storage is used. To enable the OTAP Bootloader linking the gUseBootloaderLink_d symbol must be set to 1 to
offset the application.
An example linker configuration window for IAR is shown below.
Bluetooth® Low Energy Application Developer’s Guide, Rev. 14, Nov 2020
User's Guide 120 / 138
NXP Semiconductors
Over the Air Programming (OTAP)
Figure 23. Linker Config IAR EW IDE - OTAP Client External Storage and Bootloader Configuration
The same linker settings for OTAP applications can be configured for Keil MDK in the Options for Target->Linker->Misc controls
text box. Edit the text box to add more linker symbols as shown in the figure.
Bluetooth® Low Energy Application Developer’s Guide, Rev. 14, Nov 2020
User's Guide 121 / 138
NXP Semiconductors
Over the Air Programming (OTAP)
Once the application starts and bidirectional OTAP communication is established via the OTAP Service then the OTAP Client
must determine if the connected OTAP Server has a newer image than the one currently present on the device. This can be done
in two ways. Either the OTAP Server knows by some application-specific means that it has a newer image and sends a New
Image Notification to the OTAP Client or the OTAP Client sends a New Image Info Request to the OTAP Server and waits for a
response. The example application uses the second method. The New Image Info Request contains enough information about
the currently running image to allow the OTAP Server to determine if it has a newer image for the requesting device. The New
Image Info Response contains enough information for the OTAP Client to determine that de “advertised” image is newer and it
wants to download it. The best method is entirely dependent on application requirements.
An example function which checks if an ImageVerison field from a New Image Notification or a New Image Info Response
corresponds to a newer image (based on the suggested format of this field) is provided in the OTAP Client demo applications. The
function is called OtapClient_IsRemoteImageNewer().
The OTAP Client application is a little more complicated than the OTAP Server application because more state information
needs to be handled (current image position, current chunk sequence number, image file parsing information, and so on). An
example state diagram for the OTAP Client is shown below. Note that some of the states may not be explicitly present in the demo
applications, this diagram is meant to emphasize the steps of the image download process.
Bluetooth® Low Energy Application Developer’s Guide, Rev. 14, Nov 2020
User's Guide 122 / 138
NXP Semiconductors
Over the Air Programming (OTAP)
After the OTAP Client determines that the peer OTAP Server has a suitable upgrade image available it can start the download
process. This is done by sending multiple Image Block Request messages and waiting for the Image Chunks via the selected
transfer method.
While receiving the image file blocks the OTAP Client application parses the image file and if any parameter of an image file
sub-element is invalid or the image file format is invalid it sends an Error Notification to the OTAP Server and tries to restart the
download process from the beginning or a known good position.
When an Image Chunk is received its sequence number is checked and its content is parsed in the context of the image file
format. If the sequence number is not as expected then the block transfer is restarted from the last known good position. When
all chunks of an Image Block are received the next block is requested if there are more blocks to download. When the last Image
Block in an Image File is received then the image integrity is checked (the received CRC from the Image File CRC sub-element
is compared to the computed CRC). The computed image integrity initialization and intermediary value must be reset to 0 before
starting the download of an image and when restarting the download of an image. If the image integrity check fails then the image
download process is restarted from the beginning. If the image integrity check is successful then the Bootloader is triggered, an
Image Download Complete message is sent to the OTAP Server and the MCU is restarted. After the restart the bootloader kicks
in and writes the new image to the flash memory and gives CPU control to the newly installed application.
Bluetooth® Low Energy Application Developer’s Guide, Rev. 14, Nov 2020
User's Guide 123 / 138
NXP Semiconductors
Over the Air Programming (OTAP)
If at any time during the download process a Link Layer disconnection occurs then the image download process is restarted from
the last known good position when the link is reestablished.
As noted earlier the OTAP Client application needs to handle a lot of state information. In the demo application all this information is
held in the otapClientData structure of the otapClientAppData_t type. The type is defined and the structure is initialized in the app.c
file of the application. This structure is defined and initialized differently for the OTAP Client ATT and L2CAP example applications.
Mainly the transferMethod member of the structure is constant and has different values for the two example applications and the
L2CAP application structure has an extra member.
To receive write notifications when the OTAP Server writes the OTAP Control Point attribute and ATT Confirmations when it
indicates the OTAP Control Point attribute, the OTAP Client application must register a GATT Server callback and enable write
notifications for the OTAP Control Point attribute. This is done in the BleApp_Config() function in the app.c file.
otapWriteNotifHandles);
..
}
The BleApp_GattServerCallback() function handles all incoming communication from the OTAP Server.
case gEvtAttributeWritten_c:
BleApp_AttributeWritten (...);
break;
case gEvtAttributeWrittenWithoutResponse_c:
BleApp_AttributeWrittenWithoutResponse (...);
break;
case gEvtHandleValueConfirmation_c:
BleApp_HandleValueConfirmation (...);
break;
default:
break;
}
}
When the OTAP Server Writes a CCCD the BleApp_GattServerCallback() function calls the BleApp_CccdWritten() function which
sends a New Image Info Request when the OTAP Control Point CCCD is written it – this is the starting point of OTAP transactions
in the demo applications.
Bluetooth® Low Energy Application Developer’s Guide, Rev. 14, Nov 2020
User's Guide 124 / 138
NXP Semiconductors
Over the Air Programming (OTAP)
When an ATT Write Request is made by the OTAP Server the the BleApp_GattServerCallback() function calls the
BleApp_AttributeWritten() function which handles the data as an OTAP command. Only writes to the OTAP Control Point
are handled as OTAP commands. For each command received from the OTAP Server there is a separate handler function which
performs required OTAP operations. These are:
• OtapClient_HandleNewImageNotification()
• OtapClient_HandleNewImageInfoResponse()
• OtapClient_HandleErrorNotification()
When an ATT Write Command (GATT Write Without Response) is sent by the OTAP Server the BleApp_GattServerCallback()
function calls the BleApp_AttributeWrittenWithoutResponse() function which handles Data Chunks if the selected
transfer method is ATT and returns an error if any problems are encountered. Data chunks are handled by the
OtapClient_HandleDataChunk() function.
Finally, when an ATT Confirmation is received for a previously sent ATT Indication the BleApp_GattServerCallback() function
calls the BleApp_ HandleValueConfirmation() function which based on the last sent command to the OTAP Server performs the
necessary OTAP operations. This is done using separate confirmation handling functions for each command that is sent to the
OTAP Server. These functions are:
• OtapClient_HandleNewImageInfoRequestConfirmation()
• OtapClient_HandleImageBlockRequestConfirmation()
• OtapClient_HandleImageTransferCompleteConfirmation()
• OtapClient_HandleErrorNotificationConfirmation()
• OtapClient_HandleStopImageTransferConfirmation()
Outgoing communication from the OTAP Client to the OTAP Server are done using the OtapCS_SendCommandToOtapServer()
function. This function writes the value to be indicated to the OTAP Control Point attribute in the GATT database and then calls
the OtapCS_SendControlPointIndication() which checks if indications are enabled for the target device and sends the actual ATT
Indication. Both functions are implemented in the otap_service.c file.
Bluetooth® Low Energy Application Developer’s Guide, Rev. 14, Nov 2020
User's Guide 125 / 138
NXP Semiconductors
Over the Air Programming (OTAP)
uint16_t handle;
bleUuid_t* pUuid = (bleUuid_t*)&uuid_char_otap_control_point;
The otap_interface.h file contains all the necessary information for parsing and building OTAP commands (packed command
structures type definitions, command parameters enumerations, and so on).
For the two possible image transfer methods (ATT and L2CAP) there are two separate demo applications. To be able to use the
L2CAP transfer method the OATP Client application must register a L2CAP LE PSM and 2 callbacks: a data callback and a control
callback. This is done in the BleApp_Config() function.
The control callback is used to handle L2CAP LE PSM-related events: PSM disconnections, PSM Connection Complete, No peer
credits, and so on.
/* This message is unexpected on the OTAP Client, the OTAP Client sends L2CAP
* PSM connection requests and expects L2CAP PSM connection responses.
* Disconnect the peer. */
Gap_Disconnect (pConnReq->deviceId);
break;
}
Bluetooth® Low Energy Application Developer’s Guide, Rev. 14, Nov 2020
User's Guide 126 / 138
NXP Semiconductors
Over the Air Programming (OTAP)
case gL2ca_LePsmConnectionComplete_c:
{
l2caLeCbConnectionComplete_t *pConnComplete =
(l2caLeCbConnectionComplete_t *)pMessage;
break;
}
case gL2ca_LePsmDisconnectNotification_c:
{
l2caLeCbDisconnection_t *pCbDisconnect = (l2caLeCbDisconnection_t *)pMessage;
break;
}
case gL2ca_NoPeerCredits_c:
{
l2caLeCbNoPeerCredits_t *pCbNoPeerCredits =
(l2caLeCbNoPeerCredits_t *)pMessage;
L2ca_SendLeCredit (pCbNoPeerCredits->deviceId,
otapClientData.l2capPsmChannelId,
mAppLeCbInitialCredits_c);
break;
}
case gL2ca_LocalCreditsNotification_c:
{
l2caLeCbLocalCreditsNotification_t *pMsg =
(l2caLeCbLocalCreditsNotification_t *)pMessage;
break;
}
default:
break;
}
}
The OTAP Client must initiate the L2CAP PSM connection if it wants to use the L2CAP transfer method. This is done using the
L2ca_ConnectLePsm() function which is called by the OtapClient_ContinueImageDownload() if the transfer method is L2CAP and
the PSM is found to be disconnected.
/* Check if the L2CAP OTAP PSM is connected and if not try to connect and exit immediately. */
if ((otapClientData.l2capPsmConnected == FALSE) &&
(otapClientData.state != mOtapClientStateImageDownloadComplete_c))
{
L2ca_ConnectLePsm (gOtap_L2capLePsm_c,
deviceId,
mAppLeCbInitialCredits_c);
return;
}
/* ... Missing code here ... */
}
Bluetooth® Low Energy Application Developer’s Guide, Rev. 14, Nov 2020
User's Guide 127 / 138
NXP Semiconductors
Over the Air Programming (OTAP)
The PSM data callback BleApp_L2capPsmDataCallback() is used by the OTAP Client to handle incoming image file parts from
the OTAP Server.
All data chunks regardless of their source (ATT or L2CAP) are handled by the OtapClient_HandleDataChunk() function. This
function checks the validity of Image Chunk messages, parses the image file, requests the continuation or restart of the image
download and triggers the bootloader when the image download is complete.
The Image File CRC Value is computed on the fly as the image chunks are received using the OTA_CrcCompute() function from
the OtaSupport module which is called by the OtapClient_HandleDataChunk() function. The OTA_CrcCompute() function has a
parameter for the intermediary CRC value which must be initialized to 0 every time a new image download is started.
The actual write of the received image parts to the storage medium is also done in the OtapClient_HandleDataChunk() function
using the OtaSupport module. This is achieved using the following functions:
• OTA_StartImage() – called before the start of writing a new image to the storage medium.
• OTA_CancelImage() – called whenever an error occurs and the image download process needs to be stopped/restarted
from the beginning.
• OTA_PushImageChunk() – called to write a received image chunk to the storage medium. Note that only the Upgrade
Image Sub-element of the image file is actually written to the storage medium.
• OTA_CommitImage() - called to set up what parts of the downloaded image are written to flash and other information
for the bootloader. The Value field of the Sector Bitmap Sub-element of the Image File is given as a parameter to this
function.
• OTA_SetNewImageFlag() – called to set bootloader flags when a new image and the sector bitmap write to the storage
medium are complete. When the MCU is restarted, the bootloader transfers the new image from the storage medium to
the program flash.
To continue the image download process after a block is transferred or to restart it after an error has occurred the
OtapClient_ContinueImageDownload() function is called. This function is used in multiple situations during the image
download process.
To summarize, an outline of the steps required to perform the image download process is shown below:
• Wait for a connection from an OTAP Server
• Wait for the OTAP Server to write the OTAP Control Point CCCD
• Ask or wait for image information from the server
• If a new image is available on the server start the download process using the OtapClient_ContinueImageDownload()
function.
— If the transfer method is L2CAP CoC then initiate a PSM connection to the OTAP Server
• Repeat while image download is not complete
— Wait for image chunks
Bluetooth® Low Energy Application Developer’s Guide, Rev. 14, Nov 2020
User's Guide 128 / 138
NXP Semiconductors
Over the Air Programming (OTAP)
— Call the OtapClient_HandleDataChunk() function for all received image chunks regardless of the selected transfer
method
◦ Check image file header integrity using the OtapClient_IsImageFileHeaderValid() function.
◦ Write the Upgrade Image Sub-element to the storage medium using OtaSupport module functions.
◦ When the download is complete check image integrity
▪ If the integrity check is successful commit the image using the Sector Bitmap Sub-element and trigger the
bootloader
▪ If integrity check fails restart the image download from the beginning
◦ If the download is not complete ask for a new image chunk
— If any error occurred during the processing of the image chunk restart the download form the last known good
position
• If an image was successfully downloaded and transferred to the storage medium and the bootloader triggered then reset
the MCU to start the flashing process of the new image.
Bluetooth® Low Energy Application Developer’s Guide, Rev. 14, Nov 2020
User's Guide 129 / 138
NXP Semiconductors
Over the Air Programming (OTAP)
The OTAP Bootloader image occupies the first part of the flash memory. In the current implementation it has a reserved area of
1/32 of the flash size regardless of the actual size of the image.
The OTAP Bootloader is configured to not overwrite itself so any image sent over the air must not contain the Bootloader
application in the reserved section. See the OTAP Client section which describes how the Bootloader application can be added
to your image.
A typical application image has its memory divided into multiple sections.
• The ISR_TABLE section contains the MCU interrupt table, it has a fixed reserved size.
• The BOOT_FLAGS section contains bootloader flags and the target bootloader version. The OTAP Bootloader looks for
this section immediately after the ISR_TABLE section which has a fixed size.
— New Image Flag – set by the application to tell the OTAP Bootloader that a new image is available. This flag is set by
calling the OTA_SetNewImageFlag() function from the OtaSupport module.
— Image Upgrade Complete Flag – set by the OTAP Bootloader when the new image copy process is completed
successfully.
— Bootloader Version – bootloader version expected by the application – set at compile time.
• The APPLICATION section contains actual application code
— The optional application non-volatile memory (NVM_STORAGE) area is placed right before the FSL_PROD_DATA
section if it is present.
— The optional internal image storage area (OTAP_INTERNAL_IMAGE_STORAGE) is placed before the non-volatile
memory area if it the non-volatile memory area is present or before the FSL_PROD_DATA section if the non-volatile
memory area is not present.
• The NVM_STORAGE section contains data which the application wishes to save between device power cycles.
• The OTAP_INTERNAL_IMAGE_STORAGE section is a reserved space where an image received over-the-air is stored
before it is copied over the APPLICATION section when the OTAP Bootloader is triggered.
• The FSL_PROD_DATA section contains the location of the upgrade image. The location is a 32bit number which is set at
compile time. It is set to 0xFFFFFFFF if external SPI flash storage is used or to a location inside the internal flash memory
(which is always smaller than 0xFFFFFFFF) if internal image storage is used. This is necessary for the OTAP Bootloader
Bluetooth® Low Energy Application Developer’s Guide, Rev. 14, Nov 2020
User's Guide 130 / 138
NXP Semiconductors
Over the Air Programming (OTAP)
to know the source of the upgrade image. This location in the flash memory is written with the correct value for the type of
storage used (internal or external) when the OTA_StartImage() function is called.
When internal storage is used for the image received over-the-air the memory layout changes as shown in the following image.
The OTAP Bootloader expects a certain image format in the image storage location which is identical regardless if the storage is
internal or external.
The format of the raw image is detailed in the following table.
Bluetooth® Low Energy Application Developer’s Guide, Rev. 14, Nov 2020
User's Guide 131 / 138
NXP Semiconductors
Over the Air Programming (OTAP)
Bluetooth® Low Energy Application Developer’s Guide, Rev. 14, Nov 2020
User's Guide 132 / 138
NXP Semiconductors
Over the Air Programming (OTAP)
The OTAP Bootloader occupies the first part of the flash memory, just as in the case of unsecured OTAP. However, in this case
the boot flags immediately follow and have their own allocated sector. The application residing on the Cortex-M4 core is in M4’s
flash and the application residing on the Cortex-M0+ core is located in M0’s flash. The OTAP process allows the user to update
only one of them or both.
The BOOT_FLAGS section includes additional information for FRDM-K32W042:
• A 32-byte default Secured Boot Key Encryption Key (SBKEK) which is written by the application after the image has been
received over-the-air and read by the bootloader before starting the update process. For more details see the BLEDAUG.
• A 12-byte magic word used to identify the BOOT_FLAGS sector. This magic word is required by Test Tool since the
BOOT_FLAGS sector is trimmed from the *.bin file before building the secured image and it must be properly identified.
Bluetooth® Low Energy Application Developer’s Guide, Rev. 14, Nov 2020
User's Guide 133 / 138
NXP Semiconductors
Chapter 12
Creating a Bluetooth Low Energy Application When the
Bluetooth Low Energy Host Stack is Running on Another
Processor
This chapter describes how to create a Bluetooth Low Energy application (host), when the Bluetooth Low Energy Host Stack is
running on another processor (blackbox) and offers code examples to explain how to achieve this.
The supported serial interfaces between the two chips(application and the Bluetooth Low Energy Host Stack) are UART, SPI
and I2C.
The typical applications employing Bluetooth Low Energy Host Stack blackboxes are host systems such as a PC tool or an
embedded system that has an application implementation. This chapter describes an embedded application.
See FSCI for Bluetooth Low Energy Host Stack Reference Manual for explicit information on exercising the Bluetooth Low Energy
Host Stack functionality through a serial communication interface to a host system.
Bluetooth® Low Energy Application Developer’s Guide, Rev. 14, Nov 2020
User's Guide 134 / 138
NXP Semiconductors
Creating a Bluetooth Low Energy Application When the Bluetooth Low Energy Host Stack is Running on Another Processor
To perform the FSCI module initialization, the following code can be used:
#define gSerialMgrUseUart_c 1
#define gSerialMgrUseSPI_c 0
#define gSerialMgrUseIIC_c 0
#if gSerialMgrUseUart_c
#define gAppFSCIHostInterfaceBaud_d gUARTBaudRate115200_c
#define gAppFSCIHostInterfaceType_d gSerialMgrUart_c
#define gAppFSCIHostInterfaceId_d 1
#elif gSerialMgrUseSPI_c
#define gAppFSCIHostInterfaceBaud_d gSPI_BaudRate_1000000_c
#define gAppFSCIHostInterfaceType_d gSerialMgrSPIMaster_c
#define gAppFSCIHostInterfaceId_d 0
#elif gSerialMgrUseIIC_c
#define gAppFSCIHostInterfaceBaud_d gIIC_BaudRate_100000_c
#define gAppFSCIHostInterfaceType_d gSerialMgrIICMaster_c
#define gAppFSCIHostInterfaceId_d 1
#endif
/* Init FSCI */
FSCI_Init((void*) mFsciSerials);
fsciBleRegister(0);
The completion of the Bluetooth Low Energy Host Stack initialization is signaled by the reception of the GAP-
GenericEventInitializationComplete.Indication event (over the serial communication interface, in FSCI). The Bluetooth Low
Energy-HostInitialize.Request command is not required to be sent to the blackbox (the entire initialization is performed by the
blackbox, when it resets).
Bluetooth® Low Energy Application Developer’s Guide, Rev. 14, Nov 2020
User's Guide 135 / 138
NXP Semiconductors
Creating a Bluetooth Low Energy Application When the Bluetooth Low Energy Host Stack is Running on Another Processor
Usually, a Bluetooth Low Energy Application is going to be ported from a single chip solution, where the Bluetooth Low Energy
App and the Bluetooth Low Energy stack reside on the same processor and the GATT database is populated statically. The user
will need to remove all the attribute handles from any structure and replace them with gGattDbInvalidHandle_d and then populate
them after the services are added dynamically to the database with the handles returned by the previous API.
Bluetooth® Low Energy Application Developer’s Guide, Rev. 14, Nov 2020
User's Guide 136 / 138
NXP Semiconductors
Chapter 13
Revision history
This table summarizes revisions to this document.
2 04/2016 Adapted the text and code extracts in OTAP chapter to match the new
Bluetooth Low Energy 4.2 implementation changes.
Added section that describes how to create an OTAP image file from a BIN
type file.
Added more detailed explanations and diagrams to the Bootloader section.
Added LE Long Frames section.
Updated Low Power section.
Updated RTOS section.
Added Enhanced Privacy section.
Added Dynamic GATT Database section.
Updated GAP section with LE Secure Connections references.
5 12/2017 Adapted the text to match the QN9080 platform which supports Bluetooth
Low Energy 5.0
Bluetooth® Low Energy Application Developer’s Guide, Rev. 14, Nov 2020
User's Guide 137 / 138
How To Reach Us Information in this document is provided solely to enable system and software implementers
to use NXP products. There are no express or implied copyright licenses granted hereunder
Home Page:
to design or fabricate any integrated circuits based on the information in this document. NXP
nxp.com reserves the right to make changes without further notice to any products herein.
Web Support: NXP makes no warranty, representation, or guarantee regarding the suitability of its products
nxp.com/support for any particular purpose, nor does NXP assume any liability arising out of the application
or use of any product or circuit, and specifically disclaims any and all liability, including
without limitation consequential or incidental damages. “Typical” parameters that may be
provided in NXP data sheets and/or specifications can and do vary in different applications,
and actual performance may vary over time. All operating parameters, including “typicals,”
must be validated for each customer application by customer's technical experts. NXP does
not convey any license under its patent rights nor the rights of others. NXP sells products
pursuant to standard terms and conditions of sale, which can be found at the following address:
nxp.com/SalesTermsandConditions.
While NXP has implemented advanced security features, all products may be subject to
unidentified vulnerabilities. Customers are responsible for the design and operation of their
applications and products to reduce the effect of these vulnerabilities on customer’s applications
and products, and NXP accepts no liability for any vulnerability that is discovered. Customers
should implement appropriate design and operating safeguards to minimize the risks associated
with their applications and products.
NXP, the NXP logo, NXP SECURE CONNECTIONS FOR A SMARTER WORLD, COOLFLUX,
EMBRACE, GREENCHIP, HITAG, I2C BUS, ICODE, JCOP, LIFE VIBES, MIFARE, MIFARE
CLASSIC, MIFARE DESFire, MIFARE PLUS, MIFARE FLEX, MANTIS, MIFARE ULTRALIGHT,
MIFARE4MOBILE, MIGLO, NTAG, ROADLINK, SMARTLX, SMARTMX, STARPLUG, TOPFET,
TRENCHMOS, UCODE, Freescale, the Freescale logo, AltiVec, CodeWarrior, ColdFire,
ColdFire+, the Energy Efficient Solutions logo, Kinetis, Layerscape, MagniV, mobileGT, PEG,
PowerQUICC, Processor Expert, QorIQ, QorIQ Qonverge, SafeAssure, the SafeAssure logo,
StarCore, Symphony, VortiQa, Vybrid, Airfast, BeeKit, BeeStack, CoreNet, Flexis, MXC, Platform
in a Package, QUICC Engine, Tower, TurboLink, EdgeScale, EdgeLock, eIQ, and Immersive3D
are trademarks of NXP B.V. All other product or service names are the property of their
respective owners. AMBA, Arm, Arm7, Arm7TDMI, Arm9, Arm11, Artisan, big.LITTLE, Cordio,
CoreLink, CoreSight, Cortex, DesignStart, DynamIQ, Jazelle, Keil, Mali, Mbed, Mbed Enabled,
NEON, POP, RealView, SecurCore, Socrates, Thumb, TrustZone, ULINK, ULINK2, ULINK-ME,
ULINK-PLUS, ULINKpro, µVision, Versatile are trademarks or registered trademarks of Arm
Limited (or its subsidiaries) in the US and/or elsewhere. The related technology may be protected
by any or all of patents, copyrights, designs and trade secrets. All rights reserved. Oracle
and Java are registered trademarks of Oracle and/or its affiliates. The Power Architecture and
Power.org word marks and the Power and Power.org logos and related marks are trademarks
and service marks licensed by Power.org.