Loading...
Searching...
No Matches
Boards

Board specific definitions and implementations More...

Detailed Description

Board specific definitions and implementations

The boards module contains all definitions and implementations that are specific to a certain board. Generally, boards consist of a fixed configuration of a controller and some external devices such as sensors or radios. All aspects concerning configuration of GPIO pins, MCU clock and device drivers should go into this module.

Board Selection Guide

There is no single best board to buy for use with RIOT, as hardware design involves many trade-offs. The challenge is to clearly assess the use case and collect the requirements and to find the best match for those.

With this in mind, it is still possible to give some hints and recommendations:

  1. During Development:
    • An integrated programmer/debugger is immensely useful. At the very least a standard JTAG/SWD connector for quick and fool-proof connection is required
    • If possible, pick an MCU with more RAM and flash than your target board. This allows to spend the excess in memory for debug features such as utility modules, verbose assert messages, etc. during development
    • Standard connectors such as Arduino Headers, or Grove, STEMMA, STEMMA QT, QUIIC connectors etc. make hardware prototyping easier
  2. Final Product:
    • An integrated programmer/debugger is a waste of resources (money, power, space, ...)
    • ...

Popular Boards

Board Use Case Performance Integrated Debugger Integrated Networking Native USB Arduino Headers Other Connectors Integrated Sensors/... Breadboard Friendly Costs Remarks
Arduino Due Education ++ +++ (Uno, Mega, ISP) - (1 LED) + o Better buy the nrf52840dk
Arduino Mega 2560 You have them anyway -- +++ (Uno, Mega, ISP) - (1 LED) + -- Better buy the nrf52840dk
Arduino Uno You have them anyway --- ++ (Uno, ISP) - (1 LED) + -- You like pain, don't you?
STM32 Nucleo-32 Development -/o/+/++ o (Nano) Custom o (1 button, 1 LED) + ++ Good bang for the buck
STM32 Nucleo-64 Development o/+/++ + (Uno) ST Morpho Headers o (1 button, 1 LED) + ++ Good bang for the buck
STM32 Nucleo-144 Development +/++/+++ (✔) (some have Ethernet) ++ (Uno, Mega) ST Morpho Headers + (1 button, 3 LEDs) + ++ Good bang for the buck
ESP32-Ethernet-Kit Development +++ ✔ (WiFi, BLE, Ethernet, custom) Custom - (1 button) + o Requires proprietary software
Generic ESP32-WROOM-32 boards Prototyping +++ ✔ (WiFi, BLE, custom) Custom - (1 button) +++ +++ Requires proprietary software
BBC micro:bit v2 Education ++ ✔ (802.15.4, BLE, custom) micro:bit edge connector +++ (6 buttons, LED matrix, mic, speaker, IMO) -- ++ Good education board
nRF52840 DK Development ++ ✔ (802.15.4, BLE, custom) +++(Uno, Mega) Custom + (4 buttons, 4 LEDs) + + Good wireless dev board
Adafruit Feather nRF52840 Sense Prototyping/Education ++ ✔ (802.15.4, BLE, custom) Adafruit Feather ++ (orientation, air parameters, light/gestures) +++ + used in inetrg exercises
nRF52840-Dongle Prototyping ++ ✔ (802.15.4, BLE, custom) Custom o (1 button, 4 LEDs) ++ ++ Excellent border router
STM32 Nucleo-WL55JC Development ++ ✔ (LoRa) + (Uno) ST Morpho Headers + (3 buttons, 3 LEDs) + ++ Good bang for the buck
PineTime Gadget ++ ✔ (BLE) +++ (LCD, button, touch screen, IMU, flash, ...) --- +++ Buy two: One with SWD access
Atmel SAM R21 Xplained Pro Development + ✔ (802.15.4) XPRO Expansion Header o (1 button, 1 LED) + -- Quite expensive
Microchip SAM R34 Xplained Pro Development ++ ✔ (LoRa) XPRO Expansion Header o (1 button, 2 LEDs) + --- Got a spare kidney to sell?
WeAct-F411CE board Prototyping ++ Custom + (1 button, 1 LED, SPI flash) +++ +++ Excellent bang for the buck
Note
Only boards with mature RIOT support and decent documentation qualify for above list

This list was last updated in April 2024

Notes on Arduino Compatibility

Guide to board pinouts

The following are the steps to take to locate specific pinouts on boards. This is useful when connecting external hardware to RIOT supported boards.

  1. Check the board documentation to see if the pinout is available
  2. If the pinout is not available or up to date check the following:
    • boards/<BOARD>/include/periph_conf.h for board specific peripherals such as UART or SPI pins
    • boards/<BOARD>/include/board.h for GPIO specific pins such as LED0 or BTN0
    • boards/common/<COMMON_BOARD_OR_CPU>/include/periph_conf_common.h for shared pins that are the same for many different boards (board_common.h or others will be available too)
    • boards/common/<COMMON_BOARD_OR_CPU>/include/<PERIPH_DECLARATION> also may contain specific periphirals such as PERIPH_DECLARATION = cfg_i2c1_pb8_pb9.h which indicates I2C pins are on pb8 and pb9
  3. Once the needed pins are determined with either a port where PORTA = PORT_A = PA = 0 or PORTB = PORT_B = PB = 1 and pin number, such as PA, 1, correlate that to the board (the board may either have the designators or search online to find which GPIO corresponds to physical location on the board)
  4. Match the GPIO with the specific pin and connect the wires

Examples of finding pinouts

The following will be different examples of how to find pinouts

Finding pins of the I2C device 0 on samr21-xpro

  1. The documentation says I2C is supported but does not say the pinout
  2. Checking the pinout in boards/samr21-xpro/include/periph_conf.h the scl_pin = GPIO_PIN(PA, 17) and the sda_pin = GPIO_PIN(PA, 16)
  3. Since the board has the GPIO port and pin printed on the board the physical location is PA16 and PA17

Finding pins of the UART device 1 on nucleo-f103rb

The dev number is only the location in the array and does not mean the number of the peripheral

  1. The documentation says UART is supported but does not say the pinout
  2. Checking the pinout in boards/nucleo-f103rb/include/periph_conf.h the rx_pin = GPIO_PIN(PORT_A, 10), the tx_pin = GPIO_PIN(PORT_A, 9) and the dev = USART1, though device 1 can equal any USARTn number
  3. Since the board does not have information on where these pins are physically located it is recommended to search online for that board
  4. After locating the physical layout the rx_pin can be found on CN9-1 using either PA_10 or UART1_RX and the tx_pin can be found on CN5-1 using either PA_9 or UART1_TX, it is recommended to use the GPIO pin as sometimes the peripheral may be using an alternate pin

Topics

 ACD52832
 Support for the aconno™ ACD52832
 
 ATmega common
 Shared files and configuration for ATmega-based boards
 
 ATmega328p Xplained Mini
 Support for using the ATmega328p Xplained Mini board
 
 ATxmega common
 Shared files and configuration for ATxmega-based boards
 
 ATxmega-A1 Xplained board
 Support for the ATxmega-A1 Xplained board
 
 ATxmega-A1U Xplained Pro board
 Support for the ATxmega-A1U Xplained Pro board
 
 ATxmega-A3BU Xplained board
 Support for the ATxmega-A3BU Xplained board
 
 Acmesystems YARM board
 Support for the Acmesystems YARM board.
 
 Adafruit Clue
 Support for the Adafruit Clue
 
 Adafruit Feather M0
 Support for the Adafruit Feather M0.
 
 Adafruit Feather M0 LoRa
 Support for the Adafruit Feather M0 LoRa.
 
 Adafruit Feather M0 WiFi
 Support for the Adafruit Feather M0 WiFi.
 
 Adafruit Feather nRF52840 Express
 Support for the Adafruit Feather nRF52840 Express
 
 Adafruit Feather nRF52840 Sense
 Support for the Adafruit Feather nRF52840 Sense
 
 Adafruit Grand Central M4 Express
 Support for the Adafruit Grand Central M4 Express
 
 Adafruit Metro M4 Express
 Support for the Adafruit Metro M4 Express
 
 Adafruit PyBadge
 Support for the Adafruit PyBadge board.
 
 Adafruit-Itsybitsy-M4
 Support for the Adafruit-Itsybitsy-M4
 
 Adafruit-Itsybitsy-nRF52
 Support for the Adafruit-Itsybitsy-nRF52
 
 Airfy Beacon
 Support for the Airfy Beacon board
 
 Alientek Pandora
 Support for the Alientek Pandora board
 
 Arduino Due
 Support for the Arduino Due board
 
 Arduino Duemilanove
 Support for the Arduino Duemilanove board
 
 Arduino Leonardo
 Support for the Arduino Leonardo board
 
 Arduino MKR WAN 1300
 Support for the Arduino MKR WAN 1300 board.
 
 Arduino MKR1000
 Support for the Arduino MKR1000 board.
 
 Arduino MKRFOX1200
 Support for the Arduino MKRFOX1200 board.
 
 Arduino MKRZERO
 Support for the Arduino MKRZERO board.
 
 Arduino Mega 2560
 Support for the Arduino Mega 2560 board
 
 Arduino Nano
 Support for the Arduino Nano board
 
 Arduino Nano 33 BLE
 Support for the Arduino Nano 33 BLE
 
 Arduino Nano 33 BLE sense
 Support for the Arduino Nano 33 BLE Sense
 
 Arduino Nano 33 IoT
 Support for the Arduino Nano 33 IoT board.
 
 Arduino Uno
 Support for the Arduino Uno board
 
 Arduino Zero
 Support for the Arduino Zero board.
 
 Atmega256RFR2 Xplained Pro
 Support for the Atmega256RFR2 Xplained Pro board
 
 Atmega256RFR2 rss2
 Support for the Radio Sensors Atmega256RFR2 rss2 board
 
 Atmel SAM D10 Xplained Mini
 Support for the Atmel SAM D10 Xplained Mini board.
 
 Atmel SAM D20 Xplained Pro
 Support for the Atmel SAM D20 Xplained Pro board.
 
 Atmel SAM D21 Xplained Pro
 Support for the Atmel SAM D21 Xplained Pro board.
 
 Atmel SAM L21 Xplained Pro
 Support for the Atmel SAM L21 Xplained Pro board.
 
 Atmel SAM R21 Xplained Pro
 Support for the Atmel SAM R21 Xplained Pro board.
 
 Atmel SAM R30 Xplained Pro
 Support for the Atmel SAM R30 Xplained Pro board.
 
 Avsextrem
 Support for the Avsextrem board
 
 BBC micro:bit
 Support for the BBC micro:bit
 
 BBC micro:bit v2
 Support for the BBC micro:bit v2
 
 BastWAN board
 Support for the BASTWAN SAM R34 board.
 
 Blackpill STM32F103C8 board
 Support for the stm32f103c8 based blackpill board.
 
 Blackpill STM32F103CB board (128KiB flash)
 Support for the stm32f103c8 based blackpill board.
 
 Bluepill STM32F103C8 board
 Support for the stm32f103c8 based bluepill board.
 
 Bluepill STM32F103CB board (128KiB flash)
 Support for the stm32f103cb based bluepill board.
 
 CC2538DK
 Support for the Texas Instruments CC2538DK board.
 
 CC2650STK
 Support for the SimpleLink™ CC2650 sensor tag
 
 Calliope mini
 Support for the Calliope mini
 
 Common Board Groups
 Common definitions and implementations for board groups
 
 Decawave DWM1001
 Support for the Decawave DWM1001 development board
 
 Dragino LSN50 LoRa Sensor Node
 Support for the Dragino LSN50 LoRa Sensor Node
 
 E104-BT5010A Test Board
 Support for the Ebyte E104-BT5010A Test Board (nRF52810)
 
 E104-BT5011A Test Board
 Support for the Ebyte E104-BT5011A Test Board (nRF52811)
 
 EK-LM4F120XL
 Support for the Stellaris Launchpad LM4F120 board
 
 ESP32 Boards
 This group of boards contains the documentation of ESP32 boards.
 
 ESP32-C3 Boards
 This group of boards contains the documentation of ESP32-C3 boards.
 
 ESP32-S2 Boards
 This group of boards contains the documentation of ESP32-S2 boards.
 
 ESP32-S3 Boards
 This group of boards contains the documentation of ESP32-S3 boards.
 
 ESP8266 Boards
 This group of boards contains the documentation defined ESP8266 boards.
 
 Ebyte E180-ZG120B-TB Test Board
 Support for Ebyte E180-ZG120B-TB Test Board
 
 Eistec Mulle
 Support for Eistec Mulle IoT boards
 
 F4VI1
 Support for the F4VI1 board
 
 Firefly Board
 Support for the Firefly board
 
 Freescale FRDM-KW41Z Board
 Support for the FRDM-KW41Z
 
 GBA
 Support for the GBA
 
 GD32VF103C-START
 Support for the GD32VF103C-START board
 
 Generic CC2538-CC2592-DK Board
 Support for the 3rd party CC2538-CC2592-DK board
 
 HamiltonIoT Hamilton
 Support for the HamiltonIoT Hamilton board.
 
 IKEA TRÅDFRI modules
 Support for the IKEA TRÅDFRI modules
 
 IoT-LAB A8 M3 open node
 Support for iotlab-m3 board.
 
 IoT-LAB M3 open node
 Support for the iotlab-m3 board
 
 LimiFrog Version 1
 Support for the limifrog-v1 board
 
 LoRa-E5 Development Board - STM32WLE5JC
 Support for the LoRa-E5 Development Board - STM32WLE5JC.
 
 Lobaro Lorabox
 Support for the Lobaro LoraBox with stm32l151cb-a
 
 MCB2388 Evaluation Board
 Support for the MCB2388 Evaluation Board
 
 MSB-430
 Support for the ScatterWeb Modular Sensor Board 430
 
 MSB-430H
 Support for the ScatterWeb MSB-430H board
 
 MSB-A2
 Support for the ScatterWeb MSB-A2 board
 
 MSB-IoT
 Support for the MSB-IoT board
 
 Mega1284P-Xplained
 Support for the Mega1284P-Xplained board.
 
 Microchip SAM E51 Curiosity Nano
 Support for the Microchip SAM E51 Curiosity Nano board.
 
 Microchip SAM E54 Xplained Pro
 Support for the Microchip SAM E54 Xplained Pro board.
 
 Microchip SAM R34 Xplained Pro
 Support for the Microchip SAM R34 Xplained Pro and WLR089 Xplained Pro
 
 Microchip SAML10 Xplained Pro
 Support for the Microchip SAML10 Xplained Pro board.
 
 Microchip SAML11 Xplained Pro
 Support for the Microchip SAML11 Xplained Pro board.
 
 Microchip SAML1X
 Support for SAML10 and SAML11 boards
 
 Microduino CoreRF
 Support for the Microduino CoreRF board
 
 NXP FRDM-K22F Board
 Support for the NXP FRDM-K22F
 
 NXP FRDM-K64F Board
 Support for the NXP FRDM-K64F
 
 NXP FRDM-KL43Z Board
 Support for the NXP FRDM-KL43Z
 
 NXP USB-KW41Z Board
 Support for the USB-KW41Z
 
 NZ32-SC151
 Support for the Modtronix nz32-sc151 board.
 
 Native Board
 Support for running RIOT in native
 
 Native64 Board
 Support for running RIOT in native64
 
 Nordic Thingy:52
 Support for the Nordic Thingy:52 board
 
 Olimex MSP430-H1611
 Support for the Olimex MSP430-H1611 board
 
 Olimex MSP430-H2618
 Support for the Olimex MSP430-H2618 board
 
 OpenCM9.04
 Support for the OpenCM9.04 board
 
 OpenMote-b
 Support for the OpenMote-b board
 
 OpenMote-cc2538
 Support for the OpenMote-cc2538 board
 
 Particle Argon
 Support for the Particle Argon
 
 Particle Boron
 Support for the Particle Boron
 
 Particle Mesh common
 Common support for the Particle Mesh boards family (Xenon, Argon, Boron)
 
 Particle Xenon
 Support for the Particle Xenon
 
 PhyNODE KW41Z
 Support for the Phytec PhyNODE KW41Z Board
 
 Phytec reel board
 Support for the PHYTEC 'reel board'
 
 PineTime
 Support for the Pinetime
 
 QN9080DK base board
 Support for the QN9080DK base board.
 
 RE-Mote Prototype A
 Support for the RE-Mote board prototype A
 
 RE-Mote Revision A
 Support for the RE-Mote board Revision A
 
 RE-Mote Revision B
 Support for the RE-Mote board Revision B
 
 Raspberry Pi Pico
 Support for the RP2040 based Raspberry Pi Pico board
 
 Raspberry Pi Pico W
 Support for the RP2040 based Raspberry Pi Pico W board
 
 RuuviTag
 Support for the RuuviTag board
 
 SODAQ Autonomo
 Support for the SODAQ Autonomo board.
 
 SODAQ ExpLoRer
 Support for the SODAQ ExpLoRer board
 
 SODAQ ONE
 Support for the SODAQ ONE board
 
 SODAQ SARA AFF
 Support for the SODAQ SARA AFF boards
 
 SODAQ SARA SFF
 Support for the SODAQ SARA SFF boards
 
 ST B-L072Z-LRWAN1 LoRa discovery
 Support for the ST B-L072Z-LRWAN1 board
 
 ST B-L475E-IOT01A
 Support for the ST B-L475E-IOT01A board
 
 ST I-NUCLEO-LRWAN1 LoRa board
 Support for the ST I-NUCLEO-LRWAN1 LoRa board shield
 
 ST P-L496G-CELL02
 Support for the ST P-L496G-CELL02 board
 
 STM32 B-U585I-IOT02A
 Support for the STM32 B-U585I-IOT02A
 
 STM32 Nucleo-144
 Support for STM32 Nucleo-144 boards
 
 STM32 Nucleo-32
 Support for STM32 Nucleo-32 boards
 
 STM32 Nucleo-64
 Support for STM32 Nucleo-64 boards
 
 STM32 Olimexino-stm32
 Support for the Olimexino STM32 board
 
 STM32 p-nucleo-wb55
 Support for the STM32 p-nucleo-wb55
 
 STM32F030C8 based Bluepill
 Support for the STM32F030C8 based Bluepill
 
 STM32F030F4 Demo Board
 Support for the STM32F030F4 Demo Board
 
 STM32F0Discovery
 Support for the STM32F0Discovery board
 
 STM32F3Discovery
 Support for the STM32F3Discovery board
 
 STM32F429I-DISC1
 Support for the STM32F429I-DISC1 board
 
 STM32F429I-DISCO
 Support for the STM32F429I-DISCO board
 
 STM32F469I-DISCO
 Support for the STM32F469I-DISCO board
 
 STM32F4Discovery
 Support for the STM32F4Discovery board
 
 STM32F723E-DISCO board
 Support for the STM32F723E-DISCO board
 
 STM32F746G-DISCO
 Support for the STM32F746G-DISCO board.
 
 STM32F750N8-DK
 Support for the STM32F750N8-DK board.
 
 STM32F769I-DISCO board
 Support for the STM32F769I-DISCO board
 
 STM32G0316-DISCO
 Support for the STM32G0316-DISCO board.
 
 STM32L0538-DISCO
 Support for the STM32L0538-DISCO board
 
 STM32L476G-DISCO
 Support for the STM32L476G-DISCO board.
 
 STM32L496G-DISCO
 Support for the STM32L496G-DISCO board.
 
 STM32MP157C-DK2 board
 Support for the STM32MP157C-DK2 board
 
 SeeedStudio GD32 RISC-V board
 Support for the SeeedStudio GD32 RISC-V board
 
 Seeeduino Arch Pro development kit
 Support for the Seeeduino Arch Pro board
 
 Seeeduino XIAO
 Support for the Seeeduino XIAO.
 
 SenseBox MCU with SAMD21
 Support for the SenseBox MCU with SAMD21 board.
 
 Serpente R2
 Support for the Serpente board.
 
 SiFive HiFive1 RISC-V board
 Support for the SiFive HiFive1 RISC-V board
 
 SiFive HiFive1b RISC-V board
 Support for the SiFive HiFive1b RISC-V board
 
 Silicon Labs SLSTK3400A starter kit
 Support for Silicon Labs SLSTK3400A starter kit
 
 Silicon Labs SLSTK3401A starter kit
 Support for Silicon Labs SLSTK3401A starter kit
 
 Silicon Labs SLSTK3402A starter kit
 Support for Silicon Labs SLSTK3402A starter kit
 
 Silicon Labs SLSTK3701A starter kit
 Support for Silicon Labs SLSTK3701A starter kit
 
 Silicon Labs SLTB001A starter kit
 Support for Silicon Labs SLTB001A starter kit
 
 Silicon Labs SLTB009A starter kit
 Support for Silicon Labs SLTB009A starter kit
 
 Silicon Labs SLWSTK6000B starter kit
 Support for the Silicon Labs SLWSTK6000B starter kit
 
 Silicon Labs SLWSTK6220A starter kit
 Support for Silicon Labs SLWSTK6220A starter kit
 
 Silicon Labs STK3200 starter kit
 Support for Silicon Labs STK3200 starter kit
 
 Silicon Labs STK3600 starter kit
 Support for Silicon Labs STK3600 starter kit
 
 Silicon Labs STK3700 starter kit
 Support for Silicon Labs STK3700 starter kit
 
 Silicon Labs xG23-PK6068A starter kit
 Support for the xG23-PK6068A board.
 
 Sipeed Longan Nano
 Support for the Sipeed Longan Nano board
 
 Sipeed Longan Nano with TFT
 Support for the Sipeed Longan Nano board with TFT display
 
 Spark-Core
 Support for the spark-core board
 
 Standalone ATmega1284P
 Support for using the ATmega1284P as standalone board
 
 Standalone ATmega328p
 Support for using the ATmega328p as standalone board
 
 Standalone ATmega8
 Support for using the ATmega8 as standalone board
 
 TI CC1312 LaunchPad
 Texas Instruments SimpleLink(TM) CC1312 Wireless MCU LaunchPad(TM) Kit
 
 TI CC1350 LaunchPad XL
 Texas Instruments SimpleLink(TM) CC1350 Wireless MCU LaunchPad(TM) Kit
 
 TI CC1352 LaunchPad
 Texas Instruments SimpleLink(TM) CC1352 Wireless MCU LaunchPad(TM) Kit
 
 TI CC1352P LaunchPad
 Texas Instruments SimpleLink(TM) CC1352P Wireless MCU LaunchPad(TM) Kit
 
 TI CC2650 LaunchPad XL
 Texas Instruments SimpleLink(TM) CC2650 Wireless MCU LaunchPad(TM) Kit
 
 Teensy3.1 & 3.2
 Support for the Teensy3.1 & 3.2
 
 TelosB
 Support for the TelosB board
 
 UDOO
 Support for the UDOO board
 
 Ublox C030-U201
 Support for the Ublox C030-U201 board
 
 Waveshare nRF52840 Eval Kit
 Support for the Waveshare nRF52840 Eval Kit
 
 WeAct-F401CC board
 Support for the WeAct-F401CC Board
 
 WeAct-F401CE board
 Support for the WeAct-F401CE Board
 
 WeAct-F411CE board
 Support for the WeAct-F411CE Board
 
 WeAct-G030F6 board
 Support for the WeAct-G030F6 board
 
 WeMos Arduino Zero Clone
 Support for the WeMos Arduino Zero Clone board.
 
 Yunjia NRF51822
 Support for the Yunjia NRF51822 board
 
 Zigduino
 Support for the Zigduino board
 
 Zolertia Z1
 Support for the Zolertia Z1 board.
 
 deRFmega128 modules from Dresden Elektronik
 Support for deRFmega128 modules produced by Dresden Elektronik
 
 deRFmega256 modules from Dresden Elektronik
 Support for deRFmega256 modules produced by Dresden Elektronik
 
 im880b
 Support for the im880b with stm32l151cb-a
 
 maple-mini
 Support for the maple-mini board
 
 mbed LPC1768 development kit
 Support for the mbed LPC1768 board
 
 nRF51 Dongle
 Support for the Nordic nRF51 Dongle
 
 nRF51DK Development Kit
 Support for the Nordic nRF51DK Development Kit
 
 nRF52 DK
 Support for the nRF52 DK
 
 nRF52832-MDK
 Support for the nRF52832-MDK
 
 nRF52840 DK
 Support for the nRF52840 DK
 
 nRF52840 MDK USB Dongle
 Support for the nRF52840 MDK USB Dongle
 
 nRF52840-Dongle
 Support for the nRF52840-Dongle
 
 nRF52840-MDK
 Support for the nRF52840-MDK
 
 nRF5340DK
 Support for the nRF5340DK-app board
 
 nRF9160DK
 Support for the nRF9160DK board
 
 omote
 Support for the omote board
 
 openlabs.co kw41z-mini board
 Support for openlabs-kw41z-mini
 
 openlabs.co kw41z-mini-256kib board
 Support for openlabs-kw41z-mini (256kib Version)
 
 phyWAVE-KW22 Board
 Support for the phyWAVE evaluation board
 
 pyboard
 Support for the pyboard