Skip to content

IKEA TRÅDFRI modules

Support for the IKEA TRÅDFRI modules

Overview

The IKEA TRÅDFRI is a small board found in different IKEA TRÅDFRI products. The board contains an EFR32 microcontroller and a 2MBit SPI NOR Flash.

More information about the module can be found on this GitHub page.

Hardware

MCUEFR32MG1P132F256GM32
FamilyARM Cortex-M4F
VendorSilicon Labs
Vendor FamilyEFR32 Mighty Gecko 1P
RAM32.0 KiB (1.0 KiB reserved)
Flash256.0 KiB
EEPROMno
Frequencyup to 38.4 MHz
FPUyes
MPUyes
DMA12 channels
Timers2x 16-bit + 1x 16-bit (low power)
ADCs12-bit ADC
UARTs2x USART, 1x LEUART
SPIs2x USART
I2Cs1x
Vcc1.85 V - 3.8 V
DatasheetDatasheet
ManualManual

Module versions

There are currently two types of modules available. The older module is labeled ICC-1 and the newer one ICC-A-1. The main difference, is that pin PF3 is now used to enable the SPI NOR Flash, and not exposed anymore.

Pinout

Pin 1 is on the top-left side with only 6 contacts.

PINPIN
16RES
15PF3
PA0114PF2
PA1213PF1
PB12312PF0
PB13411PC11
GND510PC10
3V369PB14
8PB15
7GND

Note: On the ICC-A-1 module, PF3 is not exposed anymore.

Peripheral mapping

PeripheralNumberHardwarePinsComments
ADC0ADC0CHAN0: internal temperaturePorts are fixed, 14/16-bit resolution not supported
HWCRYPTOAES128/AES256, SHA1, SHA256
RTTRTCC1 Hz interval. Either RTT or RTC (see below)
RTCRTCC1 Hz interval. Either RTC or RTT (see below)
SPI0USART1MOSI: PD15, MISO: PD14, CLK: PD13
Timer0TIMER0 + TIMER1TIMER0 is used as prescaler (must be adjacent)
1LETIMER0
UART0USART0RX: PB15, TX: PB14Default STDIO output
1LEUART0RX: PB15, TX: PB14Baud rate limited (see below)

User interface

PeripheralMapped toPinComments
LEDLED0PB13
LED1PA1

Implementation Status

DeviceIDSupportedComments
MCUEFR32MG1PyesPower modes supported
Low-level driverADCyes
Flashyes
GPIOyesInterrupts are shared across pins (see reference manual)
HW Cryptoyes
I2Cyes
PWMyes
RTCCyesAs RTT or RTC
SPIpartiallyOnly master mode
Timeryes
UARTyesUSART is shared with SPI. LEUART baud rate limited (see below)
SPI NOR FlashIS25LQ020Byes2MBit flash. Can be used with the MTD API.

Board configuration

UART selection

By default the UART peripheral is used for the TX/RX pins, however the pinout is compatible with LEUART also. You can switch from UART to LEUART by compiling with EFM32_USE_LEUART=1.

Note: LEUART is not working on the ICC-1 module.

Clock selection

There are several clock sources that are available for the different peripherals. You are advised to read AN0004.1 to get familiar with the different clocks.

SourceInternalSpeedComments
HFRCOYes19 MHzEnabled during startup, changeable
HFXONo38.4 MHz
LFRCOYes32.768 kHz
ULFRCONo1 kHzNot very reliable as a time source

The sources can be used to clock following branches:

BranchSourcesComments
HFHFRCO, HFXOCore, peripherals
LFALFRCO, LFXOLow-power timers
LFBLFRCO, LFXO, CORELEDIV2Low-power UART
LFELFRCO, LFXOReal-time Clock and Calendar

CORELEDIV2 is a source that depends on the clock source that powers the core. It is divided by 2 or 4 to not exceed maximum clock frequencies (EMLIB takes care of this).

The frequencies mentioned in the tables above are specific for this starter kit.

It is important that the clock speeds are known to the code, for proper calculations of speeds and baud rates. If the HFXO or LFXO are different from the speeds above, ensure to pass EFM32_HFXO_FREQ=freq_in_hz and EFM32_LFXO_FREQ=freq_in_hz to your compiler.

You can override the branch’s clock source by adding CLOCK_LFA=source to your compiler defines, e.g. CLOCK_LFA=cmuSelect_LFRCO.

Low-power peripherals

The low-power UART is capable of providing an UART peripheral using a low-speed clock. When the LFB clock source is the LFRCO or LFXO, it can still be used in EM2. However, this limits the baud rate to 9600 baud. If a higher baud rate is desired, set the clock source to CORELEDIV2.

Note: peripheral mappings in your board definitions will not be affected by this setting. Ensure you do not refer to any low-power peripherals.

RTC or RTT

RIOT-OS has support for Real-Time Tickers and Real-Time Clocks.

However, this board MCU family has support for a 32-bit Real-Time Clock and Calendar, which can be configured in ticker mode or calendar mode. Therefore, only one of both peripherals can be enabled at the same time.

Configured at 1 Hz interval, the RTCC will overflow each 136 years.

Hardware crypto

This MCU is equipped with a hardware-accelerated crypto peripheral that can speed up AES128, AES256, SHA1, SHA256 and several other cryptographic computations.

A peripheral driver interface is proposed, but not yet implemented.

Usage of EMLIB

This port makes uses of EMLIB by Silicon Labs to abstract peripheral registers. While some overhead is to be expected, it ensures proper setup of devices, provides chip errata and simplifies development. The exact overhead depends on the application and peripheral usage, but the largest overhead is expected during peripheral setup. A lot of read/write/get/set methods are implemented as inline methods or macros (which have no overhead).

Another advantage of EMLIB are the included assertions. These assertions ensure that peripherals are used properly. To enable this, pass DEBUG_EFM to your compiler.

Pin locations

The EFM32 platform supports peripherals to be mapped to different pins (predefined locations). The definitions in periph_conf.h mostly consist of a location number and the actual pins. The actual pins are required to configure the pins via GPIO driver, while the location is used to map the peripheral to these pins.

In other words, these definitions must match. Refer to the data sheet for more information.

This MCU has extended pin mapping support. Each pin of a peripheral can be connected separately to one of the predefined pins for that peripheral.

Flashing the device

To flash, SEGGER JLink is required.

Flashing is supported by RIOT-OS using the command below:

make flash

To run the GDB debugger, use the command:

make debug

Or, to connect with your own debugger:

make debug-server

Some boards have (limited) support for emulation, which can be started with:

make emulate

Supported Toolchains

For using the Silicon Labs STK3600 starter kit we strongly recommend the usage of the GNU Tools for ARM Embedded Processors toolchain.

License information

Silicon Labs’ EMLIB: zlib-style license (permits distribution of source).