Bluetooth TX Power Settings#

Introduction#

The default TX power used by the Bluetooth stack is +8 dBm, meaning that all of the advertisement packets and data packets are transmitted with this power level (except if your device has a lower TX power capability). However, this can be changed both in positive and negative direction. The actual TX power is determined by both the user configuration and the actual circumstances. This document discusses how you can configure TX power and how the actual TX power will change.

Global Maximum and Minimum TX Power#

The global maximum TX power can be set with the sl_bt_system_set_tx_power(int16_t min_power, int16_t max_power, int16_t * set_min, int16_t * set_max ) API command. The unit of the TX power is 0.1 dBm. To ensure safe functioning, suspend radio operations for a short time while changing the TX power. For example, to set 2.3 dBm maximum TX power and 0 dBm minimum TX power, use the following commands:

sl_bt_system_halt(1);
gecko_cmd_system_set_tx_power(0, 23, &set_min, &set_max);
sl_bt_system_halt(0);

Note that, although you can set the TX power with 0.1 dBm granularity, the low power PA cannot be set to arbitrary TX levels – there are discrete power levels you can use. The set values are provided by the variables pointed to, by their arguments set_min and set_max. Always check these values because it can be much higher/lower than the TX power you want to set.

The minimum TX power setting has no effect in Bluetooth stack if the LE Power Control (LEPC) is not enabled. LEPC is a new feature introduced in BLE 5.2, which can be used to adjust a connected peer device’s transmit power level based on the received signal strength. The feature is used only in connections and does not affect advertisements. To enable LECP, install the Power Control software component in your project.

However, the application may still use the set_min setting for other purposes than LEPC, e.g., setting the minimum TX power for DTM transmitter test.”

On the other hand, by default, all radio operations use the global maximum TX power provided there are no other constraints. The possible constraints are discussed in the following sections.

TX Power for Data Packets#

Although the Bluetooth standard does not limit TX power, local regulatory bodies (CE, FCC, and so on) can define the maximum TX power that can be used (see: TX Power Limitations for Regulatory Compliance). Different rules apply for different regions. ETSI (European Telecommunications Standards Institute) has the strictest rules regarding the TX power. Therefore, to comply with regulations in all regions, ETSI regulations have to be taken into account.

According to ETSI, the maximum allowed TX power on a Bluetooth connection is +20 dBm if Adaptive Frequency Hopping (AFH) is enabled, and +10 dBm if AFH is not enabled or if AFH is enabled but less than 15 channels are available for use.

AFH can be enabled by installing the AFH software component in your project. For more information, see Adaptive Frequency Hopping. If AFH is enabled, the Bluetooth stack automatically controls the TX power. If 15 or more channels are available, TX power of data packets is set to the global maximum, which cannot be more than +20 dBm. If less than 15 channels are available, TX power is set to the minimum of the global maximum TX power and +10 dBm. If AFH is disabled, TX power is set to the minimum of the global maximum TX power and +10 dBm.

RF Path Compensation#

The TX power set in the stack is the output power of the Power Amplifier (PA). However, your signal may suffer some loss along the RF path, meaning that the actually radiated power is less than the power you set.

Since Bluetooth SDK v2.9, the stack automatically controls the TX power according to the AFH settings. Consequently, it needs to know how much loss your RF path introduces. The RF path loss can be set in the configuration of the Bluetooth Core software component with 0.1 dBm granularity. For example, if you have a 3 dB loss, set the following in the configuration.

RF path compensationRF path compensation

Direct supply power configuration without DC-DC converterDirect supply power configuration without DC-DC converter

Example#

This guide has a related code example, here: Testing TX Power Levels