BLE PHY Layer: 1M, 2M, and Coded PHY Explained

<\/script>\n
'; }, get iframeSnippet() { const domain = '{ SITE_DOMAIN }'; const type = '{ embed_type }'; const slug = '{ embed_slug }'; return ''; }, get activeSnippet() { return this.method === 'script' ? this.scriptSnippet : this.iframeSnippet; }, copySnippet() { navigator.clipboard.writeText(this.activeSnippet).then(() => { this.copied = true; setTimeout(() => { this.copied = false; }, 2000); }); } }" @keydown.escape.window="open = false" @click.outside="open = false">

Embed This Widget

Theme


      
    

Widget powered by . Free, no account required.

Choosing the right PHY for your application

| 4 min read

BLE PHY Layer

The Physical Layer (PHY) determines how bits are modulated onto the 2.4 GHz radio. Bluetooth Low Energy offers three PHY modes — 1M, 2M, and Coded — each representing a different trade-off between data rate, range, and power. Selecting the right PHY is one of the highest-leverage decisions in BLE hardware design.

1M PHY

The LE 1M PHY is the baseline mode, defined in Bluetooth 4.0 and supported by every BLE device ever made. It transmits at 1 Megasymbol per second using GFSK modulation with a BT product of 0.5 (moderate spectral shaping).

Effective data throughput with DLE (Data Length Extension) enabled reaches roughly 800 kbps in ideal conditions. Range is typically 10–30 m indoors and up to 100 m outdoors with line-of-sight.

2M PHY

The LE 2M PHY doubles the symbol rate to 2 Msps, halving time-on-air for the same payload. This directly reduces energy per byte, making 2M PHY more power-efficient than 1M when throughput is the bottleneck (e.g., streaming audio, OTA updates).

The trade-off is slightly reduced sensitivity (~2–3 dB) due to the wider symbol bandwidth. In clean indoor environments the difference is negligible; in noisy or multi-wall environments, 1M PHY may edge out 2M in reliability.

Coded PHY

The LE Coded PHY adds Forward Error Correction (FEC) over 1M symbols, trading data rate for sensitivity gain. Two coding schemes exist:

  • S=2 (500 kbps effective): 3 dB sensitivity gain, 2× range in free space
  • S=8 (125 kbps effective): 6 dB sensitivity gain, 4× range in free space

Coded PHY is targeted at building automation, industrial sensors, and asset tracking over distances of 200–1000 m. The mandatory preamble and FEC tail add overhead, so each packet takes 4–8× longer to transmit than 1M PHY — plan your duty cycle and connection interval accordingly.

Data Rate vs Range Comparison

Use the Range Calculator and Power Estimator to model your specific environment.

PHY Symbol Rate Effective Data Rate Relative Range Sensitivity Gain vs 1M BT Version
LE 1M 1 Msps ~800 kbps 0 dB (baseline) 4.0+
LE 2M 2 Msps ~1400 kbps 0.7× −2 to −3 dB 5.0+
LE Coded S=2 1 Msps (FEC) ~400 kbps 1.4× +3 dB 5.0+
LE Coded S=8 1 Msps (FEC) ~100 kbps +6 dB 5.0+

The link budget is the sum of all gains and losses in the radio path:

Link Budget (dB) = TX Power − Cable/Connector Loss + TX Antenna Gain
                   + RX Antenna Gain − Path Loss − Fade Margin

RX Sensitivity defines the minimum detectable signal power. Typical BLE values range from −90 dBm (1M) to −103 dBm (Coded S=8). TX Power is configurable from −40 dBm (minimal range, minimal current) to +20 dBm (maximum range, high current).

RSSI readings at the receiver reflect the received signal strength in dBm. Subtract from sensitivity to find the fade margin — anything above 10 dB margin is considered robust.

PHY Selection Strategy

PHY negotiation uses the LL_PHY_REQ / LL_PHY_RSP LL control procedure (BT 5.0+). Both peers must support the PHY for it to be used; if the central requests 2M but the peripheral only supports 1M, the link stays at 1M.

Guidelines by application:

Application Recommended PHY Reason
OTA firmware update 2M Minimize transfer time and energy
Heart rate / low-rate sensor 1M Universal compatibility
Building sensor, 50–200 m Coded S=2 Extended range, moderate rate
Sub-GHz substitute, 200–1000 m Coded S=8 Maximum range
LC3 codec and Auracast." data-category="LE Audio">LE Audio (BIS/CIS) 2M Low latency, high throughput

Frequently Asked Questions

Yes, our guides range from beginner introductions to advanced topics. Each guide indicates its difficulty level and prerequisites so you can find the right starting point.