Specifications

Connectivity

Antenna Type
Trace Antenna
Frequency Range (Min)
2402 MHz
Frequency Range (Max)
2480 MHz
Chipset (Wireless)
Nordic nRF54L15 SoC

Packaging

Bulk or Single
Single
Packaging
Cut Tape
Product Type
Embedded Module

Interface

Technology
Bluetooth Core 6.2, Single Mode (BLE), 802.15.4
Interfaces - General
UART, SPI, TWI, ADC, I2S, PWM, TIMER, QDEC. RTC, WDT, NFC A-Tag, TEMP, COMP, LPCOMP

Software

OS/Software
Nordic nRF Connect SDK, Zephyr RTOS
System Architecture
Hostless

Documentation

Browse Datasheets and Product Briefs in our Support & Documentation Center.

Browse 453-00001C Documentation

Distributors

Distributor Part In Stock Region Buy
Mouser Electronics 453-00001C 1999 North America Buy Now
Farnell 453-00001C 169 Europe Buy Now
Farnell 453-00001C 169 Europe Buy Now
RS 453-00001C 82 Europe Buy Now
Future Electronics 453-00001C 0 Europe Buy Now
Future Electronics 453-00001C 0 Asia Buy Now
Arrow Electronics 453-00001C 0 North America Buy Now
Future Electronics 453-00001C 0 North America Buy Now


FAQ

What is the purpose of the hole on the BL54L15 module, and can it be used for mechanical mounting?

The hole on the BL54L15 module is used during manufacturing as part of the routing process when separating the modules from the production panel. It is not intended as a mechanical mounting or retention feature.

 If additional mechanical retention is required, please keep the following in mind:

  • Any material placed in or around that hole should be non-metallic
  • The material should have a dielectric constant close to air (≈1.0)
  • Avoid introducing structures in the antenna keep-out region, as this can impact RF performance

Because the hole is located within the antenna keep-out area, using it for fastening (even with plastic hardware) should be approached with caution due to the potential effect on antenna performance.

Which BL54L15, L15µ, L10 and LM20A peripherals can operate concurrently, and what are the GPIO pin mapping rules?

On the nRF54 family, peripheral instances that share the same ID and base address (e.g., SPIM00, SPIS00, TWIM00, UARTE00, all mapped to the same ID) cannot be used simultaneously. You must disable one peripheral before enabling another on that same ID, specifically clearing the peripheral's ENABLE register.

Here is a breakdown of simultaneous usage, restrictions, and shared resources based on the nRF54L15 architecture:

Peripherals That Cannot Be Used Simultaneously

  • Shared Instance ID Peripherals: Peripherals with the same ID, such as SPI00, SPIM00, SPIS00, TWI00, TWIM00, TWIS00, and UARTE00 (collectively 00), are mutually exclusive. Only one can be active at a time.
  • Pin-Colliding Peripherals: If two peripherals are assigned to the same GPIO pin through the PSEL register, they cannot operate simultaneously.
  • QSPI/SPIM00 Limitations: While sQSPI (soft QSPI) and SPIM00 can often coexist, they cannot share the same pins, and on some configurations, the QSPI CSN pin is shared with the SPIM CSN, preventing simultaneous operation.
  • Radio and High-Speed Peripherals: While high-speed UARTE (up to 4 Mbps) and SPIM (up to 32 MHz) can run simultaneously with other peripherals, extreme bus traffic may impact real-time performance.

Peripherals That Can Be Used Simultaneously

  • Different Instances: You can run multiple instances of similar peripherals simultaneously if they have different IDs (e.g., UARTE20 and UARTE00 can run at the same time, as they are in different power domains).
  • Dedicated Peripherals: Peripherals with unique IDs in the address map (e.g., QSPI and ADC, or Timers and PWM) can generally be used at the same time.
  • VPR Core (FLPR) and Main CPU: The FLPR (Fast Lightweight Peripheral Processor) can handle specific peripherals (like I2C/SPI) in parallel with the main ARM Cortex-M33 processor.
  • DPPI (Distributed Programmable Peripheral Interconnect): You can connect events and tasks between multiple independent peripherals without CPU intervention.

Key Limitations and Rules

  • Power Domains: Peripherals with numeric IDs starting with 2 (e.g., UARTE20) are in the Peripheral domain (16 MHz), while those with 0 (e.g., UARTE00) are in the MCU domain (128 MHz). Mixing them generally allows for concurrent operation.
  • P2 Port Conflict: The Peripheral domain uses dedicated GPIO Port 2 (P2). If multiple peripherals are assigned to the same P2 pins, they will conflict.
  • Switching Rule: To switch between two peripherals sharing an ID:
    • Disable the previously used peripheral.
    • Disable any DPPI channel connections.
    • Clear all bits in the INTEN register.
    • Configure the new peripheral. 

GPIO Pin Mapping