BLE Powersave#

1. Purpose / Scope#

This application demonstrates how to configure RS9116W EVK in power save profile with Advertising mode.

2. Prerequisites / Setup Requirements#

Before running the application, the user will need the following things to setup.

2.1 Hardware Requirements#

Setup Diagram for Simple Peripheral Power Save Example

2.2 Software Requirements#

  • WiSeConnect SDK

  • Embedded Development Environment

  • Download and install the Silicon Labs EFR Connect App in the Android smart phones for testing BLE applications. Users can also use their choice of BLE apps available in Android/iOS smart phones.

3. Application Build Environment#

3.1 Platform#

The Application can be built and executed on below Host platforms

3.2 Host Interface#

  • By default, the application is configured to use the SPI bus for interfacing between Host platforms and the RS9116W EVK.

  • The SAPI driver provides APIs to enable other host interfaces if SPI is not suitable for your needs.

3.3 Project Configuration#

The Application is provided with the project folder containing Keil and Simplicity Studio project files.

  • Keil Project

    • The Keil project is used to evaluate the application on STM32.

    • Project path: <SDK>/examples/snippets/ble/ble_power_save/projects/ble_power_save-nucleo-f411re.uvprojx

  • Simplicity Studio

    • The Simplicity Studio project is used to evaluate the application on EFR32MG21.

    • Project path: - If the Radio Board is BRD4180A or BRD4181A, then access the path <SDK>/examples/snippets/ble/ble_power_save/projects/ble_power_save-brd4180a-mg21.slsproj - If the Radio Board is BRD4180B or BRD4181B, then access the path <SDK>/examples/snippets/ble/ble_power_save/projects/ble_power_save-brd4180b-mg21.slsproj

      • User can find the Radio Board version as given below

EFR Radio Boards

3.4 Bare Metal Support#

This application supports only bare metal environment. By default, the application project files (Keil and Simplicity Studio) are provided with bare metal configuration.

4. Application Configuration Parameters#

The application can be configured to suit your requirements and development environment. Read through the following sections and make any changes needed.

4.1 Open rsi_ble_config.h file and update/modify following macros

4.1.1 User must update the below parameters

RSI_BLE_LOCAL_NAME refers the name of the WiSeConnect device to appear during scanning by remote devices.

 #define RSI_BLE_LOCAL_NAME			"SILABS_DEVICE"

Address of the device to connect

 #define RSI_BLE_DEV_ADDR "11:11:11:11:11:11"

Remote Device Name to connect

 #define RSI_REMOTE_DEVICE_NAME "SLAVE"

 #define SLAVE_MODE  0
 #define MASTER_MODE 1
 #define DUAL_MODE   2
 

Configure the required mode using the above three macros

 #define BLE_ROLE    SLAVE_MODE

To Enable Power Save

PSP_MODE refers power save profile mode. The WiseConnect device supports following power modes in BTLE,

RSI_ACTIVE (0): In this mode, the module is active and power save is disabled.

RSI_SLEEP_MODE_2 (1): This mode is applicable when the module is in Advertising state as well as in connected state. In this sleep mode, SoC will go to sleep based on GPIO handshake or Message exchange, therefore handshake is required before sending data to the module.

RSI_SLEEP_MODE_8 (8): In this power mode, the module goes to power save when it is in the unassociated state with the remote device. In this sleep mode, SoC will go to sleep based on GPIO handshake or Message exchange, therefore handshake is required before sending the command to the module.

 #define PSP_MODE					RSI_SLEEP_MODE_2

Note: For RSI_SLEEP_MODE_2 and RSI_SLEEP_MODE_8 modes, GPIO or Message based handshake can be selected using RSI_HAND_SHAKE_TYPE macro which is defined in rsi_wlan_config.h
Note:
In this example,user can verify RSI_SLEEP_MODE_2 with Message based handshake. If the user wants to verify other power modes,
the user has to change the application as well as GPIO handshake signals
PSP_TYPE refers power save profile type. The WiseConnect device supports following power save profile types in BTLE mode, RSI_MAX_PSP (0): In this mode, the WiSeConnect device will be in Maximum power save mode. i.e Device will wake up for every DTIM beacon and do data Tx and Rx.

 #define PSP_TYPE                                      RSI_MAX_PSP                    `

Following are the non-configurable macros in the application.

Following are the event numbers for advertising, connection and Disconnection events:

 #define RSI_APP_EVENT_ADV_REPORT         			   0
 #define RSI_APP_EVENT_CONNECTED                       1
 #define RSI_APP_EVENT_DISCONNECTED                    2

BT_GLOBAL_BUFF_LEN refers Number of bytes required by the application and the driver #define BT_GLOBAL_BUFF_LEN 15000 `

4.2 Open rsi_wlan_config.h file and update/modify following macros,

 #define CONCURRENT_MODE                               RSI_DISABLE
 #define RSI_FEATURE_BIT_MAP                           FEAT_SECURITY_OPEN
 #define RSI_TCP_IP_BYPASS                             RSI_DISABLE
 #define RSI_TCP_IP_FEATURE_BIT_MAP                    TCP_IP_FEAT_DHCPV4_CLIENT
 #define RSI_CUSTOM_FEATURE_BIT_MAP                    FEAT_CUSTOM_FEAT_EXTENTION_VALID
 #define RSI_EXT_CUSTOM_FEATURE_BIT_MAP                (EXT_FEAT_384K_MODE|EXT_FEAT_XTAL_CLK_ENABLE | 					EXT_FEAT_LOW_POWER_MODE)
 #define RSI_BAND                                      RSI_BAND_2P4GHZ

RSI_HAND_SHAKE_TYPE is used to select GPIO or Message based handshake in RSI_SLEEP_MODE_2 and RSI_SLEEP_MODE_8 modes.

 #define RSI_HAND_SHAKE_TYPE                           GPIO_BASED

RSI_SELECT_LP_OR_ULP_MODE is used to select low power mode or ultra low power mode. Valid configurations are, RSI_LP_MODE or RSI_ULP_WITH_RAM_RET or RSI_ULP_WITHOUT_RAM_RET

RSI_LP_MODE

In this, the module will be in Low power mode.

RSI_ULP_WITH_RAM_RET

In this, the module will be in Ultra low power mode and it will remember the previous state after issuing power save mode command.

RSI_ULP_WITHOUT_RAM_RET

In this, the module will be in Ultra low power mode and it will not remember the previous state after issuing power save mode command. After wakeup, the module will give CARD READY indication and the user has to issue commands from wireless initialization.

 #define RSI_SELECT_LP_OR_ULP_MODE                     RSI_ULP_WITH_RAM_RET

5. Testing the Application#

User has to follow the below steps for the successful execution of the application.

5.1 Loading the RS9116W Firmware#

Refer Getting started with PC to load the firmware into RS9116W EVK. The firmware binary is located in <SDK>/firmware/

5.2 Building the Application on the Host Platform#

5.2.1 Using STM32#

Refer STM32 Getting Started

  • Open the project <SDK>/examples/snippets/ble/ble_power_save/projects/ble_power_save-nucleo-f411re.uvprojx in Keil IDE.

  • Build and Debug the project

  • Check for the RESET pin: - If RESET pin is connected from STM32 to RS9116W EVK, then user need not press the RESET button on RS9116W EVK before free run. - If RESET pin is not connected from STM32 to RS9116W EVK, then user need to press the RESET button on RS9116W EVK before free run.

  • Free run the project

  • Then continue the common steps from Section 5.3

5.2.2 Using EFX32#

Refer EFx32 Getting Started

  • Import the project from <SDK>/examples/snippets/ble/ble_power_save/projects

  • Select the appropriate .slsproj as per Radio Board type mentioned in Section 3.3

  • Compile and flash the project in to Host MCU

  • Debug the project

  • Check for the RESET pin: - If RESET pin is connected from STM32 to RS9116W EVK, then user need not press the RESET button on RS9116W EVK before free run - If RESET pin is not connected from STM32 to RS9116W EVK, then user need to press the RESET button on RS9116W EVK before free run

  • Free run the project

  • Then continue the common steps from Section 5.3

5.3 Common Steps#

  1. After the program gets executed, the WiSeConnect module would be in Advertising state with configured power save the profile.

  2. The WiseConnect device will go to sleep and wakes up for every advertising interval and goes back to sleep after advertising. Refer the given below image for power save cycle in advertising mode.

Power Save Cycle in Advertising mode

  1. Open an LE App in the Smartphone and do Scan

  2. In the App, WiSeConnect module device will appear with the name configured in the macro RSI_BLE_LOCAL_NAME (Ex: "WLAN_BLE_SIMPLE") or sometimes observed as the WiSeConenct device as the internal name "SILABS_DEVICE".

WiSeConenct device in App

  1. Initiate connection from the mobile App.

  2. After successful connection, user can see the connected state in BLE scanner app and also check the supported services by the WiSeConnect device.

Connected State in BLE Scanner app

  1. After successful connection, module goes to sleep and wakes up for every connection interval. Check the below image for power save cycle after connection.

Power save cycle after connection

  1. After successful program execution, if the Silicon Labs device is configured in SLAVE_MODE , the prints in teraterm looks as shown below.

Prints in Teraterm

  Default configuration of connection interval of Central device (smartphone) is 18 ms. So, the WiSeConnect device will wake up for every 18ms sec and goes     
  back to sleep after advertise.                                                                                                                              
  Above power save profile image capture when it is in the idle state after successful connection. So, the user may not get same profile as shown above image.
  It will vary based on the traffic.