Ug136 Ble C Soc Dev Guide
Ug136 Ble C Soc Dev Guide
products using the Silicon Labs Bluetooth stack. The guide cov- • Project structure and development flow
ers the Bluetooth stack architecture, application development • Bluetooth stack and Wireless Gecko
flow, usage and limitations of the MCU core and peripherals, configuration
stack configuration options, and stack resource usage. This ver- • Interrupt handling
• Event and sleep management
sion applies to the Silicon Labs Bluetooth SDK version 2.11.x
• Resource usage and available resources
and higher.
The purpose of the document is to capture and fill in the blanks between the Bluetooth
Stack API reference, Gecko SDK API reference, and Wireless Gecko reference man-
uals, when developing Bluetooth applications for the Wireless Geckos. This document
exposes details that will help developers make the most out of the available hardware
resources.
3. Project Structure . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 9
3.1 Bluetooth Files . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 9
3.2 GATT Database . . . . . . . . . . . . . . . . . . . . . . . . . . . . .11
3.3 Device Firmware Upgrade . . . . . . . . . . . . . . . . . . . . . . . . . .11
3.4 RTOS Support . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .12
3.5 Multiprotocol Support . . . . . . . . . . . . . . . . . . . . . . . . . . . .12
3.6 Hardware Support . . . . . . . . . . . . . . . . . . . . . . . . . . . . .13
8. Application ELF-file. . . . . . . . . . . . . . . . . . . . . . . . . . . . 32
9. Documentation . . . . . . . . . . . . . . . . . . . . . . . . . . . . .34
1. Introduction
This document is a C developer’s guide for the Silicon Labs Bluetooth stack.
The document covers various angles of development, and is an important reference to everyone developing in C for Wireless Gecko
products that are running the Bluetooth stack.
When moving a project from Bluetooth stack version 2.10.x to 2.11.x and higher, the following changes in the Bluetooth stack must be
addressed in the project.
Use the GATT capability feature for dynamic configuration of services and characteristics in the local GATT database. See
cmd_gatt_server_set_capabilities command for the details.
DCDC control is not supported by Bluetooth API. Use EMDRV or EMLIB for necessary functions.
Replacements are:
• cmd_le_gap_set_advertise_timing command for setting the advertising intervals,
• cmd_le_gap_set_advertise_channel_map command for setting the channel map, and
• cmd_le_gap_set_advertise_report_scan_request command for enabling and disabling scan request notifications.
Replacements are:
• cmd_le_gap_start_advertising command to start the advertising, and
• cmd_le_gap_stop_advertising command to stop the advertising.
• cmd_le_gap_set_advertise_timing command can be used for setting the maximum events and
• command cmd_le_gap_set_advertise_configuration can be used to for setting address types.
Replacement is cmd_le_gap_connect command, which allows opening a connection with a specified PHY.
Use the cmd_le_gap_bt5_set_adv_data command to set the advertising data and scan response data.
Replacements are:
• cmd_le_gap_set_advertise_timing command for setting the advertising intervals, and
• cmd_le_gap_set_advertise_channel_map command for setting the channel map.
Replacements are:
• cmd_le_gap_start_advertising command for enabling the advertising, and
• cmd_le_gap_stop_advertising command for disabling the advertising
Replacements are:
• cmd_le_gap_set_discovery_timing command for setting timing parameters, and
• cmd_le_gap_set_discovery_type command for the scan type.
Functions gecko_init() and gecko_stack_init() return errorcode_t. This error code must be verified to confirm that the Bluetooth
stack has been succesfully initialized.
1.2 Prerequisites
This documents assumes the current version of Silicon Labs’ Bluetooth SDK has been properly installed to the development machine
(Windows, MAC OSX, or Linux), and that the reader is familiar with the quick start guides and with the SDK’s examples. Also, the read-
er should have a basic understanding of Bluetooth technology. For more information, see UG104.13: Bluetooth Technology Fundamen-
tals.
For instructions on getting started using example applications in Silicon Labs Simplicity Studio development environment, see QSG139:
Bluetooth Development with Simplicity Studio.
The following figure describes the high-level firmware structure. The developer creates an application on top of the stack, which Silicon
Labs provides as a precompiled object-file, enabling the Bluetooth connectivity for the end-device.
Building a project starts by defining the Bluetooth services and characteristics (GATT definitions) and by writing the application source
code from Silicon Labs-provided examples or an empty project template, as described in QSG139: Bluetooth Application Development
in Simplicity Studio.
SDK v2.1.0 and later offer two ways to define Bluetooth services and characteristics. The first option is the Visual GATT Editor GUI in
Simplicity Studio. This is a graphical tool for designing the GATT and for generating gatt_db.c and gatt_db.h. Additionally it can im-
port .xml and .bgproj GATT definition files. The Visual GATT Editor is the default tool for GATT definition and generation in Simplicity
Studio projects.
The second option is to create an .xml or .bgproj according to the UG118: Blue Gecko Bluetooth® Profile Toolkit Developer's Guide and
then use the BGBuild executable as a pre-compilation step to convert the GATT definition file into .c and .h. This method is used in IAR
Embedded Workbench projects.
Compiling the project generates an object file, which is then linked with the pre-compiled libraries provided in the SDK. The output of
the linking is a flash image that can be programmed to the supported Wireless Gecko devices.
3. Project Structure
This section explains the application project structure and the mandatory and optional resources that must be included in the project.
Library Files
RAIL
The Bluetooth stack uses RAIL to access the radio and RAIL libraries needs to be linked with Bluetooth stack. RAIL has separate libra-
ries for each device family and for single- and multi-protocol environment. RAIL libaries are provided in the Gecko SDK. For more infor-
mation refer to UG103.13: RAIL Fundamentals and other RAIL documentation.
The Bluetooth stack uses EMLIB and EMDRV libraries to access EFR32 hardware. EMLIB and EMDRV peripheral libraries are provi-
ded in source code and they need to be included in the project. EMLIB and EMDRV are part of the Gecko SDK. For more details on
EMLIB and EMDRV, refer to the Gecko Bootloader API reference in <Simplicity Studio Gecko SDK>\platform\bootloader\documentation
\Gecko_Bootloader_API_Reference\index.html, along with the documentation in their respective folders under <Simplicity Studio Gecko
SDK>\platform\.
Header Files
bg_version.h
These files defines the Bluetooth stack API. There are three different files for different use cases. Only one of the files must be inclu-
ded. native_gecko.h is used with bare-metal Bluetooth application. ncp_gecko.h is used when building SoC application for NCP sup-
port. rtos_gecko.h is used with Micrium RTOS.
These files serve two purposes: first they contain the actual Bluetooth stack API and the commands and events for the stack, and sec-
ond they provide a configuration, event, and sleep management API to the Bluetooth stack.
This function takes a single argument - a pointer to a gecko_configuration_t struct. Its purpose is to configure and initialize the Blue-
tooth stack with the parameters provided in the struct. The configuration options and how to use gecko_init() are discussed in more
detail in section 4.2 Bluetooth Configuration with gecko_stack_init(). gecko_init() must be called by the application to initialize the
Bluetooth stack.
This function is provided for convenience. It initializes all functionality in Bluetooth stack. To have more granularity in configuration, use
gecko_stack_init() as described next.
This function takes a single argument - a pointer to a gecko_configuration_t struct. Its purpose is to configure and initialize the Blue-
tooth stack with the parameters provided in the struct. Once the function gecko_stack_init() is called each stack used component
must be initialized separately. This separation allows memory optimization, by not including those stack components that are not nee-
ded.
This is a blocking function that waits for events coming from the Bluetooth stack and blocks until an event is received. Once an event
has been received, a pointer to a gecko_cmd_packet struct is returned.
If EM sleep modes have been enabled in the Bluetooth stack configuration, the device will automatically enter EM1 or EM2 mode when
no events are being received from the Bluetooth stack. Using gecko_wait_event()is the easiest way to make sure the device is in the
lowest power sleep mode whenever possible.
The Bluetooth stack’s event handling is discussed in detail in section 5. Bluetooth Stack Event Handling.
This is a non-blocking function to request Bluetooth events from the Bluetooth stack. When an event is requested and the event queue
is not empty, a pointer to the gecko_cmd_packet struct is returned. If there are no events in the event queue, NULL is returned.
When using this non-blocking event listener, the EM sleep modes have to be managed by the application code as they are not man-
aged automatically by the Bluetooth stack. The sleep mode management is done with gecko_can_sleep_ms() and
gecko_sleep_for_ms() functions, which are discussed later.
The stack’s event handling is discussed in detail in section 5. Bluetooth Stack Event Handling.
int gecko_event_pending(void)
This function checks to see if any Bluetooth stack events are pending in the event queue. If a pending Bluetooth event is found, the
function returns a non-zero value to indicate that the event should be processed by either gecko_peek_event() or
gecko_wait_event(). If no event is found, zero is returned.
uint32 gecko_can_sleep_ms(void)
This function is used to determine how long the Bluetooth stack can sleep. The return value is the number of milliseconds the stack can
sleep until the next Bluetooth operation must occur. If sleeping is not possible, zero is returned. This function is only to be used with
non-blocking gecko_peek_event() event handling.
This function is used to put the stack into EM sleep for a maximum number of milliseconds, set in the function’s single parameter. The
return value is the number of milliseconds actually slept. It is possible that the stack will awaken due to an external event. This function
is only to be used with non-blocking gecko_peek_event() event handling.
native_gecko.h
This file is used in applications without RTOS. It provides IPC (interprocess communications) to the Bluetooth stack using direct func-
tion calls.
ncp_gecko.h
This file is to be used in applications providing the NCP functionality for the host. It provides IPC to Bluetooth stack using NCP headers
as function calls.
These files are used when developing applications for an external host. host_gecko.h has the API definitions and gecko_bglib.h
contains the adaptation layer between the host application and the BGAPI serial protocol.
rtos_gecko.h
rtos_gecko.h is used when the application is built for Micrium OS. The Bluetooth stack is a separate task for Micrium OS and uses its
power, sleep, and memory management. rtos_gecko.h provides a wrapper for the IPC for using the Bluetooth stack from any task in
Micrium OS. This file contains the Bluetooth stack API and the commands and events for the stack, and a configuration API for the
Bluetooth stack.
The GATT (Generic Attribute Profile) database is a standardized way of describing the Bluetooth profiles, services, and characteristics
of a Bluetooth device. With the Silicon Labs Bluetooth stack, the GATT definitions are either directly edited in the Visual GATT Editor
GUI in Simplicity Studio or are written in XML and passed to the BGBuild executable as a pre-build task. For more information on how
to create GATT databases and the syntax, refer to UG118: Blue Gecko Bluetooth® Smart Profile Toolkit Developer's Guide.
The gatt_db.c defines the GATT database structure and content, and is auto-generated by BGBuild.exe or by the Visual GATT Editor.
gatt_db.h includes this database and the handles of local characteristics and services. Type definitions of GATT are automatically inclu-
ded from gatt_db_def.h to gatt_db.h.
Device Firmware Upgrade (DFU) is the process of upgrading the application either over a serial link or over-the-air (OTA). In both cases
thr application needs to add the following file to enable the support for DFU.
application_properties.c
This file includes the application properties struct that contains information about the application image, such as type, version, and se-
curity. The struct is defined in application_properties.h in the Gecko Bootloader API (see the Gecko Bootloader API reference in
<Simplicity Studio Gecko SDK>\platform\bootloader\documentation\Gecko_Bootloader_API_Reference\index.html). A pre-generated
file is included in Simplicity Studio projects, which can be modified to include application-specific properties. The application properties
can be accessed using the Gecko Bootloader API. The following members can updated by changing the defines:
// Unique ID (e.g. UUID or GUID) for the product this application is built for (uint8_t[16])
#define BG_APP_PROPERTIES_ID
When using the OTA process with Bluetooth AppLoader, the application properties struct needs to reside immediately after the applica-
tion vector table. This is enabled automatically when using linker files provided by the Bluetooth stack.
The Bluetooth stack can also run on Micrium RTOS. In this case native_gecko.h is replaced by rtos_gecko.h and the following files are
added to the project: rtos_bluetooth.c and rtos_bluetooth.h.
rtos_bluetooth.c and rtos_bluetooth.h provide the Micrium OS tasks for the IPC (Inter-Process Communication) with the Blue-
tooth stack and other Micrium OS tasks. The rtos_gecko.h header file, described below, also must be included when using Micrium
OS. It provides the API IPC encapsulation for using the Bluetooth stack from any Micrium OS task.
Support for RTOS needs to be configured for the Bluetooth Stack in the gecko_configuration_t struct. The config_flags field
needs to have GECKO_CONFIG_FLAG_RTOS set. This causes the Bluetooth stack to rely on the Micrium OS for sleeping, rather than
sleeping directly. scheduler_callback and stack_schedule_callback must be configured to call proper functions. These callbacks
are used to wake up the corresponding tasks.
.config_flags = GECKO_CONFIG_FLAG_RTOS,
.scheduler_callback = BluetoothLLCallback,
.stack_schedule_callback = BluetoothUpdate,
It takes task priorities as parameters. ll_priority is for Link Layer and stack_priority is for the Bluetooth stack. Link Layer Priority
must be the highest priority in the system, as its timely execution is critical for the system's performance.
When the Bluetooth Stack is used in a multiprotocol environment, multiprotocol features in the Bluetooth stack must be enabled with
following function:
The config parameter is currently always set to NULL, it is reserved for future extensions.
Using Bluetooth in a multiprotocol environment also requires using the RAIL library with multiprotocol support.
The following files are part of the Gecko SDK, they add support for hardware specific features.
hal-config.h
This header file contains the MCU peripheral initialization settings, such as those for clocks and power management and for peripherals
such as UART, SPI, and so on. Note that this file contains only the non-board-specific settings of the peripherals, like the baud rate of
the UART, and not the board-specific settings like input/output pins for UART.
These files include the device initialization function, which initializes internal settings of the MCU like clocks and power management.
These files include the board initialization function, which initializes external parts on the board. For example, it enables GPIOs, and
initializes external flash on the radio board.
These files include the app initialization function, which initializes external parts on the WSTK according to the application. For example,
it enables VCOM, sensors, and LCD display on the WSTK.
These files include the PTI initialization function, which enables the Packet Trace Interface.
hal-config-board.h
This header file contains the board initialization settings such as button and LED pins, UART and SPI pins, and so on. When the appli-
cation is being developed for Silicon Labs’ radio boards, these settings are set correctly in the examples provided in the SDK, but a
developer who is creating applications for a custom hardware design needs to configure the settings accordingly.
bspconfig.h / bsphalconfig.h
The BSP (Board Support Package) header includes radio board-specific configurations, which are used as parameters for WSTK-spe-
cific functions like toggling IOs on the WSTK or driving the LCD display on the starter kit. If the Hardware Configurator tool is used, then
the examples use bsphalconfig.h. Otherwise bspconfig.h is used.
mx25flash_spi.h
This header file includes functions to configure the SPI flash chip on some of the radio boards (for example BRD4100A) to low-power
mode. This is useful when making sleep current measurements, for example, because if the SPI flash is not in low-power mode, the
lowest EM2, EM3, or EM4 currents are not reached.
To run the Bluetooth stack and an application on a Wireless Gecko, the MCU and its peripherals have to be properly configured. Once
the hardware is initialized the stack also has to be initialized using the gecko_init() function.
initMcu()
The initMCU() function is used to initialize MCU core. This function starts the oscillators and configures energy modes of the device.
Peripheral initializations that are independent of the board settings (for example, timer init) can be added to this function. The function
must be called at the beginning of main().
initBoard()
The initBoard() function is used to initialize board features, such as initializing the external flash. Peripheral initializations that depend
on the board design (for example GPIO init or UART init) can be added to this function. The function must be called after initMcu().
initApp()
The initApp() function is used to initialize application-specific features, such as enabling the SPI display on the WSTK. The function
must be called after initBoard().
Bluetooth Stack implements Adaptive Frequency Hopping (AFH), conforming with the ETSI EN 300 328 standard. AFH is required
when using transmit power +10 dBm and over. AFH may also provide performance improvement by avoiding congested channels.
To enable AFH in the Bluetooth stack, the following initialization function must be called:
void gecko_init_afh();
In a master-slave connection, both ends can use AFH independent of each other. The master may be non-adaptive, but the slave still
may need to be adaptive. The standard allows using control transfer on a blocked channel. For compliance reasons if the slave detects
that a blocked channel is in use it will only send a single packet on that channel to prevent connection timeouts.
Note: Legacy advertising does NOT use Adaptive Frequency Hopping. Legacy advertising uses 3 channels, and AFH needs a mini-
mum of 15 channels to fulfill the requirements of the ETSI standard. Extended advertising must be used to enable AFH with advertising.
The clock settings are initialized in the initMcu_clocks() function. Clock settings include initializations of oscillators (HFXO, LFXO,
and LFRCO) with parameters such as tuning, initialization of the clocks (HFCLK, LFCLK, LFA, LFB, LFE), and the assignment of clocks
to oscillators. Note: The peripheral clocks (like GPIO clock, TIMER clock) are not enabled in this function. They must be enabled when
initializing a peripheral.
HFCLK
HFCLK is used for a radio protocol timer (PROTIMER). HFCLK is a high frequency clock where accuracy must be at least ±50 ppm.
This clock needs an external crystal to be sufficiently accurate (HFXO).
The HFXO initialization configures the external crystals for timing-critical connection and sleep management. An HFXO has to be set as
the high frequency clock (HFCLK) and physically connected to a Wireless Gecko’s HFXO input pins.
LFCLK
To allow a device to stop HFCLK and enter sleep modes another clock is needed, which is the LFCLK clock.
When a device enters into sleep mode, the current state of PROTIMER is saved. When the device wakes up it calculates how many
ticks of sleep clock has passed and adjusts the PROTIMER accordingly. To the radio it appears that PROTIMER has been constantly
ticking.
The accuracy of this clock depends on the operating mode of the device. When advertising or scanning, accuracy is not that important,
but when a connection is open the accuracy must be at least ±500 ppm. This clock can be driven either by LFXO or LFRCO, depending
on the accuracy requirements.
The accuracy of the clock is defined in the Bluetooth stack configuration structure, see 4.2.5 Bluetooth Stack Configuration.
The default configuration is that the LFXO is connected to the Wireless Gecko and set as the low frequency clock (LFCLK). If the de-
sign doesn’t have the LFXO connected then sleep has to be explicitly disabled from the application and LFRCO has to be set to be
used as clock source. As mentioned in section 4.2.4 Sleep, if the LFCLK is not accurate enough, then the sleep modes have to be
disabled for the Bluetooth stack to operate correctly.
CTUNE
The examples have the crystal tune (CTUNE) settings for both HFXO and LFXO set by default to work with all of the Silicon Labs’
Bluetooth modules, reference designs, and radio boards. However, in some cases the end-product design requires specific crystal cali-
bration, either per device or per design. The CTUNE value can be adjusted according to the design with the
hfxoInit.ctuneSteadyState and the lfxoInit.ctune settings in the initMcu_clocks() function.
// Initialize HFXO
CMU_HFXOInit_TypeDef hfxoInit = BSP_CLK_HFXO_INIT;
hfxoInit.ctuneStartup = BSP_CLK_HFXO_CTUNE;
hfxoInit.ctuneSteadyState = BSP_CLK_HFXO_CTUNE;
CMU_HFXOInit(&hfxoInit);
For more information on configuring the HFXO and LFXO, refer to the EFR32 Reference Manual.
The system checks multiple sources for the default HFXO CTUNE value, using the following logical order:
1. CTUNE PSKEY is set. This key has ID 50 (32 in hex) and contains 2 bytes of data for the 16 bit CTUNE value. This can be program-
med with the BGAPI command cmd_flash_ps_save
2. Calibration value exists in DEVINFO. Some modules contain a factory-programmed value in the DEVINFO-page.
3. Manufacturing token exists in the user data page. This is programmed by the developer, or it can be automatically set by Simplicity
Studio if the board EEPROM contains the value. This token consists of 2 bytes, located at offset 0x0100 from the starting address of
the User Data page for EFR32xG1x devices, or the last flash page for EFR32xG21 devices. Please refer to the EFR32 Reference Man-
ual for your specific EFR variant for the full flash mapping.
4. If a radio board is selected when generating the project, then use default value from board header file
5. If nothing else is found, use the default value from CMU header file.
Note: The Bluetooth stack only supports 38.4 MHz HFXO frequency; no other HFXO frequencies are supported.
On devices that have DC-DC, the configuration is set in the initMCU() function. The examples in the SDK have DC-DC configuration
set to work with the Silicon Labs’ Bluetooth modules, radio boards, and reference designs, but custom designs might require specific
DC-DC settings. These custom settings can be set in hal-config-board.h.
#define BSP_DCDC_INIT \
{ \
emuPowerConfig_DcdcToDvdd, /*
DCDC to DVDD */ \
emuDcdcMode_LowNoise, /*
Low-noise mode in EM0 */ \
1800, /*
Nominal output voltage for DVDD mode, 1.8V */ \
15, /*
Nominal EM0/1 load current of less than 15mA */ \
10, /*
Nominal EM2/3/4 load current less than 10uA */ \
200, /*
Maximum average current of 200mA
(assume strong battery or other power source) */ \
emuDcdcAnaPeripheralPower_DCDC,/* Select DCDC as analog power supply (lower power) */ \
160, /* Maximum reverse current of 160mA */ \
emuDcdcLnCompCtrl_1u0F, /* 1uF DCDC capacitor */ \
}
For more information on configuring the DC-DC, refer to the EFR32 Reference Manual, Chapter 11, and AN0948: Power Configurations
and DC-DC.
4.1.4 LNA
A low-noise amplifier (LNA) is an electronic amplifier that amplifies a very low-power signal without significantly degrading its signal-to-
noise ratio. The LNA improves RF sensitivity.
An LNA is provided on-board in some MGM12P modules as part of front-end module (FEM). To use LNA in these modules, the FEM
needs to be correctly configured and enabled. The FEM is configured in hal-config-board.h using the prefix BSP_FEM_.
FEM is initialized in initFem() within the initBoard() function if the board supports FEM.
Periodic advertising enables multiple listeners to be synchronized with a single advertising device. Thus it is a form of multicast.
Each listener needs to be synchronized to the advertising device before they start receiving data. Periodic advertising uses a scanner
on the listening device to establish a synchronization to the advertising device. After synchronization the scanner can then be stopped.
This makes it much more power-efficient than using the scanner full time for listening for broadcast advertisements.
The periodic advertising consists of two components: periodic advertiser role and periodic advertising synchronization on listening
side.These two components are independent of each other and needs to be initialized separately.
Periodic Advertiser
max_advertisers in the Bluetooth configuration also configures the maximum number of periodic advertisers.
To enable Periodic Advertiser in the Bluetooth stack, the following initialization function must be called after the generic gecko_init
function:
void gecko_init_periodic_advertising();
max_periodic_sync in the Bluetooth config is used to configure the maximum number of synchronizations the Bluetooth stack needs to
support.
To enable Periodic Advertising Synchronization in the Bluetooth stack, the following initialization function must be called after the gener-
ic gecko_init function:
void gecko_bgapi_class_sync_init();
This command also initializes the BGAPI sync class, making it available to use.
4.1.6 PTI
PTI (Packet Trace Interface) is a built-in block in the Wireless Gecko SoCs to route incoming and outgoing radio packets as raw data to
the debug interface. These packets can then be captured and displayed in Simplicity Studio’s Network Analyzer. Network Analyzer has
a decoder for Bluetooth packets and can be used to debug, analyze, and measure Bluetooth networks.
PTI is initialized in configEnablePti() within the initApp() function. The baudrate can be set in hal-config.h using the
HAL_PTI_BAUD_RATE definition, while pins can be configured in hal-config-board.h using the definitions with the BSP_PTI_ prefix.
Starting with Bluetooth 2.6.x PTI is configured with functions provided by RAIL.
Transmit power of Bluetooth depends on the maximum power allowed by the radio, the software configuration, RF path gain compensa-
tion, and usage of Adaptive Frequency Hopping (AFH).
The ETSI EN 300 328 standard requires using AFH when transmitter power is +10 dBm and over.
The maximum allowed power is limited to less than +10 dBm if prevented by adaptivity requirements. The ETSI standard requires that
at least 15 channels are in use for AFH. This requirement prevents using +10 dBm and over in the following cases: legacy advertising,
scan responses, and in connections, when not enough channels are available.
4.1.8 Whitelisting
Whitelisting is used to filter devices. Currently it is only supported when discovering devices. Connection requests, scan requests from
remote devices during advertising, and connection initiations are not restricted by the whitelist.
Whitelist size matches the configuration for the max number of bonded devices. If the max number of bonded devices is changed when
using whitelisting, the device needs to be reset before the new setting takes effect.
Bonded devices are added to the whitelist automatically. Alternatively they can be added manually with the BGAPI command
gecko_cmd_sm_add_to_whitelist().
Random address resolving is not supported. Devices using resolvable random addresses will not be visible during scanning. Since
most Android and iOS phones use resolvable random addresses, the whitelisting feature will effectively block these devices during de-
vice discovery.
To enable whitelisting in the Bluetooth stack, the following initialization function must be called after the generic gecko_init function:
void gecko_init_whitelisting();
When the function is enabled, it can be enabled and disabled at runtime by the BGAPI command
gecko_cmd_le_gap_enable_whitelisting().
Wi-Fi coexistence (COEX) is a protocol where Bluetooth and Wi-Fi arbitrate which protocol can use the radio for transmitting. When
enabled, it improves the performance of Wi-Fi and Bluetooth. COEX is configured in hal-config-board.h using defines with prefixes
BSP_COEX_ and HAL_COEX_.
gecko_initCoexHAL();
COEX implements the GPIO interface to the Wi-Fi IC. It depends on EMLIB em_gpio.c and EMDRV gpiointerrupt.c and requires
both files to be included in the project.
The gecko_stack_init() function is used to configure the Bluetooth stack, including sleep mode configuration, memory allocated for
connections, OTA configuration, and so on. None of the Bluetooth stack functions can be used before the Bluetooth stack has been
configured.
uint8_t bluetooth_stack_heap[DEFAULT_BLUETOOTH_HEAP(MAX_CONNECTIONS)];
static const gecko_configuration_t config = {
.config_flags=0,
.sleep.flags=SLEEP_FLAGS_DEEP_SLEEP_ENABLE,
.bluetooth.max_connections=MAX_CONNECTIONS,
.bluetooth.heap=bluetooth_stack_heap,
.bluetooth.heap_size=sizeof(bluetooth_stack_heap),
.bluetooth.sleep_clock_accuracy = 100, // ppm
.gattdb=&bg_gattdb_data,
.ota.flags=0,
.ota.device_name_len=3,
.ota.device_name_ptr="OTA",
.max_timers=4
};
Configuration options in the gecko_stack_init() function are: sleep enable/disable, Bluetooth connection count, heap size, sleep
clock accuracy, GATT database, OTA configuration, and PA configuration.
Once the function gecko_stack_init() is called, each stack component used has to be initialized separately. This separation allows
memory optimization by not including unnecessary stack components.
gecko_bgapi_class_flash_init() enables persistent store commands (flash) APIs that can be used
to manage the user data in the flash memory.
4.2.1 CONFIG_FLAGS
Current flags:
GECKO_CONFIG_FLAG_RTOS 1 = Application uses RTOS. Stack does not configure clocks, vectors, TEMPDRV, or sleeps as they are
provided by RTOS.
4.2.2 Mbedtls
The Mbedtls cryptography library used by the stack is configured using a configuration file that defines what algorithms are supported
and if the implementation uses hardware acceleration or is done on software. The Mbedtls configuration file path is given using
#define MBEDTLS_CONFIG_FILE. The default configuration file mbedtls_config.h is in the SDK and should be used as a template if
the configuration needs to be changed.
When the Bluetooth stack is used with other protocols in a multiprotocol environment, it may become necessarily to change the Blue-
tooth priority settings for RAIL to optimize certain use cases.
The application needs to allocate the configuration struct and provide it for the Bluetooth stack:
gecko_bluetooth_ll_priorities custom_priorities;
static const gecko_configuration_t config = {
//
.bluetooth.linklayer_priorities = &custom_priorities,
//
};
The gecko_bluetooth_ll_priorities struct must be initialized to default state by the GECKO_BLUETOOTH_PRIORITIES_DEFAULT con-
stant.
For each priority range, 0 is the maximum priority, and 0xff is the minimum priority. Bluetooth priorities are different from RAIL priorities.
That is, Bluetooth has its own space between 0 and 0xff where all Bluetooth priorities are located. To map Bluetooth priorities to RAIL
priorities, the values in fields rail_mapping_offset and rail_mapping_range are used to form single-degree equation:
RAIL_priority=(BT_priority/0xFF)*rail_mapping_range+rail_mapping_offset
4.2.4 Sleep
Wireless Gecko’s sleep mode EM2 (energy mode two) must be enabled in the gecko_init() function. The sleep flags are part of the
gecko_configuration_t struct. The SLEEP_FLAGS_DEEP_SLEEP_ENABLED flag must be set to enable the sleep. Sleep modes are han-
dled automatically by the stack in the case of blocking events, as described in section 5. Bluetooth Stack Event Handling.
The sleep modes require that an accurate 32 kHz low-frequency clock (LFCLK) is present in the hardware. If an accurate sleep clock is
not available for the Bluetooth stack, then low power sleep modes cannot be entered. For applications where low power sleep modes
are not needed, the LFXO can be left out, but then the sleep flag in the gecko configuration struct must be set like this:
If sleep needs to be disabled at runtime, it can be done by calling the Sleep driver function SLEEP_SleepBlockBegin(sleepEM2). To
re-enable EM2 Deep Sleep mode use SLEEP_SleepBlockEnd(sleepEM2). While EM2 is disabled (/blocked), the stack will switch be-
tween EM0 and EM1. For more information, refer to knowledge base article Using Energy Modes with Bluetooth Stack.
Stack Memory
The Bluetooth stack uses internal memory management to allocate memory for each connection and for internal data buffers. This
memory needs to be allocated and passed to the Bluetooth stack by the application. Memory size depends on the number of connec-
tions. The C macro DEFAULT_BLUETOOTH_HEAP() calculates the default size in bytes of needed memory.
uint8_t bluetooth_stack_heap[DEFAULT_BLUETOOTH_HEAP(MAX_CONNECTIONS)];
static const gecko_configuration_t config = {
//
.bluetooth.heap = bluetooth_stack_heap,
.bluetooth.heap_size = sizeof(bluetooth_stack_heap),
//
};
Number of Connections
The absolute maximum number of simultaneous Bluetooth connections is 8. The amount of memory that is allocated for connection
management further limits the number of connections. The memory is allocated during initialization in gecko_init(). C-define
MAX_CONNECTIONS can be defined to set the number of connections. The same define is then also used to calculate the memory size of
the Bluetooth stack as explained above. MAX_CONNECTIONS is then further passed to Bluetooth stack in
the .bluetooth.max_connections field in the configuration struct.
#define MAX_CONNECTIONS 1
For more information about connection RAM usage, refer to 7.3.2 Bluetooth Connection Pool.
The Bluetooth stack uses .sleep_clock_accuracy to optimize wake-up time from sleep. The unit is in ppm (Parts Per Million). If this
value is too large, then the Bluetooth stack wakes up from sleep too early to wait for the actual event, which causes excessive power
usage. If this value is too small, then the Bluetooth stack wakes up too late and misses the connection event, which causes dropped
connections.
If this is not defined or is set to 0, then the default value of 250 ppm is used.
Advertisers
The maximum number of advertisement sets can be defined by this configuration option. These sets can be used to start multiple ad-
vertisers. This configuration option also configures the maximum number of periodic advertisements. Each advertisement context allo-
cates ~60 bytes of RAM.
Synchronous Advertisements
The maximum number of supported synchronous advertisements needs to be configured. Each context allocates ~40 bytes of RAM.
Bluetooth Over-the-Air (OTA) firmware upgrades are supported, since part of the firmware upgrade is handled by the Bluetooth Ap-
pLoader application.
The OTA mode uses the .ota.flags configuration field. It currently has a single option, GECKO_OTA_FLAGS_RANDOM_ADDRESS, which
sets OTA to use a static random adress, instead of a public address.
When the Wireless Gecko is in AppLoader's OTA mode, its device name and the device name length can be configured through the
gecko configuration struct.
Finally, setting the device to OTA DFU mode should be secured so that only trusted devices have that capability.
For more details about OTA firmware updates, refer to UG266: Silicon Labs Gecko Booloader User's Guide and AN1086: Using the
Gecko Bootloader with Silicon Labs Bluetooth Applications.
4.2.7 PA
On EFR32 SoC-based designs, the PAVDD (Power Amplifier voltage regulator VDD input) can be supplied from the output of the
DC/DC or straight from a 3.3 V power supply.
The Bluetooth stack configuration defaults to using DC/DC as the PAVDD input. If PAVDD is being supplied from an 3.3 V power sup-
ply then the .pa.input field needs to be defined.
The Bluetooth stack automatically selects the high power PA if available. Setting 1 in pa_mode configuration will configure the Bluetooth
stack to always use low power PA.
Maximum available software timers can be configured. Each timer needs resources from the stack to be implemented. Increasing
amount of soft timers may cause degraded performance in some use cases.
The application can define RF path gain values for RX and TX separately.
The Bluetooth stack takes TX RF path gain into account when adjusting transmitter power. Power radiated from the antenna then
matches the application request. For example, if maximum power requested by the application is at +10 dBm and path loss is -1 dBm,
then actual power at the pin is +11 dBm.
RX RF path gain is used to compensate the RSSI reports from the Bluetooth Stack.
The Bluetooth stack for the Wireless Geckos is an event-driven architecture, where events are handled in the main while loop.
gecko_wait_event() is a implementation of a blocking wait function, which waits for events to emerge to the event queue and returns
them to the event handler. This is the recommended mode of operation with the Bluetooth stack, because it manages the sleep most
efficiently and automatically, while keeping the device and connections in sync.
• The gecko_wait_event() function processes the internal message queue until an event is received.
• If there are no pending events or messages to process, the device goes to EM1 or EM2 sleep mode.
• The function returns a pointer to a gecko_cmd_packet structure holding the received event.
The code snippet below shows the simple main while loop from the iBeacon example using gecko_wait_event(), which sets up adver-
tising after boot.
/* Main loop */
while (1) {
struct gecko_cmd_packet* evt;
This mode of operation requires more manual adjustment, for example sleep management needs to be done by the application. In
some use cases non-blocking operation is required.
• The gecko_peek_event() function processes the internal message queue until an event is received or all of the messages are pro-
cessed.
• The function returns a pointer to a gecko_cmd_packet structure holding the received event, or NULL if there are no events in the
queue.
When an application uses the non-blocking gecko_peek_event() function to create an event handler, the sleep implementation differs
as well. The application must use gecko_can_sleep_ms() to query the stack for how long the device can sleep, and then use the
gecko_sleep_for_ms() function to set it to sleep for that time. Interrupts must be disabled before calling gecko_can_sleep_ms() or
gecko_sleep_for_ms() functions, and enabled once the functions have been executed.
Note: A recommendation is that no extra functionality is added to this critical section. It will add latency to interrupts and degrade per-
formance.
The example below shows how to implement sleep management when non-blocking event handling is used.
/* Main loop */
while (1) {
struct gecko_cmd_packet* evt;
CORE_DECLARE_IRQ_STATE;
In some cases, there may be a need for running the Bluetooth event loop inside another event loop in the application. The Bluetooth
stack has a callback mechanism for notifying the application about the demand for updating the Bluetooth stack event listener. This is
enabled by defining a callback function in the Bluetooth configuration struct.
Note: This stack_schedule_callback is called from the interrupt context. It is important NOT to call gecko_peek_event or
gecko_wait_event from this context. The application must set a flag or use another mechanism for enabling the application main loop
to update the Bluetooth stack.
void bluetooth_update()
{
//set notification for application
}
The application uses a different procedure to receive an event with Micrium OS. Instead of calling the function to receive events, the
application needs to pend for a Micrium OS flag. Events can be only received from a single task.
Micrium OS flags in bluetooth_event_flags are used to notify different tasks about the state of the Bluetooth stack. The application
only uses BLUETOOTH_EVENT_FLAG_EVT_WAITING and BLUETOOTH_EVENT_FLAG_EVT_HANDLED.
switch (BGLIB_MSG_ID(bluetooth_evt->header)) {
...
}
After the event is handled, it needs to be freed to allow the next event to be received. This is done by notifying the Bluetooth task by
posting the flag BLUETOOTH_EVENT_FLAG_EVT_HANDLED.
Note: When the application is pending, sleep and power management are automatically handled by Micrium OS rather than by the
application.
It is possible to send Bluetooth commands from multiple Micrium OS tasks. It requires that each task acquires exclusivity before send-
ing the commands and releases it afterward.
The Bluetooth stack provides two functions for convenience. BluetoothPend acquires the Micrium OS mutex and BluetoothPost re-
leases the mutex.
The following code block acquires the mutex for Bluetooth before the Bluetooth command and releases it afterward.
6. Interrupts
Interrupts create events in their respective interrupt handlers, be it radio interrupts or interrupts from IO pins. The events are later pro-
cessed in the main event loop from the message queue. The application should always minimize the processing time within an interrupt
handler, and leave the processing for event callbacks or to the main loop.
In general, the interrupt scheme is according to any event-based programming architecture, but a few unique and important exceptions
apply to the Bluetooth stack:
• BGAPI commands cannot be called from interrupt context.
• Only the gecko_external_signal() function can be called from interrupt context.
• Interrupts must be disabled before calling gecko_sleep_for_ms(...) as shown in the previous code example.
An external event is used to capture all peripheral interrupts as an external signal to be passed to the main event loop and to be pro-
cessed within that loop. The external event interrupt can come from any of the peripheral interrupt sources, for example IOs, compara-
tors, or ADCs, to name a few. The signal bit array is used for notifying the event handler of what external interrupts have been issued.
• The main purpose of the external signal is to trigger an event from the interrupt context to the main event loop.
• The BGAPI event system_external_signal can be generated by calling the void gecko_external_signal(uint32 signals)
function.
• The function gecko_external_signal can be called from the interrupt context.
• The signals parameter of the gecko_external_signal function is passed to the system_external_signal event.
/**
* Main
*/
void main()
{
...
//Event loop
while(1)
{
...
/**
* Handle GPIO interrupts and trigger system_external_signal event
*/
void GPIO_ODD_IRQHandler()
{
static bool radioHalted = false;
6.2 Priorities
It is highly recommended that the radio should have the highest priority interrupts. This is the default configuration, and other interrupts
are handled with lower priority. Default interrupt priorities for radio is 1, for Link Layer the priority is 2, USART interrupts are 3, and other
interrupts have default priority of 4.
If the application needs to disable interrupts, it is recommended that the BASEPRI register is used instead of the PRIMASK register. The
BASEPRI register disables with interrupt priority, whereas PRIMASK disables all interrupts. EMLIB Core can be configured to use the
BASEPRI register, and it can then be used with the CORE_ENTER_ATOMIC() and CORE_EXIT_ATOMIC() macros.
Without RTOS, Link Layer uses PendSV for achieving priority over the application software. With RTOS the Link Layer will not use
PendSV, but Link Layer task will have higher priority over application task. RTOS scheduler will then give priority to Link Layer task
over application task.
The following table describes the three different components within the Bluetooth stack that run in different operating contexts, and their
maximum time to disable interrupts in order for each component to assure connections.
The Bluetooth stack uses some of the Wireless Gecko’s resources, which are not available to the application. The following table lists
the resources and describes their use by the stack. The first four resources (in red) are always used by the Bluetooth stack.
PRS PRS7 PROTIMER RTC synchroni- PRS7 always used by the Bluetooth stack.
zation
Timers RTCC EM2 timings Used for sleep timings. Both channels are always reserved.
The application can only read the RTC value, but cannot write it or use
RTCC.
Radio RADIO Bluetooth Always used and all radio registers are reserved for the Bluetooth stack.
GPIO NCP Host communication. 2 to 6 x I/O pins can be allocated for the NCP usage depending on used
features (UART, RTS/CTS, wake-up and host wake-up).
Optional to use.
Optional to use.
Optional to use.
Optional to use.
CRC GPCRC PS Store Can be used in application, but application should always reconfigure
GPCRC before use, and GPCRC clock must not be disabled in CMU.
Flash MSC PS Store Can be used by application, but MSC must not be disabled.
CRYPTO CRYPTO Bluetooth link encryption The CRYPTO peripheral can only be accessed through the mbedTLS
crypto library, not through any other means.The library should be able to
do the scheduling between the stack and application access.
7.1 Flash
The application and Bluetooth stack are executed from the flash memory. The flash can be split into blocks for the bootloader, the Blue-
tooth AppLoader, application, and non-volatile memory, as shown in the following figure.
• The bootloader is essential to enable Bluetooth stack and application upgradeability. The bootloader has been designed to be fu-
ture-proof for bootloader improvements and feature additions. On devices with separate bootloader flash it is located there.
• The Bluetooth AppLoader provides OTA upgradability for the application. This is an optional feature, but using it requires that the
bootloader is also used.
• PS Store and NVM3 are a non-volatile data stores (NVM), where both the Bluetooth stack and the application can store permanent
data, such as Bluetooth bonding keys, application configuration data, hardware configurations, and so on.
• The application is located between the Bluetooth AppLoader and NVM. The Bluetooth stack is a library that is linked with the appli-
cation. The Bluetooth stack includes the actual Bluetooth firmware, including link layer, GAP, SM, ATT. and GATT layers.
• User data page is used for storing manufacturing tokens. On EFR32BG2X devices it is located at end of main flash.
Figure 7.1. Flash Usage With and Without Separate Bootloader Flash
The following table shows the flash usage for each block. The estimates can vary between use cases, configurations, application re-
sources, or SDK version.
Bootloader 16 16 16 16
Bluetooth AppLoad-
38 42 42 48
er
NVM 4 4 4 24
*soc-empty and soc-thermometer are example applications provided in the Bluetooth SDK. They are compiled with high size optimiza-
tions. GCC uses the -Os flag, and IAR the -Ohz flag.
Bluetooth stack libraries are designed to benefit from the linker's dead code elimination optimization. With this optimization all unused
code will be removed from application.
To fully utilize this optimization feature, it is important not to call any function that is not needed for application. These include all initiali-
zation functions for the Bluetooth stack.
gecko_init() function automatically initializes each stack component. For more selective initialization, gecko_stack_init() must be
used. Then each required stack component is invidually initialized. For more information, see section 4.2 Bluetooth Configuration with
gecko_stack_init().
7.2 Linking
The Bluetooth stack is delivered as a set of library files. The application links the Bluetooth stack libraries with the rest of application.
The linker will then create an ELF-file, which contains the application code and data ready to be loaded into flash.
For generating OTA DFU files, the application's code and data must be linked into their own section in the ELF-file. This is automatically
done with the linker files provided with Bluetooth stack.
Figure 7.2. Sections Defined in the Linker File and Their Placement
The linker file defines two memory areas, one for main flash and one for bootloader flash. If no separate bootloader flash exists, the
linker file reserves some memory from main flash for the bootloader. Bluetooth AppLoader is placed at the beginning of main flash and
the application with all libraries start from the next free flash page.
For more information on the OTA updates and how to enable them, please refer to UG266: Silicon Labs Gecko Bootloader User's
Guide and AN1086: Using the Gecko Bootloader with Silicon Labs Bluetooth Applications.
7.3 RAM
The Bluetooth stack reserves part of the RAM from the Wireless Gecko and leaves the unused RAM for the application.
Bluetooth stack 12 kB
Call stack 2 kB
Heap memory 3 kB
The Bluetooth stack requires at least 12 kB RAM. It includes Bluetooth stack software with low-level radio drivers and the application
programming interface.
The Bluetooth stack uses its own static memory pool for dynamic memory allocation. The size of the allocated memory pool depends
on the number of parallel connections. The number is set with the .bluetooth.max_connections parameter in the gecko_init()
function.
The Bluetooth GATT database uses RAM. The amount of RAM used depends on the user-defined GATT database and cannot be gen-
eralized. All characteristics with write enabled use as much RAM as their length defined. Plus, every attribute in GATT needs a few
bytes of RAM for maintaining the Attribute permissions. Typical RAM usage is approximately 20 to 200 bytes.
The Bluetooth stack requires at least a 1.5 kB call stack to be reserved from RAM. Application developers must allocate RAM for the
application call stack on top of the 1.5 kB required by the stack.
Location of the call stack size definition depends on the compiler and startup files. The default call stack size is 2 kB. This can be over-
ridden by the following command line options:
Location of heap size definition depends on compiler and startup files. Minimum heap size is 3328(0xD00) bytes, which is also the de-
fault value. This can be overridden by the following command line options:
7.4 RTCC
This chapter applies only to EFR32BG1 and EFR32BG12. Other devices have a separate timer for Bluetooth, and RTCC is freely usa-
ble by the application.
The hardware RTCC (Real Time Clock and Calendar) is set to run in counter mode by the Bluetooth stack and is reserved for the
stack's use. The RTC value can, however, be read by the application, but it cannot be written by the application. The RTC value is reset
every time the device boots up.
If the application requires RTCC-like functionality, the following application code can be developed:
1. Build a mechanism to retrieve the current time from an external device such as a smart phone. Some smart phones implement
Bluetooth Time Profile and it can be used to read a time and date value.
2. Convert the time to “seconds since epoch” (for example using mktime from stdlib).
3. Use the Bluetooth stack’s API hardware_get_time() to get seconds elapsed since reset.
4. Calculate the difference between “seconds since epoch” and seconds since reset and store it for example to a PS-key.
5. When you want to get the current calendar time, use hardware_get_time to get the current RTC value, add the value from the
PS-key to it, and then use localtime from stdlib to get current calendar time.
8. Application ELF-file
ELF (Executable and Linkable Format) is a standard file format for executable files. This chapter describes the sections in the ELF file
related to the application and the Bluetooth stack.
Some linkers provide output describing the consumed flash, but what it contins is not obvious. A Bluetooth project might contain a boot-
loader and the Bluetooth AppLoader, and the device might have separate flash for the bootloader. The ELF-file provides exact informa-
tion about RAM and flash usage.
Simplicity Studio provides the GCC toolchain, which contain command line tool objdump. This tool can be used to get section informa-
tion from the ELF-file.
objdump requires input ELF-file. If the parameter -h is used, objdump dumps the section header information.
IAR
Sections:
Idx Name Size VMA LMA File off Algn
0 .text_apploader rw 00008fc0 00004000 00004000 00000034 2**11
CONTENTS, ALLOC, LOAD, READONLY, DATA
1 .text_application us 0001e3d3 0000d000 0000d000 00008ff4 2**11
CONTENTS, ALLOC, LOAD, READONLY, CODE
2 A1 rw 00000800 20000000 20000000 000273c8 2**3
ALLOC
3 P3 rw 00000246 20000800 20000800 000273c8 2**2
ALLOC, CODE
4 P3 ui 00000d00 20000a48 20000a48 000273c8 2**3
ALLOC
5 P3 zi 00002b60 20001748 20001748 000273c8 2**8
.text_application contains the application code and read-only data. Size of the application in this example is 0x1e3d3 in hexadeci-
mal, and 123859 bytes in decimal.
GCC
Sections:
Idx Name Size VMA LMA File off Algn
0 .text_bootloader 00000000 00000000 00000000 000306d0 2**0
CONTENTS
1 .text_apploader 00009000 00004000 00004000 00004000 2**0
CONTENTS, ALLOC, LOAD, READONLY, DATA
2 .text_application 0001e4c4 0000d000 0000d000 0000d000 2**8
CONTENTS, ALLOC, LOAD, READONLY, CODE
3 .text_application_ARM.exidx 00000008 0002b4c4 0002b4c4 0002b4c4 2**2
CONTENTS, ALLOC, LOAD, READONLY, DATA
4 .stack_dummy 00000400 20000000 20000000 000306d0 2**3
CONTENTS
5 .text_application_data 000002d0 20000400 0002b4cc 00030400 2**2
CONTENTS, ALLOC, LOAD, CODE
6 .bss 00002a88 20000700 0002b800 00030700 2**8
ALLOC
7 .heap 00000c00 20003188 20003188 00030ad0 2**3
CONTENTS
.text_bootloader contains the bootloader. In this example it is loaded separately, and the section is empty.
.text_application contains the application code and read-only data. The size of the application in this example is 0x1e3c3 in hexa-
decimal and 124100 bytes in decimal.
9. Documentation
Disclaimer
Silicon Labs intends to provide customers with the latest, accurate, and in-depth documentation of all peripherals and modules available for system and software implementers using or
intending to use the Silicon Labs products. Characterization data, available modules and peripherals, memory sizes and memory addresses refer to each specific device, and "Typical"
parameters provided can and do vary in different applications. Application examples described herein are for illustrative purposes only. Silicon Labs reserves the right to make changes
without further notice to the product information, specifications, and descriptions herein, and does not give warranties as to the accuracy or completeness of the included information.
Without prior notification, Silicon Labs may update product firmware during the manufacturing process for security or reliability reasons. Such changes will not alter the specifications or the
performance of the product. Silicon Labs shall have no liability for the consequences of use of the information supplied in this document. This document does not imply or expressly grant
any license to design or fabricate any integrated circuits. The products are not designed or authorized to be used within any FDA Class III devices, applications for which FDA premarket
approval is required or Life Support Systems without the specific written consent of Silicon Labs. A "Life Support System" is any product or system intended to support or sustain life and/or
health, which, if it fails, can be reasonably expected to result in significant personal injury or death. Silicon Labs products are not designed or authorized for military applications. Silicon
Labs products shall under no circumstances be used in weapons of mass destruction including (but not limited to) nuclear, biological or chemical weapons, or missiles capable of delivering
such weapons. Silicon Labs disclaims all express and implied warranties and shall not be responsible or liable for any injuries or damages related to use of a Silicon Labs product in such
unauthorized applications.
Trademark Information
Silicon Laboratories Inc.® , Silicon Laboratories®, Silicon Labs®, SiLabs® and the Silicon Labs logo®, Bluegiga®, Bluegiga Logo®, Clockbuilder®, CMEMS®, DSPLL®, EFM®, EFM32®,
EFR, Ember®, Energy Micro, Energy Micro logo and combinations thereof, "the world’s most energy friendly microcontrollers", Ember®, EZLink®, EZRadio®, EZRadioPRO®, Gecko®,
ISOmodem®, Precision32®, ProSLIC®, Simplicity Studio®, SiPHY®, Telegesis, the Telegesis Logo®, USBXpress® and others are trademarks or registered trademarks of Silicon Labs.
ARM, CORTEX, Cortex-M3 and THUMB are trademarks or registered trademarks of ARM Holdings. Keil is a registered trademark of ARM Limited. All other products or brand names
mentioned herein are trademarks of their respective holders.
http://www.silabs.com