EFR32xG27 Dev Kit (xG27-DK2602A)

Silicon Labs xG27-DK2602A is a Dev Kit using the EFR32BG27 SoC. The kit consists of the EFR32BG27 +8 dBm Dev Kit Board (BRD2602A).

Hardware

  • EFR32BG27 Blue Gecko Wireless SoC with up to 76.8 MHz operating frequency

  • ARM® Cortex® M33 core with 64 kB RAM and 768 kB Flash

  • Macronix ultra low power 8-Mbit SPI flash (MX25R8035F)

  • 2.4 GHz ceramic antenna for wireless transmission

  • Silicon Labs Si7021 relative humidity and temperature sensor

  • Vishay VEML6035 low power, high sensitivity ambient light Sensor

  • Silicon Labs Si7210 hall effect sensor

  • TDK InvenSense ICM-20689 6-axis inertial sensor

  • Pair of PDM microphones

  • One LED and one push button

  • Power enable signals and isolation switches for ultra low power operation

  • On-board SEGGER J-Link debugger for easy programming and debugging, which includes a USB virtual COM port and Packet Trace Interface (PTI)

  • Mini Simplicity connector for access to energy profiling and advanced wireless network debugging

  • Breakout pads for GPIO access and connection to external hardware

  • Reset button

  • CR2032 coin cell holder and external battery connector

For more information, refer to these documents:

Supported Features

The xg27_dk2602a board supports the hardware features listed below.

on-chip / on-board
Feature integrated in the SoC / present on the board.
2 / 2
Number of instances that are enabled / disabled.
Click on the label to see the first instance of this feature in the board/SoC DTS files.
vnd,foo
Compatible string for the Devicetree binding matching the feature.
Click on the link to view the binding documentation.

xg27_dk2602a/efr32bg27c140f768im40 target

Type

Location

Description

Compatible

CPU

on-chip

ARM Cortex-M33 CPU1

arm,cortex-m33

ADC

on-chip

Silicon Labs Gecko Family IADC1

silabs,gecko-iadc

Bluetooth

on-chip

Bluetooth HCI on Silabs boards1

silabs,bt-hci-efr32

Clock control

on-chip

Silicon Labs Series 2+ clock control node1

silabs,series-clock

on-chip

Generic fixed-rate clock provider3

fixed-clock

on-chip

Generic fixed-rate clock provider1

silabs,hfxo

on-chip

Silicon Labs LFXO peripheral (low-frequency crystal oscillator)1

silabs,series2-lfxo

on-chip

Silicon Labs HFRCODPLL peripheral (high-frequency RC oscillator with digital phase-locked loop)1

silabs,series2-hfrcodpll

on-chip

Silicon Labs LFRCO peripheral (low-frequency RC oscillator)1

silabs,series2-lfrco

on-chip

Generic fixed factor clock provider17

fixed-factor-clock

Comparator

on-chip

Silabs ACMP (Analog Comparator)1

silabs,acmp

DMA

on-chip

Silabs LDMA controller1

silabs,ldma

Flash controller

on-chip

Silicon Labs Series 2 flash controller1

silabs,series2-flash-controller

GPIO & Headers

on-chip

SiLabs Gecko GPIO1

silabs,gecko-gpio

on-chip

SiLabs Gecko GPIO Port3 1

silabs,gecko-gpio-port

I2C

on-chip

Silabs Gecko I2C1 1

silabs,gecko-i2c

Input

on-board

Group of GPIO-bound input keys1

gpio-keys

Interrupt controller

on-chip

ARMv8-M NVIC (Nested Vectored Interrupt Controller)1

arm,v8m-nvic

LED

on-board

Group of GPIO-controlled LEDs1

gpio-leds

Miscellaneous

on-board

GPIO Wake Up Trigger for EFR32MG241

silabs,gecko-wake-up-trigger

MTD

on-chip

Flash node1

soc-nv-flash

on-board

Fixed partitions of a flash (or other non-volatile storage) memory1

fixed-partitions

on-board

Properties supporting Zephyr spi-nor flash driver (over the Zephyr SPI API) control of serial flash memories using the standard M25P80-based command set1

jedec,spi-nor

Networking

on-chip

Silicon Labs Series 2 radio interface1

silabs,series2-radio

Pin control

on-chip

The Silabs pin controller is a singleton node responsible for controlling pin function selection and pin properties1

silabs,dbus-pinctrl

Regulator

on-chip

Silicon Labs Series 2 DC-DC converter1

silabs,series2-dcdc

on-board

Fixed voltage regulators3

regulator-fixed

RNG

on-chip

GECKO TRNG (True Random Number Generator)1

silabs,gecko-trng

RTC

on-chip

Silabs Gecko Sleep Timer (Real-Time Counter)1

silabs,gecko-stimer

Sensors

on-board

Si7210 hall effect magnetic position and temperature sensor1

silabs,si7210

Serial controller

on-chip

Silabs USART UART1

silabs,usart-uart

SPI

on-chip

Silabs USART SPI1

silabs,usart-spi

SRAM

on-chip

Generic on-chip SRAM description1

mmio-sram

Timer

on-chip

ARMv8-M System Tick1

arm,armv8m-systick

on-chip

SiLabs Gecko BURTC timer1

silabs,gecko-burtc

Watchdog

on-chip

Silicon Labs Gecko Family Watchdog driver1

silabs,gecko-wdog

Flashing

The xG27 Dev Kit includes an embedded J-Link adapter built around EFM32GG12 microcontroller (not user-programmable). The adapter provides:

  • SWD interface to EFR32BG27 for flashing and debugging.

  • SWO trace interface to EFR32BG27 for tracing.

  • UART interface to EFR32BG27 for console access.

  • A USB connection to the host computer, which exposes CDC-ACM Serial Port endpoints for access to the console UART interface and proprietary J-Link endpoints for access to the SWD and SWO interfaces.

UART functionality of the adapter is accessible via standard CDC-ACM USB driver present in most desktop operating systems and any standard serial port terminal program e.g. picocom.

SWD and SWO functionality is accessible via Simplicity Commander.

The simplest way to flash the board is by using West, which runs Simplicity Commander in unattended mode and passes all the necessary arguments to it.

  • If Simplicity Commander is installed in the system and the directory in which commander executable is located is present in the PATH environment variable:

    west flash
    
  • Otherwise, one should specify full path to the commander executable:

    west flash --commander <path_to_commander_directory>/commander
    
  • In case several J-Link adapters are connected, you must specify serial number of the adapter which should be used for flashing:

    west flash --dev-id <J-Link serial number>
    

Programming and Debugging

The sample application Hello World is used for this example. Build the Zephyr kernel and application:

# From the root of the zephyr repository
west build -b xg27_dk2602a samples/hello_world

Connect your device to your host computer using the USB port and you should see a USB connection. Use west’s flash command

Open a serial terminal (minicom, putty, etc.) with the following settings:

  • Speed: 115200

  • Data: 8 bits

  • Parity: None

  • Stop bits: 1

Reset the board and you should be able to see on the corresponding Serial Port the following message:

Hello World! xg27_dk2602a