Introduction to Low Power Mode in Bluetooth® Low Energy Scenarios

[中文]

This section introduces clock source selection in low power modes for Bluetooth Low Energy (Bluetooth LE), along with common related issues.

Clock Source Selection in Low Power Mode

According to the Bluetooth specification, the sleep clock accuracy must be within 500 PPM. Make sure the clock source selected for Bluetooth LE low power mode meets this requirement. Otherwise, Bluetooth LE may not perform normally and can cause a series of problems, such as ACL connection establishment failure or ACL connection timeout.

Selecting Main XTAL

To select the main XTAL as the Bluetooth LE internal clock source, configure the following option:

CONFIG_BT_LE_LP_CLK_SRC = Use main XTAL as RTC clock source (CONFIG_BT_LE_LP_CLK_SRC_MAIN_XTAL)

When this is selected, the main XTAL remains powered on during light-sleep, resulting in higher current consumption. Please refer to Power Save README for the typical current consumption in light-sleep using XTAL versus a 32 kHz external crystal.

Selecting 32 kHz External Crystal

To use a 32 kHz external crystal as the Bluetooth LE internal clock source, configure the following options:

Configuration Path 1:

CONFIG_BT_LE_LP_CLK_SRC = Use system RTC slow clock source (CONFIG_BT_LE_LP_CLK_SRC_DEFAULT)

Configuration Path 2:

CONFIG_RTC_CLK_SRC = External 32 kHz crystal (CONFIG_RTC_CLK_SRC_EXT_CRYS)

Note: Even if 32 kHz is selected in menuconfig, the system will fall back to the main XTAL if the external crystal is not detected during Bluetooth LE initialization. This may lead to unexpected current consumption in light-sleep mode.

Selecting 136 kHz RC Oscillator

To use a 136 kHz internal RC oscillator as the Bluetooth LE internal clock source, configure the following options:

Configuration Path 1:

CONFIG_BT_LE_LP_CLK_SRC = Use system RTC slow clock source (CONFIG_BT_LE_LP_CLK_SRC_DEFAULT)

Configuration Path 2:

CONFIG_RTC_CLK_SRC = Internal 136 kHz RC oscillator (CONFIG_RTC_CLK_SRC_INT_RC)

If low current consumption is required but there is no access to the External 32 kHz Crystal, this clock source is recommended. However, this clock source has a sleep clock accuracy exceeding 500 PPM, which is only supported when pairing with another ESP chip. For non-ESP peer devices, the following Bluetooth LE features are not supported:

  1. Central role of Connection

  2. Advertiser of Periodic Advertising

If the peer device also uses 136 kHz RC as the clock source, the following configuration should be set:

Configuration Path:

Note: Using the 136 kHz RC oscillator may occasionally cause issues such as connection establishment failures or connection timeouts.

How to Check the Current Clock Source Used by Bluetooth LE

You can check the current Bluetooth LE clock source from the initialization logs:

Bluetooth LE Initialization Logs and Clock Sources

Log Message

Clock Source

Using main XTAL as clock source

Main XTAL

Using 136 kHz RC as clock source

Internal 136 kHz RC oscillator

Using external 32.768 kHz crystal as clock source

External 32 kHz crystal

Using external 32.768 kHz oscillator at 32K_XP pin as clock source

External 32 kHz oscillator at 32K_XP pin

FAQ

1. Bluetooth LE ACL Connection Fails or Disconnects in Low Power Mode

As explained in the clock source selection section above, when ACL connections fail to establish or unexpectedly disconnect in low power mode, first verify whether the current clock source meets Bluetooth LE accuracy requirements.

2. Measured light-sleep Current Higher Than Expected

As described in the clock source selection section above, if the main XTAL is used as the clock source, it remains powered on during light-sleep, resulting in higher current consumption than other clock sources. The average current may vary depending on the specific application, Bluetooth LE configuration, and the duration spent in light-sleep. Some applications may have higher average current because Bluetooth LE is active for a larger proportion of the time transmitting and receiving.

3. Unable to Enter light-sleep Mode

If Auto light-sleep is enabled but the device fails to enter light-sleep, it's usually due to insufficient IDLE time, which prevents the automatic entry conditions from being met. This can be caused by excessive logging or Bluetooth LE configurations that reduce IDLE time, such as continuous scanning.