tests: Updated Updated BOARD_INSUFFICIENT_MEMORY

Added arduino-nano to BOARD_INSUFFICIENT_MEMORY/BOARD_BLACKLIST following suit
of how arduino-uno is marked, as arduino-nano is mostly an Uno in a different
form factor.
This commit is contained in:
Marian Buschsieweke 2019-03-14 13:07:51 +01:00
parent e14bea1cf5
commit 0e90e6195f
No known key found for this signature in database
GPG Key ID: 61F64C6599B1539F
121 changed files with 306 additions and 248 deletions

View File

@ -1,6 +1,6 @@
include ../Makefile.tests_common include ../Makefile.tests_common
BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-uno BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-nano arduino-uno
# Modules that will have an impact on the size of the TCB (thread_t): # Modules that will have an impact on the size of the TCB (thread_t):
# #

View File

@ -1,6 +1,6 @@
include ../Makefile.tests_common include ../Makefile.tests_common
BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-uno BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-nano arduino-uno
# These boards only have a single timer in their periph_conf.h, needs special # These boards only have a single timer in their periph_conf.h, needs special
# CFLAGS configuration to build properly # CFLAGS configuration to build properly

View File

@ -1,7 +1,8 @@
include ../Makefile.tests_common include ../Makefile.tests_common
BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-uno chronos \ BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-nano arduino-uno \
msb-430 msb-430h telosb wsn430-v1_3b wsn430-v1_4 z1 chronos msb-430 msb-430h telosb wsn430-v1_3b \
wsn430-v1_4 z1
USEMODULE += hashes USEMODULE += hashes
USEMODULE += bloom USEMODULE += bloom

View File

@ -1,7 +1,7 @@
export APPLICATION = can_trx export APPLICATION = can_trx
include ../Makefile.tests_common include ../Makefile.tests_common
BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-uno BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-nano arduino-uno
USEMODULE += shell USEMODULE += shell
USEMODULE += shell_commands USEMODULE += shell_commands

View File

@ -1,8 +1,9 @@
include ../Makefile.tests_common include ../Makefile.tests_common
BOARD_INSUFFICIENT_MEMORY := nucleo32-f031 nucleo32-f042 nucleo32-l031 nucleo-f030 \ BOARD_INSUFFICIENT_MEMORY := nucleo32-f031 nucleo32-f042 nucleo32-l031 \
nucleo-l053 stm32f0discovery arduino-duemilanove \ nucleo-f030 nucleo-l053 stm32f0discovery \
arduino-uno nucleo-f030r8 nucleo-f031k6 nucleo-f042k6 \ arduino-duemilanove arduino-nano arduino-uno \
nucleo-l031k6 nucleo-l053r8 nucleo-f030r8 nucleo-f031k6 nucleo-f042k6 \
nucleo-l031k6 nucleo-l053r8
include $(RIOTBASE)/Makefile.include include $(RIOTBASE)/Makefile.include

View File

@ -1,13 +1,13 @@
include ../Makefile.tests_common include ../Makefile.tests_common
BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-mega2560 arduino-uno \ BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-mega2560 arduino-nano \
chronos hifive1 msb-430 msb-430h nucleo-f031k6 \ arduino-uno chronos hifive1 msb-430 msb-430h \
nucleo-f042k6 nucleo-f303k8 nucleo-l031k6 \ nucleo-f031k6 nucleo-f042k6 nucleo-f303k8 \
nucleo-f030r8 nucleo-f070rb nucleo-f072rb \ nucleo-l031k6 nucleo-f030r8 nucleo-f070rb \
nucleo-f302r8 nucleo-f303re nucleo-f334r8 \ nucleo-f072rb nucleo-f302r8 nucleo-f303re \
nucleo-l053r8 saml10-xpro saml11-xpro \ nucleo-f334r8 nucleo-l053r8 saml10-xpro \
stm32f0discovery telosb waspmote-pro wsn430-v1_3b \ saml11-xpro stm32f0discovery telosb waspmote-pro \
wsn430-v1_4 z1 wsn430-v1_3b wsn430-v1_4 z1
CFLAGS += -DLOG_LEVEL=LOG_ALL CFLAGS += -DLOG_LEVEL=LOG_ALL

View File

@ -1,6 +1,7 @@
include ../Makefile.tests_common include ../Makefile.tests_common
BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-uno nucleo-f031k6 BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-nano arduino-uno \
nucleo-f031k6
USEMODULE += shell USEMODULE += shell
USEMODULE += at USEMODULE += at

View File

@ -1,6 +1,6 @@
include ../Makefile.tests_common include ../Makefile.tests_common
BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-uno BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-nano arduino-uno
USEMODULE += at30tse75x USEMODULE += at30tse75x
USEMODULE += shell USEMODULE += shell

View File

@ -1,7 +1,8 @@
include ../Makefile.tests_common include ../Makefile.tests_common
# exclude boards with insufficient memory # exclude boards with insufficient memory
BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-uno nucleo-f031k6 BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-nano arduino-uno \
nucleo-f031k6
DISABLE_MODULE += auto_init DISABLE_MODULE += auto_init

View File

@ -1,6 +1,6 @@
include ../Makefile.tests_common include ../Makefile.tests_common
BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-uno BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-nano arduino-uno
USEMODULE += ata8520e USEMODULE += ata8520e
USEMODULE += shell USEMODULE += shell

View File

@ -1,6 +1,6 @@
include ../Makefile.tests_common include ../Makefile.tests_common
BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-uno BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-nano arduino-uno
# include and auto-initialize all available sensors # include and auto-initialize all available sensors
USEMODULE += saul_default USEMODULE += saul_default

View File

@ -1,6 +1,6 @@
include ../Makefile.tests_common include ../Makefile.tests_common
BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-uno BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-nano arduino-uno
# chronos : USART_1 undeclared # chronos : USART_1 undeclared
BOARD_BLACKLIST += chronos BOARD_BLACKLIST += chronos

View File

@ -1,10 +1,11 @@
include ../Makefile.tests_common include ../Makefile.tests_common
BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-mega2560 arduino-uno \ BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-mega2560 arduino-nano \
msb-430 msb-430h nucleo-f334r8 nucleo-l053r8 \ arduino-uno msb-430 msb-430h nucleo-f334r8 \
nucleo-f031k6 nucleo-f042k6 nucleo-f303k8 \ nucleo-l053r8 nucleo-f031k6 nucleo-f042k6 \
nucleo-l031k6 mega-xplained stm32f0discovery telosb \ nucleo-f303k8 nucleo-l031k6 mega-xplained \
waspmote-pro wsn430-v1_3b wsn430-v1_4 z1 stm32f0discovery telosb waspmote-pro wsn430-v1_3b \
wsn430-v1_4 z1
USEMODULE += auto_init_gnrc_netif USEMODULE += auto_init_gnrc_netif
USEMODULE += enc28j60 USEMODULE += enc28j60

View File

@ -1,7 +1,7 @@
include ../Makefile.tests_common include ../Makefile.tests_common
BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-mega2560 arduino-uno \ BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-mega2560 arduino-nano \
msb-430 msb-430h \ arduino-uno msb-430 msb-430h \
nucleo-l053r8 nucleo-f031k6 nucleo-f042k6 \ nucleo-l053r8 nucleo-f031k6 nucleo-f042k6 \
nucleo-l031k6 stm32f0discovery telosb \ nucleo-l031k6 stm32f0discovery telosb \
waspmote-pro wsn430-v1_3b wsn430-v1_4 z1 waspmote-pro wsn430-v1_3b wsn430-v1_4 z1

View File

@ -1,6 +1,6 @@
include ../Makefile.tests_common include ../Makefile.tests_common
BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-uno BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-nano arduino-uno
# chronos : USART_1 undeclared # chronos : USART_1 undeclared
BOARD_BLACKLIST += chronos BOARD_BLACKLIST += chronos

View File

@ -1,9 +1,9 @@
include ../Makefile.tests_common include ../Makefile.tests_common
BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-mega2560 arduino-uno \ BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-mega2560 arduino-nano \
nucleo-f031k6 nucleo-f042k6 nucleo-l031k6 \ arduino-uno nucleo-f031k6 nucleo-f042k6 \
nucleo-f334r8 nucleo-l053r8 stm32f0discovery \ nucleo-l031k6 nucleo-f334r8 nucleo-l053r8 \
waspmote-pro stm32f0discovery waspmote-pro
USEMODULE += auto_init_gnrc_netif USEMODULE += auto_init_gnrc_netif
USEMODULE += gnrc_netdev_default USEMODULE += gnrc_netdev_default

View File

@ -1,6 +1,6 @@
include ../Makefile.tests_common include ../Makefile.tests_common
BOARD_INSUFFICIENT_MEMORY += arduino-uno arduino-duemilanove BOARD_INSUFFICIENT_MEMORY += arduino-uno arduino-nano arduino-duemilanove
BOARD ?= msba2 BOARD ?= msba2

View File

@ -1,6 +1,6 @@
include ../Makefile.tests_common include ../Makefile.tests_common
BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-uno BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-nano arduino-uno
USEMODULE += mpu9150 USEMODULE += mpu9150
USEMODULE += xtimer USEMODULE += xtimer

View File

@ -1,7 +1,8 @@
include ../Makefile.tests_common include ../Makefile.tests_common
# exclude boards with insufficient memory # exclude boards with insufficient memory
BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-uno nucleo-f031k6 BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-nano arduino-uno \
nucleo-f031k6
USEMODULE += shell USEMODULE += shell
USEMODULE += shell_commands USEMODULE += shell_commands

View File

@ -1,6 +1,6 @@
include ../Makefile.tests_common include ../Makefile.tests_common
BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-uno BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-nano arduino-uno
USEMODULE += nvram_spi USEMODULE += nvram_spi
USEMODULE += xtimer USEMODULE += xtimer

View File

@ -1,6 +1,6 @@
include ../Makefile.tests_common include ../Makefile.tests_common
BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-uno BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-nano arduino-uno
USEMODULE += shell USEMODULE += shell
USEMODULE += pcd8544 USEMODULE += pcd8544

View File

@ -1,6 +1,7 @@
include ../Makefile.tests_common include ../Makefile.tests_common
BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-uno nucleo-f031k6 BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-nano arduino-uno \
nucleo-f031k6
USEMODULE += pir USEMODULE += pir

View File

@ -1,6 +1,6 @@
include ../Makefile.tests_common include ../Makefile.tests_common
BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-uno BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-nano arduino-uno
DRIVER ?= rn2483 DRIVER ?= rn2483

View File

@ -1,7 +1,8 @@
include ../Makefile.tests_common include ../Makefile.tests_common
# exclude boards with insufficient memory # exclude boards with insufficient memory
BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-uno nucleo-f031k6 BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-nano arduino-uno \
nucleo-f031k6
USEMODULE += sdcard_spi USEMODULE += sdcard_spi
USEMODULE += auto_init_storage USEMODULE += auto_init_storage

View File

@ -1,6 +1,6 @@
include ../Makefile.tests_common include ../Makefile.tests_common
BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-uno BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-nano arduino-uno
DRIVER ?= sht11 DRIVER ?= sht11
BOARD ?= msba2 BOARD ?= msba2

View File

@ -1,6 +1,6 @@
include ../Makefile.tests_common include ../Makefile.tests_common
BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-uno BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-nano arduino-uno
USEMODULE += xtimer USEMODULE += xtimer
USEMODULE += srf02 USEMODULE += srf02

View File

@ -2,7 +2,8 @@ BOARD ?= b-l072z-lrwan1
include ../Makefile.tests_common include ../Makefile.tests_common
BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-uno nucleo-f031k6 BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-nano arduino-uno \
nucleo-f031k6
USEMODULE += od USEMODULE += od
USEMODULE += shell USEMODULE += shell

View File

@ -1,6 +1,6 @@
include ../Makefile.tests_common include ../Makefile.tests_common
BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-uno BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-nano arduino-uno
USEMODULE += tsl4531x USEMODULE += tsl4531x
USEMODULE += xtimer USEMODULE += xtimer

View File

@ -1,8 +1,8 @@
include ../Makefile.tests_common include ../Makefile.tests_common
BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-uno nucleo-f031k6 \ BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-nano arduino-uno \
nucleo-f042k6 nucleo-f030r8 nucleo-f334r8 \ nucleo-f031k6 nucleo-f042k6 nucleo-f030r8 \
stm32f0discovery waspmote-pro nucleo-f334r8 stm32f0discovery waspmote-pro
USEMODULE += xbee USEMODULE += xbee
USEMODULE += gnrc_txtsnd USEMODULE += gnrc_txtsnd

View File

@ -6,10 +6,11 @@ include ../Makefile.tests_common
BOARD_BLACKLIST := msb-430 msb-430h pic32-clicker pic32-wifire \ BOARD_BLACKLIST := msb-430 msb-430h pic32-clicker pic32-wifire \
telosb wsn430-v1_3b wsn430-v1_4 z1 telosb wsn430-v1_3b wsn430-v1_4 z1
BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-mega2560 arduino-uno \ BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-mega2560 arduino-nano \
msb-430 msb-430h nucleo-l031k6 nucleo-f031k6 \ arduino-uno msb-430 msb-430h nucleo-l031k6 \
nucleo-f042k6 nucleo-l053r8 stm32f0discovery \ nucleo-f031k6 nucleo-f042k6 nucleo-l053r8 \
telosb waspmote-pro wsn430-v1_3b wsn430-v1_4 z1 stm32f0discovery telosb waspmote-pro wsn430-v1_3b \
wsn430-v1_4 z1
USEPKG += emb6 USEPKG += emb6

View File

@ -1,6 +1,6 @@
include ../Makefile.tests_common include ../Makefile.tests_common
BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-uno BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-nano arduino-uno
FORCE_ASSERTS = 1 FORCE_ASSERTS = 1
USEMODULE += event_callback USEMODULE += event_callback

View File

@ -1,7 +1,7 @@
include ../Makefile.tests_common include ../Makefile.tests_common
BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-uno nucleo-f031k6 \ BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-nano arduino-uno \
nucleo-f042k6 nucleo-f031k6 nucleo-f042k6
USEMODULE += evtimer USEMODULE += evtimer

View File

@ -1,7 +1,7 @@
include ../Makefile.tests_common include ../Makefile.tests_common
BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-uno nucleo-f031k6 \ BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-nano arduino-uno \
nucleo-f042k6 nucleo-f031k6 nucleo-f042k6
USEMODULE += evtimer USEMODULE += evtimer

View File

@ -2,13 +2,13 @@ DEVELHELP := 1
# name of your application # name of your application
include ../Makefile.tests_common include ../Makefile.tests_common
BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-mega2560 arduino-uno \ BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-mega2560 arduino-nano \
hifive1 mega-xplained msb-430 msb-430h \ arduino-uno hifive1 mega-xplained msb-430 \
nucleo-f030r8 nucleo-f031k6 nucleo-f042k6 \ msb-430h nucleo-f030r8 nucleo-f031k6 \
nucleo-f070rb nucleo-f072rb nucleo-f303k8 \ nucleo-f042k6 nucleo-f070rb nucleo-f072rb \
nucleo-f334r8 nucleo-l031k6 nucleo-l053r8 \ nucleo-f303k8 nucleo-f334r8 nucleo-l031k6 \
stm32f0discovery telosb thingy52 waspmote-pro \ nucleo-l053r8 stm32f0discovery telosb thingy52 \
wsn430-v1_3b wsn430-v1_4 z1 waspmote-pro wsn430-v1_3b wsn430-v1_4 z1
# chronos, mips-malta, and ruuvitag boards don't support ethos # chronos, mips-malta, and ruuvitag boards don't support ethos
BOARD_BLACKLIST := chronos mips-malta ruuvitag BOARD_BLACKLIST := chronos mips-malta ruuvitag

View File

@ -1,8 +1,9 @@
include ../Makefile.tests_common include ../Makefile.tests_common
BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-mega2560 arduino-uno \ BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-mega2560 arduino-nano \
chronos nucleo-f031k6 nucleo-f042k6 nucleo-l031k6 \ arduino-uno chronos nucleo-f031k6 nucleo-f042k6 \
telosb waspmote-pro wsn430-v1_3b wsn430-v1_4 nucleo-l031k6 telosb waspmote-pro wsn430-v1_3b \
wsn430-v1_4
USEMODULE += gnrc_ipv6 USEMODULE += gnrc_ipv6
USEMODULE += gnrc_ipv6_nib USEMODULE += gnrc_ipv6_nib

View File

@ -1,9 +1,10 @@
include ../Makefile.tests_common include ../Makefile.tests_common
BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-mega2560 arduino-uno \ BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-mega2560 arduino-nano \
chronos nucleo-f030r8 nucleo-l053r8 nucleo-f031k6 \ arduino-uno chronos nucleo-f030r8 nucleo-l053r8 \
nucleo-l031k6 nucleo-f042k6 stm32f0discovery \ nucleo-f031k6 nucleo-l031k6 nucleo-f042k6 \
telosb waspmote-pro wsn430-v1_3b wsn430-v1_4 stm32f0discovery telosb waspmote-pro wsn430-v1_3b \
wsn430-v1_4
USEMODULE += gnrc_ipv6 USEMODULE += gnrc_ipv6
USEMODULE += gnrc_sixlowpan USEMODULE += gnrc_sixlowpan

View File

@ -1,9 +1,10 @@
APPLICATION = gnrc_mac_timeout APPLICATION = gnrc_mac_timeout
include ../Makefile.tests_common include ../Makefile.tests_common
BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-mega2560 arduino-uno \ BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-mega2560 arduino-nano \
chronos nucleo-f030r8 nucleo-f031k6 nucleo-f042k6 \ arduino-uno chronos nucleo-f030r8 nucleo-f031k6 \
nucleo-l031k6 nucleo-l053r8 stm32f0discovery waspmote-pro nucleo-f042k6 nucleo-l031k6 nucleo-l053r8 \
stm32f0discovery waspmote-pro
USEMODULE += gnrc_mac USEMODULE += gnrc_mac

View File

@ -1,9 +1,10 @@
include ../Makefile.tests_common include ../Makefile.tests_common
BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-mega2560 arduino-uno \ BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-mega2560 arduino-nano \
chronos nucleo-f030r8 nucleo-f031k6 nucleo-f042k6 \ arduino-uno chronos nucleo-f030r8 nucleo-f031k6 \
nucleo-l031k6 nucleo-l053r8 stm32f0discovery \ nucleo-f042k6 nucleo-l031k6 nucleo-l053r8 \
telosb waspmote-pro wsn430-v1_3b wsn430-v1_4 stm32f0discovery telosb waspmote-pro wsn430-v1_3b \
wsn430-v1_4
USEMODULE += gnrc_ipv6_nib_router USEMODULE += gnrc_ipv6_nib_router
USEMODULE += gnrc_ndp USEMODULE += gnrc_ndp

View File

@ -1,9 +1,9 @@
include ../Makefile.tests_common include ../Makefile.tests_common
BOARD_INSUFFICIENT_MEMORY := airfy-beacon arduino-duemilanove arduino-mega2560 \ BOARD_INSUFFICIENT_MEMORY := airfy-beacon arduino-duemilanove arduino-mega2560 \
arduino-uno b-l072z-lrwan1 blackpill bluepill calliope-mini \ arduino-nano arduino-uno b-l072z-lrwan1 blackpill \
cc2650-launchpad cc2650stk chronos hifive1 \ bluepill calliope-mini cc2650-launchpad cc2650stk \
maple-mini mega-xplained microbit \ chronos hifive1 maple-mini mega-xplained microbit \
msb-430 msb-430h nrf51dk nrf51dongle nrf6310 \ msb-430 msb-430h nrf51dk nrf51dongle nrf6310 \
nucleo-f030r8 nucleo-f070rb nucleo-f072rb \ nucleo-f030r8 nucleo-f070rb nucleo-f072rb \
nucleo-f103rb nucleo-f302r8 nucleo-f334r8 \ nucleo-f103rb nucleo-f302r8 nucleo-f334r8 \

View File

@ -2,13 +2,14 @@ DEVELHELP := 1
# name of your application # name of your application
include ../Makefile.tests_common include ../Makefile.tests_common
BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-mega2560 arduino-uno \ BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-mega2560 arduino-nano \
hifive1 mega-xplained msb-430 msb-430h \ arduino-uno hifive1 mega-xplained msb-430 \
nucleo-f030r8 nucleo-f031k6 nucleo-f042k6 \ msb-430h nucleo-f030r8 nucleo-f031k6 \
nucleo-f070rb nucleo-f072rb nucleo-f303k8 \ nucleo-f042k6 nucleo-f070rb nucleo-f072rb \
nucleo-f334r8 nucleo-l031k6 nucleo-l053r8 \ nucleo-f303k8 nucleo-f334r8 nucleo-l031k6 \
saml10-xpro saml11-xpro stm32f0discovery telosb \ nucleo-l053r8 saml10-xpro saml11-xpro \
thingy52 waspmote-pro wsn430-v1_3b wsn430-v1_4 z1 stm32f0discovery telosb thingy52 waspmote-pro \
wsn430-v1_3b wsn430-v1_4 z1
# chronos, mips-malta, and ruuvitag boards don't support ethos # chronos, mips-malta, and ruuvitag boards don't support ethos
BOARD_BLACKLIST := chronos mips-malta ruuvitag BOARD_BLACKLIST := chronos mips-malta ruuvitag

View File

@ -1,13 +1,14 @@
# name of your application # name of your application
include ../Makefile.tests_common include ../Makefile.tests_common
BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-mega2560 arduino-uno \ BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-mega2560 arduino-nano \
chronos hifive1 msb-430 msb-430h nucleo-f030r8 \ arduino-uno chronos hifive1 msb-430 msb-430h \
nucleo-f031k6 nucleo-f042k6 nucleo-f070rb \ nucleo-f030r8 nucleo-f031k6 nucleo-f042k6 \
nucleo-f070rb nucleo-f072rb nucleo-f303k8 \ nucleo-f070rb nucleo-f070rb nucleo-f072rb \
nucleo-f334r8 nucleo-l031k6 nucleo-l053r8 \ nucleo-f303k8 nucleo-f334r8 nucleo-l031k6 \
saml10-xpro saml11-xpro stm32f0discovery telosb \ nucleo-l053r8 saml10-xpro saml11-xpro \
waspmote-pro wsn430-v1_3b wsn430-v1_4 z1 stm32f0discovery telosb waspmote-pro wsn430-v1_3b \
wsn430-v1_4 z1
# use IEEE 802.15.4 as link-layer protocol # use IEEE 802.15.4 as link-layer protocol
USEMODULE += netdev_ieee802154 USEMODULE += netdev_ieee802154

View File

@ -1,6 +1,7 @@
include ../Makefile.tests_common include ../Makefile.tests_common
BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-uno nucleo-f031k6 BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-nano arduino-uno \
nucleo-f031k6
USEMODULE += gnrc_sixlowpan_frag USEMODULE += gnrc_sixlowpan_frag
USEMODULE += embunit USEMODULE += embunit

View File

@ -2,10 +2,11 @@ include ../Makefile.tests_common
RIOTBASE ?= $(CURDIR)/../.. RIOTBASE ?= $(CURDIR)/../..
BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-mega2560 arduino-uno \ BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-mega2560 arduino-nano \
chronos telosb nucleo-f042k6 nucleo-f031k6 \ arduino-uno chronos telosb nucleo-f042k6 \
nucleo-f030r8 nucleo-f303k8 nucleo-l053r8 \ nucleo-f031k6 nucleo-f030r8 nucleo-f303k8 \
nucleo-l031k6 stm32f0discovery waspmote-pro z1 nucleo-l053r8 nucleo-l031k6 stm32f0discovery \
waspmote-pro z1
USEMODULE += sock_dns USEMODULE += sock_dns
USEMODULE += gnrc_sock_udp USEMODULE += gnrc_sock_udp

View File

@ -1,6 +1,6 @@
include ../Makefile.tests_common include ../Makefile.tests_common
BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-uno \ BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-nano arduino-uno \
chronos nucleo-f031k6 nucleo-f042k6 nucleo-l031k6 chronos nucleo-f031k6 nucleo-f042k6 nucleo-l031k6
USEMODULE += gnrc_sock_ip USEMODULE += gnrc_sock_ip

View File

@ -1,8 +1,8 @@
include ../Makefile.tests_common include ../Makefile.tests_common
BOARD_INSUFFICIENT_MEMORY := arduino-mega2560 arduino-duemilanove arduino-uno \ BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-mega2560 arduino-nano \
chronos nucleo-f031k6 nucleo-f042k6 nucleo-l031k6 \ arduino-uno chronos nucleo-f031k6 nucleo-f042k6 \
waspmote-pro nucleo-l031k6 waspmote-pro
USEMODULE += gnrc_sock_check_reuse USEMODULE += gnrc_sock_check_reuse
USEMODULE += gnrc_sock_udp USEMODULE += gnrc_sock_udp

View File

@ -14,12 +14,15 @@ TCP_TEST_CYCLES ?= 3
# Mark Boards with insufficient memory # Mark Boards with insufficient memory
BOARD_INSUFFICIENT_MEMORY := airfy-beacon arduino-duemilanove arduino-mega2560 \ BOARD_INSUFFICIENT_MEMORY := airfy-beacon arduino-duemilanove arduino-mega2560 \
arduino-uno calliope-mini chronos hifive1 mega-xplained microbit \ arduino-nano arduino-uno calliope-mini chronos \
msb-430 msb-430h nrf51dk nrf51dongle nrf6310 nucleo-f031k6 \ hifive1 mega-xplained microbit msb-430 msb-430h \
nucleo-f042k6 nucleo-f303k8 nucleo-l031k6 nucleo-f030r8 \ nrf51dk nrf51dongle nrf6310 nucleo-f031k6 \
nucleo-f070rb nucleo-f072rb nucleo-f302r8 nucleo-f334r8 nucleo-l053r8 \ nucleo-f042k6 nucleo-f303k8 nucleo-l031k6 \
saml10-xpro saml11-xpro sb-430 sb-430h stm32f0discovery telosb \ nucleo-f030r8 nucleo-f070rb nucleo-f072rb \
waspmote-pro wsn430-v1_3b wsn430-v1_4 yunjia-nrf51822 z1 nucleo-f302r8 nucleo-f334r8 nucleo-l053r8 \
saml10-xpro saml11-xpro sb-430 sb-430h \
stm32f0discovery telosb waspmote-pro wsn430-v1_3b \
wsn430-v1_4 yunjia-nrf51822 z1
# Target Address, Target Port and number of Test Cycles # Target Address, Target Port and number of Test Cycles
CFLAGS += -DSERVER_ADDR=\"$(TCP_SERVER_ADDR)\" CFLAGS += -DSERVER_ADDR=\"$(TCP_SERVER_ADDR)\"

View File

@ -13,12 +13,15 @@ TCP_TEST_CYCLES ?= 3
# Mark Boards with insufficient memory # Mark Boards with insufficient memory
BOARD_INSUFFICIENT_MEMORY := airfy-beacon arduino-duemilanove arduino-mega2560 \ BOARD_INSUFFICIENT_MEMORY := airfy-beacon arduino-duemilanove arduino-mega2560 \
arduino-uno calliope-mini chronos hifive1 mega-xplained \ arduino-nano arduino-uno calliope-mini chronos \
microbit msb-430 msb-430h nrf51dk nrf51dongle nrf6310 nucleo-f031k6 \ hifive1 mega-xplained microbit msb-430 msb-430h \
nucleo-f042k6 nucleo-f303k8 nucleo-l031k6 nucleo-f030r8 \ nrf51dk nrf51dongle nrf6310 nucleo-f031k6 \
nucleo-f070rb nucleo-f072rb nucleo-f302r8 nucleo-f334r8 nucleo-l053r8 \ nucleo-f042k6 nucleo-f303k8 nucleo-l031k6 \
saml10-xpro saml11-xpro sb-430 sb-430h stm32f0discovery telosb \ nucleo-f030r8 nucleo-f070rb nucleo-f072rb \
waspmote-pro wsn430-v1_3b wsn430-v1_4 yunjia-nrf51822 z1 nucleo-f302r8 nucleo-f334r8 nucleo-l053r8 \
saml10-xpro saml11-xpro sb-430 sb-430h \
stm32f0discovery telosb waspmote-pro wsn430-v1_3b \
wsn430-v1_4 yunjia-nrf51822 z1
# Local Address, Local Port and number of Test Cycles # Local Address, Local Port and number of Test Cycles
CFLAGS += -DSERVER_ADDR=\"$(TCP_SERVER_ADDR)\" CFLAGS += -DSERVER_ADDR=\"$(TCP_SERVER_ADDR)\"

View File

@ -1,12 +1,14 @@
include ../Makefile.tests_common include ../Makefile.tests_common
BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-mega2560 arduino-uno \ BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-mega2560 arduino-nano \
calliope-mini chronos hifive1 mega-xplained \ arduino-uno calliope-mini chronos hifive1 \
microbit msb-430 msb-430h \ mega-xplained microbit msb-430 msb-430h \
nucleo-f031k6 nucleo-f042k6 nucleo-f303k8 nucleo-l031k6 \ nucleo-f031k6 nucleo-f042k6 nucleo-f303k8 \
nucleo-f030r8 nucleo-f070rb nucleo-f072rb nucleo-f103rb nucleo-f302r8 \ nucleo-l031k6 nucleo-f030r8 nucleo-f070rb \
nucleo-f334r8 nucleo-l053r8 spark-core stm32f0discovery telosb \ nucleo-f072rb nucleo-f103rb nucleo-f302r8 \
waspmote-pro wsn430-v1_3b wsn430-v1_4 z1 nucleo-f334r8 nucleo-l053r8 spark-core \
stm32f0discovery telosb waspmote-pro wsn430-v1_3b \
wsn430-v1_4 z1
USEMODULE += gnrc_netdev_default USEMODULE += gnrc_netdev_default
USEMODULE += auto_init_gnrc_netif USEMODULE += auto_init_gnrc_netif

View File

@ -1,6 +1,7 @@
include ../Makefile.tests_common include ../Makefile.tests_common
BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-uno nucleo-f031k6 BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-nano arduino-uno \
nucleo-f031k6
USEMODULE += auto_init USEMODULE += auto_init
USEMODULE += xtimer USEMODULE += xtimer

View File

@ -1,7 +1,8 @@
APPLICATION = isr_yield_higher APPLICATION = isr_yield_higher
include ../Makefile.tests_common include ../Makefile.tests_common
BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-uno nucleo-f031k6 BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-nano arduino-uno \
nucleo-f031k6
USEMODULE += xtimer USEMODULE += xtimer

View File

@ -1,7 +1,7 @@
include ../Makefile.tests_common include ../Makefile.tests_common
BOARD_BLACKLIST := arduino-mega2560 waspmote-pro arduino-uno arduino-duemilanove \ BOARD_BLACKLIST := arduino-duemilanove arduino-mega2560 arduino-nano \
jiminy-mega256rfr2 mega-xplained arduino-uno jiminy-mega256rfr2 mega-xplained waspmote-pro
# arduino-mega2560: builds locally but breaks travis (possibly because of # arduino-mega2560: builds locally but breaks travis (possibly because of
# differences in the toolchain) # differences in the toolchain)
# The MSP boards don't feature round(), exp(), and log(), which are used in the unittests # The MSP boards don't feature round(), exp(), and log(), which are used in the unittests

View File

@ -2,10 +2,11 @@ include ../Makefile.tests_common
# lwIP's memory management doesn't seem to work on non 32-bit platforms at the # lwIP's memory management doesn't seem to work on non 32-bit platforms at the
# moment. # moment.
BOARD_BLACKLIST := arduino-uno arduino-duemilanove arduino-mega2560 chronos \ BOARD_BLACKLIST := arduino-duemilanove arduino-mega2560 arduino-nano \
esp8266-esp-12x esp8266-olimex-mod esp8266-sparkfun-thing \ arduino-uno chronos esp8266-esp-12x esp8266-olimex-mod \
msb-430 msb-430h telosb waspmote-pro wsn430-v1_3b \ esp8266-sparkfun-thing jiminy-mega256rfr2 mega-xplained \
wsn430-v1_4 z1 jiminy-mega256rfr2 mega-xplained msb-430 msb-430h telosb waspmote-pro \
wsn430-v1_3b wsn430-v1_4 z1
BOARD_INSUFFICIENT_MEMORY := airfy-beacon hifive1 nrf6310 nucleo-f031k6 nucleo-f042k6 \ BOARD_INSUFFICIENT_MEMORY := airfy-beacon hifive1 nrf6310 nucleo-f031k6 nucleo-f042k6 \
nucleo-l031k6 nucleo-f030r8 nucleo-f303k8 \ nucleo-l031k6 nucleo-f030r8 nucleo-f303k8 \
nucleo-f334r8 nucleo-l053r8 stm32f0discovery \ nucleo-f334r8 nucleo-l053r8 stm32f0discovery \

View File

@ -2,10 +2,11 @@ include ../Makefile.tests_common
# lwIP's memory management doesn't seem to work on non 32-bit platforms at the # lwIP's memory management doesn't seem to work on non 32-bit platforms at the
# moment. # moment.
BOARD_BLACKLIST := arduino-uno arduino-duemilanove arduino-mega2560 chronos \ BOARD_BLACKLIST := arduino-duemilanove arduino-mega2560 arduino-nano \
esp8266-esp-12x esp8266-olimex-mod esp8266-sparkfun-thing \ arduino-uno chronos esp8266-esp-12x esp8266-olimex-mod \
msb-430 msb-430h telosb waspmote-pro wsn430-v1_3b \ esp8266-sparkfun-thing jiminy-mega256rfr2 mega-xplained \
wsn430-v1_4 z1 jiminy-mega256rfr2 mega-xplained msb-430 msb-430h telosb waspmote-pro \
wsn430-v1_3b wsn430-v1_4 z1
BOARD_INSUFFICIENT_MEMORY = nucleo-f031k6 nucleo-f042k6 nucleo-l031k6 nucleo-f030r8 \ BOARD_INSUFFICIENT_MEMORY = nucleo-f031k6 nucleo-f042k6 nucleo-l031k6 nucleo-f030r8 \
nucleo-f303k8 nucleo-f334r8 nucleo-l053r8 \ nucleo-f303k8 nucleo-f334r8 nucleo-l053r8 \
stm32f0discovery stm32f0discovery

View File

@ -2,10 +2,11 @@ include ../Makefile.tests_common
# lwIP's memory management doesn't seem to work on non 32-bit platforms at the # lwIP's memory management doesn't seem to work on non 32-bit platforms at the
# moment. # moment.
BOARD_BLACKLIST := arduino-uno arduino-duemilanove arduino-mega2560 chronos \ BOARD_BLACKLIST := arduino-duemilanove arduino-mega2560 arduino-nano \
esp8266-esp-12x esp8266-olimex-mod esp8266-sparkfun-thing \ arduino-uno chronos esp8266-esp-12x esp8266-olimex-mod \
msb-430 msb-430h telosb waspmote-pro wsn430-v1_3b \ esp8266-sparkfun-thing jiminy-mega256rfr2 mega-xplained \
wsn430-v1_4 z1 jiminy-mega256rfr2 mega-xplained msb-430 msb-430h telosb waspmote-pro \
wsn430-v1_3b wsn430-v1_4 z1
BOARD_INSUFFICIENT_MEMORY = blackpill bluepill nucleo-f031k6 nucleo-f042k6 \ BOARD_INSUFFICIENT_MEMORY = blackpill bluepill nucleo-f031k6 nucleo-f042k6 \
nucleo-l031k6 nucleo-f030r8 nucleo-f302r8 \ nucleo-l031k6 nucleo-f030r8 nucleo-f302r8 \
nucleo-f303k8 nucleo-f334r8 nucleo-l053r8 \ nucleo-f303k8 nucleo-f334r8 nucleo-l053r8 \

View File

@ -2,10 +2,11 @@ include ../Makefile.tests_common
# lwIP's memory management doesn't seem to work on non 32-bit platforms at the # lwIP's memory management doesn't seem to work on non 32-bit platforms at the
# moment. # moment.
BOARD_BLACKLIST := arduino-uno arduino-duemilanove arduino-mega2560 chronos \ BOARD_BLACKLIST := arduino-duemilanove arduino-mega2560 arduino-nano \
esp8266-esp-12x esp8266-olimex-mod esp8266-sparkfun-thing \ arduino-uno chronos esp8266-esp-12x esp8266-olimex-mod \
msb-430 msb-430h telosb waspmote-pro wsn430-v1_3b \ esp8266-sparkfun-thing jiminy-mega256rfr2 mega-xplained \
wsn430-v1_4 z1 jiminy-mega256rfr2 mega-xplained msb-430 msb-430h telosb waspmote-pro \
wsn430-v1_3b wsn430-v1_4 z1
BOARD_INSUFFICIENT_MEMORY = nucleo-f031k6 nucleo-f042k6 nucleo-l031k6 nucleo-f030r8 \ BOARD_INSUFFICIENT_MEMORY = nucleo-f031k6 nucleo-f042k6 nucleo-l031k6 nucleo-f030r8 \
nucleo-f303k8 nucleo-f334r8 nucleo-l053r8 \ nucleo-f303k8 nucleo-f334r8 nucleo-l053r8 \
stm32f0discovery stm32f0discovery

View File

@ -1,6 +1,7 @@
include ../Makefile.tests_common include ../Makefile.tests_common
BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-uno nucleo-f031k6 BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-nano arduino-uno \
nucleo-f031k6
TEST_ON_CI_WHITELIST += all TEST_ON_CI_WHITELIST += all

View File

@ -1,6 +1,6 @@
include ../Makefile.tests_common include ../Makefile.tests_common
BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-uno \ BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-nano arduino-uno \
nucleo-f031k6 nucleo-f042k6 nucleo-l031k6 \ nucleo-f031k6 nucleo-f042k6 nucleo-l031k6 \
nucleo-f030r8 nucleo-l053r8 stm32f0discovery nucleo-f030r8 nucleo-l053r8 stm32f0discovery

View File

@ -1,7 +1,8 @@
include ../Makefile.tests_common include ../Makefile.tests_common
BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-mega2560 arduino-uno \ BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-mega2560 arduino-nano \
chronos mega-xplained msb-430 msb-430h nucleo-f030r8 \ arduino-uno chronos mega-xplained msb-430 \
msb-430h nucleo-f030r8 \
nucleo-f031k6 nucleo-f042k6 nucleo-f303k8 \ nucleo-f031k6 nucleo-f042k6 nucleo-f303k8 \
nucleo-f334r8 nucleo-l031k6 nucleo-l053r8 \ nucleo-f334r8 nucleo-l031k6 nucleo-l053r8 \
stm32f0discovery telosb waspmote-pro z1 stm32f0discovery telosb waspmote-pro z1

View File

@ -4,7 +4,8 @@
CFLAGS += -DNDEBUG CFLAGS += -DNDEBUG
include ../Makefile.tests_common include ../Makefile.tests_common
BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-uno nucleo-f031k6 BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-nano arduino-uno \
nucleo-f031k6
DISABLE_MODULE = auto_init DISABLE_MODULE = auto_init

View File

@ -1,8 +1,9 @@
include ../Makefile.tests_common include ../Makefile.tests_common
BOARD_BLACKLIST := arduino-mega2560 chronos msb-430 msb-430h telosb \ BOARD_BLACKLIST := arduino-duemilanove arduino-mega2560 arduino-nano \
wsn430-v1_3b wsn430-v1_4 z1 waspmote-pro arduino-uno \ arduino-uno chronos jiminy-mega256rfr2 mega-xplained \
arduino-duemilanove jiminy-mega256rfr2 mega-xplained msb-430 msb-430h telosb waspmote-pro \
wsn430-v1_3b wsn430-v1_4 z1
BOARD_INSUFFICIENT_MEMORY := nucleo-f031k6 nucleo-f042k6 nucleo-l031k6 nucleo-f030r8 \ BOARD_INSUFFICIENT_MEMORY := nucleo-f031k6 nucleo-f042k6 nucleo-l031k6 nucleo-f030r8 \
nucleo-f303k8 nucleo-f334r8 nucleo-l053r8 \ nucleo-f303k8 nucleo-f334r8 nucleo-l053r8 \
stm32f0discovery stm32f0discovery

View File

@ -3,7 +3,7 @@ include ../Makefile.tests_common
FEATURES_REQUIRED += periph_eeprom FEATURES_REQUIRED += periph_eeprom
BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-uno BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-nano arduino-uno
USEMODULE += shell USEMODULE += shell
USEMODULE += shell_commands # provides reboot command USEMODULE += shell_commands # provides reboot command

View File

@ -1,6 +1,6 @@
include ../Makefile.tests_common include ../Makefile.tests_common
BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-uno BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-nano arduino-uno
FEATURES_REQUIRED = periph_gpio FEATURES_REQUIRED = periph_gpio
FEATURES_OPTIONAL = periph_gpio_irq FEATURES_OPTIONAL = periph_gpio_irq

View File

@ -1,6 +1,6 @@
include ../Makefile.tests_common include ../Makefile.tests_common
BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-uno BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-nano arduino-uno
FEATURES_REQUIRED = periph_gpio FEATURES_REQUIRED = periph_gpio

View File

@ -1,7 +1,7 @@
BOARD ?= samr21-xpro BOARD ?= samr21-xpro
include ../Makefile.tests_common include ../Makefile.tests_common
BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-uno BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-nano arduino-uno
FEATURES_REQUIRED = periph_i2c FEATURES_REQUIRED = periph_i2c

View File

@ -1,7 +1,7 @@
BOARD ?= samr21-xpro BOARD ?= samr21-xpro
include ../Makefile.tests_common include ../Makefile.tests_common
BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-uno BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-nano arduino-uno
FEATURES_REQUIRED = periph_pwm FEATURES_REQUIRED = periph_pwm

View File

@ -1,7 +1,7 @@
BOARD ?= samr21-xpro BOARD ?= samr21-xpro
include ../Makefile.tests_common include ../Makefile.tests_common
BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-uno BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-nano arduino-uno
FEATURES_REQUIRED = periph_spi FEATURES_REQUIRED = periph_spi

View File

@ -1,6 +1,6 @@
include ../Makefile.tests_common include ../Makefile.tests_common
BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-uno BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-nano arduino-uno
FEATURES_REQUIRED = periph_timer FEATURES_REQUIRED = periph_timer

View File

@ -1,6 +1,7 @@
include ../Makefile.tests_common include ../Makefile.tests_common
BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-uno nucleo-f031k6 BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-nano arduino-uno \
nucleo-f031k6
FEATURES_REQUIRED += periph_uart FEATURES_REQUIRED += periph_uart
FEATURES_OPTIONAL += periph_lpuart # STM32 L0 and L4 provides lpuart support FEATURES_OPTIONAL += periph_lpuart # STM32 L0 and L4 provides lpuart support

View File

@ -2,7 +2,8 @@ include ../Makefile.tests_common
#malloc.h not found #malloc.h not found
BOARD_BLACKLIST := jiminy-mega256rfr2 mega-xplained BOARD_BLACKLIST := jiminy-mega256rfr2 mega-xplained
BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-uno nucleo-f031k6 BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-nano arduino-uno \
nucleo-f031k6
USEMODULE += pipe USEMODULE += pipe

View File

@ -2,6 +2,7 @@ include ../Makefile.tests_common
BOARD_BLACKLIST := arduino-duemilanove \ BOARD_BLACKLIST := arduino-duemilanove \
arduino-mega2560 \ arduino-mega2560 \
arduino-nano \
arduino-uno \ arduino-uno \
chronos \ chronos \
jiminy-mega256rfr2 \ jiminy-mega256rfr2 \

View File

@ -2,7 +2,7 @@ include ../Makefile.tests_common
BOARD ?= native BOARD ?= native
BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-uno BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-nano arduino-uno
FEATURES_OPTIONAL += periph_rtc FEATURES_OPTIONAL += periph_rtc

View File

@ -25,7 +25,7 @@ else
USEMODULE += mtd_sdcard USEMODULE += mtd_sdcard
endif endif
BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-uno \ BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-nano arduino-uno \
msb-430 msb-430h nucleo-f031k6 telosb \ msb-430 msb-430h nucleo-f031k6 telosb \
wsn430-v1_3b wsn430-v1_4 z1 wsn430-v1_3b wsn430-v1_4 z1

View File

@ -1,8 +1,9 @@
include ../Makefile.tests_common include ../Makefile.tests_common
BOARD_BLACKLIST := arduino-duemilanove arduino-mega2560 arduino-uno \ BOARD_BLACKLIST := arduino-duemilanove arduino-mega2560 arduino-nano \
jiminy-mega256rfr2 mega-xplained waspmote-pro \ arduino-uno chronos jiminy-mega256rfr2 mega-xplained \
chronos msb-430 msb-430h telosb wsn430-v1_3b wsn430-v1_4 z1 msb-430 msb-430h telosb waspmote-pro wsn430-v1_3b \
wsn430-v1_4 z1
BOARD_INSUFFICIENT_MEMORY := nucleo-f031k6 nucleo-f042k6 BOARD_INSUFFICIENT_MEMORY := nucleo-f031k6 nucleo-f042k6

View File

@ -1,6 +1,7 @@
include ../Makefile.tests_common include ../Makefile.tests_common
BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove \ BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove \
arduino-nano \
arduino-uno \ arduino-uno \
nucleo-f031k6 \ nucleo-f031k6 \
# #

View File

@ -1,10 +1,10 @@
include ../Makefile.tests_common include ../Makefile.tests_common
# BLAKE2s + BLAKE2 is too big for these boards # BLAKE2s + BLAKE2 is too big for these boards
BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-uno chronos \ BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-nano arduino-uno \
mega-xplained msb-430 msb-430h nucleo-f031k6 \ chronos mega-xplained msb-430 msb-430h \
nucleo-f042k6 nucleo-l031k6 telosb waspmote-pro \ nucleo-f031k6 nucleo-f042k6 nucleo-l031k6 telosb \
wsn430-v1_3b wsn430-v1_4 z1 waspmote-pro wsn430-v1_3b wsn430-v1_4 z1
TEST_ON_CI_WHITELIST += all TEST_ON_CI_WHITELIST += all

View File

@ -1,9 +1,9 @@
include ../Makefile.tests_common include ../Makefile.tests_common
# msp430 and avr have problems with int width and libcoaps usage of :x notation in structs # msp430 and avr have problems with int width and libcoaps usage of :x notation in structs
BOARD_BLACKLIST := arduino-mega2560 chronos msb-430 msb-430h telosb wsn430-v1_3b \ BOARD_BLACKLIST := arduino-duemilanove arduino-mega2560 arduino-nano \
wsn430-v1_4 z1 waspmote-pro arduino-uno arduino-duemilanove \ arduino-uno chronos jiminy-mega256rfr2 mega-xplained msb-430 \
jiminy-mega256rfr2 mega-xplained msb-430h telosb waspmote-pro wsn430-v1_3b wsn430-v1_4 z1
BOARD_INSUFFICIENT_MEMORY := chronos msb-430 msb-430h nucleo-f031k6 nucleo-f042k6 \ BOARD_INSUFFICIENT_MEMORY := chronos msb-430 msb-430h nucleo-f031k6 nucleo-f042k6 \
nucleo-l031k6 nucleo-f030r8 nucleo-f070rb \ nucleo-l031k6 nucleo-f030r8 nucleo-f070rb \
nucleo-f303k8 nucleo-f334r8 nucleo-l053r8 \ nucleo-f303k8 nucleo-f334r8 nucleo-l053r8 \

View File

@ -1,9 +1,10 @@
include ../Makefile.tests_common include ../Makefile.tests_common
# HACL* only compiles on 32bit platforms # HACL* only compiles on 32bit platforms
BOARD_BLACKLIST := arduino-duemilanove arduino-mega2560 arduino-uno \ BOARD_BLACKLIST := arduino-duemilanove arduino-mega2560 arduino-nano \
jiminy-mega256rfr2 mega-xplained waspmote-pro \ arduino-uno chronos jiminy-mega256rfr2 mega-xplained \
chronos msb-430 msb-430h telosb wsn430-v1_3b wsn430-v1_4 z1 msb-430 msb-430h telosb waspmote-pro wsn430-v1_3b \
wsn430-v1_4 z1
BOARD_INSUFFICIENT_MEMORY := nucleo-f030r8 nucleo-f031k6 nucleo-f042k6 \ BOARD_INSUFFICIENT_MEMORY := nucleo-f030r8 nucleo-f031k6 nucleo-f042k6 \
nucleo-l031k6 nucleo-l053r8 stm32f0discovery nucleo-l031k6 nucleo-l053r8 stm32f0discovery

View File

@ -1,6 +1,6 @@
include ../Makefile.tests_common include ../Makefile.tests_common
BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-uno BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-nano arduino-uno
# micro-ecc is not 16 bit compatible # micro-ecc is not 16 bit compatible
BOARD_BLACKLIST = chronos msb-430 msb-430h telosb wsn430-v1_3b wsn430-v1_4 z1 BOARD_BLACKLIST = chronos msb-430 msb-430h telosb wsn430-v1_3b wsn430-v1_4 z1

View File

@ -1,10 +1,10 @@
include ../Makefile.tests_common include ../Makefile.tests_common
BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-mega2560 arduino-uno \ BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-mega2560 arduino-nano \
chronos msb-430 msb-430h nucleo-f031k6 \ arduino-uno chronos msb-430 msb-430h \
nucleo-f042k6 nucleo-f303k8 nucleo-l031k6 \ nucleo-f031k6 nucleo-f042k6 nucleo-f303k8 \
nucleo-f030r8 nucleo-l053r8 stm32f0discovery \ nucleo-l031k6 nucleo-f030r8 nucleo-l053r8 \
telosb waspmote-pro z1 stm32f0discovery telosb waspmote-pro z1
# Include packages that pull up and auto-init the link layer. # Include packages that pull up and auto-init the link layer.
# NOTE: 6LoWPAN will be included if IEEE802.15.4 devices are present # NOTE: 6LoWPAN will be included if IEEE802.15.4 devices are present

View File

@ -8,6 +8,7 @@ BOARD_BLACKLIST := chronos msb-430 msb-430h telosb wsn430-v1_3b wsn430-v1_4 z1
# Incompatible due to non-standard ATmega time.h # Incompatible due to non-standard ATmega time.h
BOARD_BLACKLIST += arduino-duemilanove \ BOARD_BLACKLIST += arduino-duemilanove \
arduino-mega2560 \ arduino-mega2560 \
arduino-nano \
arduino-uno \ arduino-uno \
jiminy-mega256rfr2 \ jiminy-mega256rfr2 \
mega-xplained \ mega-xplained \

View File

@ -1,9 +1,10 @@
include ../Makefile.tests_common include ../Makefile.tests_common
# No 8 bit and 16 bit support # No 8 bit and 16 bit support
BOARD_BLACKLIST := arduino-duemilanove arduino-mega2560 arduino-uno chronos \ BOARD_BLACKLIST := arduino-duemilanove arduino-mega2560 arduino-nano \
jiminy-mega256rfr2 mega-xplained msb-430 msb-430h telosb \ arduino-uno chronos jiminy-mega256rfr2 mega-xplained \
waspmote-pro wsn430-v1_3b wsn430-v1_4 z1 msb-430 msb-430h telosb waspmote-pro wsn430-v1_3b \
wsn430-v1_4 z1
BOARD_INSUFFICIENT_MEMORY := nucleo-f031k6 nucleo-f042k6 BOARD_INSUFFICIENT_MEMORY := nucleo-f031k6 nucleo-f042k6

View File

@ -5,7 +5,8 @@ TEST_ON_CI_WHITELIST += all
# qDSA is not 16 bit compatible # qDSA is not 16 bit compatible
BOARD_BLACKLIST := chronos msb-430 msb-430h telosb wsn430-v1_3b wsn430-v1_4 z1 BOARD_BLACKLIST := chronos msb-430 msb-430h telosb wsn430-v1_3b wsn430-v1_4 z1
BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-uno nucleo-f031k6 BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-nano arduino-uno \
nucleo-f031k6
CFLAGS += -DTHREAD_STACKSIZE_MAIN=\(4*THREAD_STACKSIZE_DEFAULT\) CFLAGS += -DTHREAD_STACKSIZE_MAIN=\(4*THREAD_STACKSIZE_DEFAULT\)

View File

@ -3,6 +3,7 @@ include ../Makefile.tests_common
# The following boards are known to fail or have not been tested. # The following boards are known to fail or have not been tested.
BOARD_BLACKLIST := arduino-duemilanove \ BOARD_BLACKLIST := arduino-duemilanove \
arduino-mega2560 \ arduino-mega2560 \
arduino-nano \
arduino-uno \ arduino-uno \
chronos \ chronos \
f4vi1 \ f4vi1 \

View File

@ -2,7 +2,7 @@ BOARD ?= b-l072z-lrwan1
include ../Makefile.tests_common include ../Makefile.tests_common
BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-uno \ BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-nano arduino-uno \
nucleo-f031k6 nucleo-f042k6 nucleo-l031k6 nucleo-f031k6 nucleo-f042k6 nucleo-l031k6
BOARD_BLACKLIST := msb-430 msb-430h pic32-clicker pic32-wifire \ BOARD_BLACKLIST := msb-430 msb-430h pic32-clicker pic32-wifire \

View File

@ -1,6 +1,6 @@
include ../Makefile.tests_common include ../Makefile.tests_common
BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-uno BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-nano arduino-uno
BOARD_BLACKLIST := wsn430-v1_3b wsn430-v1_4 BOARD_BLACKLIST := wsn430-v1_3b wsn430-v1_4

View File

@ -1,11 +1,12 @@
include ../Makefile.tests_common include ../Makefile.tests_common
# No 8 bit and 16 bit support yet # No 8 bit and 16 bit support yet
BOARD_BLACKLIST := arduino-duemilanove arduino-mega2560 arduino-uno chronos \ BOARD_BLACKLIST := arduino-duemilanove arduino-mega2560 arduino-nano \
jiminy-mega256rfr2 mega-xplained msb-430 msb-430h telosb \ arduino-uno chronos esp32-mh-et-live-minikit \
waspmote-pro wsn430-v1_3b wsn430-v1_4 z1 \ esp32-olimex-evb esp32-wemos-lolin-d32-pro \
esp32-mh-et-live-minikit esp32-olimex-evb esp32-wemos-lolin-d32-pro \ esp32-wroom-32 esp32-wrover-kit jiminy-mega256rfr2 \
esp32-wroom-32 esp32-wrover-kit mega-xplained msb-430 msb-430h telosb waspmote-pro \
wsn430-v1_3b wsn430-v1_4 z1 \
USEMODULE += embunit USEMODULE += embunit
USEMODULE += fmt USEMODULE += fmt

View File

@ -3,6 +3,7 @@ include ../Makefile.tests_common
BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove \ BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove \
arduino-uno \ arduino-uno \
arduino-mega2560 \ arduino-mega2560 \
arduino-nano \
mega-xplained \ mega-xplained \
nucleo-f031k6 \ nucleo-f031k6 \
nucleo-f042k6 \ nucleo-f042k6 \

View File

@ -1,6 +1,6 @@
include ../Makefile.tests_common include ../Makefile.tests_common
BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-uno \ BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-nano arduino-uno \
chronos msb-430 msb-430h nucleo-f031k6 telosb \ chronos msb-430 msb-430h nucleo-f031k6 telosb \
wsn430-v1_3b wsn430-v1_4 z1 wsn430-v1_3b wsn430-v1_4 z1

View File

@ -1,7 +1,7 @@
include ../Makefile.tests_common include ../Makefile.tests_common
BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-mega2560 arduino-uno \ BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-mega2560 arduino-nano \
waspmote-pro arduino-uno waspmote-pro
USEMODULE += xtimer USEMODULE += xtimer

View File

@ -1,6 +1,6 @@
include ../Makefile.tests_common include ../Makefile.tests_common
BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-uno \ BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-nano arduino-uno \
chronos mbed_lpc1768 msb-430 msb-430h nrf6310 \ chronos mbed_lpc1768 msb-430 msb-430h nrf6310 \
nucleo-f031k6 nucleo-f042k6 nucleo-l031k6 \ nucleo-f031k6 nucleo-f042k6 nucleo-l031k6 \
nucleo-f030r8 nucleo-f303k8 nucleo-f334r8 \ nucleo-f030r8 nucleo-f303k8 nucleo-f334r8 \

View File

@ -1,6 +1,6 @@
include ../Makefile.tests_common include ../Makefile.tests_common
BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-uno \ BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-nano arduino-uno \
chronos msb-430 msb-430h nucleo-f030r8 \ chronos msb-430 msb-430h nucleo-f030r8 \
nucleo-l053r8 nucleo-f031k6 nucleo-f042k6 \ nucleo-l053r8 nucleo-f031k6 nucleo-f042k6 \
nucleo-l031k6 stm32f0discovery telosb \ nucleo-l031k6 stm32f0discovery telosb \

View File

@ -1,7 +1,7 @@
include ../Makefile.tests_common include ../Makefile.tests_common
BOARD_BLACKLIST := arduino-mega2560 waspmote-pro arduino-uno arduino-duemilanove \ BOARD_BLACKLIST := arduino-duemilanove arduino-mega2560 arduino-nano \
jiminy-mega256rfr2 mega-xplained arduino-uno jiminy-mega256rfr2 mega-xplained waspmote-pro
# arduino mega2560 uno duemilanove : unknown type name: clockid_t # arduino mega2560 uno duemilanove : unknown type name: clockid_t
# jiminy-mega256rfr2: unknown type name: clockid_t # jiminy-mega256rfr2: unknown type name: clockid_t
# mega-xplained: unknown type name: clockid_t # mega-xplained: unknown type name: clockid_t

View File

@ -1,7 +1,7 @@
include ../Makefile.tests_common include ../Makefile.tests_common
BOARD_BLACKLIST := arduino-mega2560 waspmote-pro arduino-uno arduino-duemilanove \ BOARD_BLACKLIST := arduino-duemilanove arduino-mega2560 arduino-nano \
jiminy-mega256rfr2 mega-xplained arduino-uno jiminy-mega256rfr2 mega-xplained waspmote-pro
# arduino mega2560 uno duemilanove : unknown type name: clockid_t # arduino mega2560 uno duemilanove : unknown type name: clockid_t
# jiminy-mega256rfr2: unknown type name: clockid_t # jiminy-mega256rfr2: unknown type name: clockid_t
# mega-xplained: unknown type name: clockid_t # mega-xplained: unknown type name: clockid_t

View File

@ -1,7 +1,7 @@
include ../Makefile.tests_common include ../Makefile.tests_common
BOARD_BLACKLIST := arduino-mega2560 waspmote-pro arduino-uno arduino-duemilanove \ BOARD_BLACKLIST := arduino-duemilanove arduino-mega2560 arduino-nano \
jiminy-mega256rfr2 mega-xplained arduino-uno jiminy-mega256rfr2 mega-xplained waspmote-pro
# arduino mega2560 uno duemilanove : unknown type name: clockid_t # arduino mega2560 uno duemilanove : unknown type name: clockid_t
# jiminy-mega256rfr2: unknown type name: clockid_t # jiminy-mega256rfr2: unknown type name: clockid_t
# mega-xplained: unknown type name: clockid_t # mega-xplained: unknown type name: clockid_t

View File

@ -1,7 +1,7 @@
include ../Makefile.tests_common include ../Makefile.tests_common
BOARD_BLACKLIST := arduino-mega2560 waspmote-pro arduino-uno arduino-duemilanove \ BOARD_BLACKLIST := arduino-duemilanove arduino-mega2560 arduino-nano \
jiminy-mega256rfr2 mega-xplained arduino-uno jiminy-mega256rfr2 mega-xplained waspmote-pro
# arduino mega2560 uno duemilanove : unknown type name: clockid_t # arduino mega2560 uno duemilanove : unknown type name: clockid_t
# jiminy-mega256rfr2: unknown type name: clockid_t # jiminy-mega256rfr2: unknown type name: clockid_t
# mega-xplained: unknown type name: clockid_t # mega-xplained: unknown type name: clockid_t

View File

@ -1,7 +1,7 @@
include ../Makefile.tests_common include ../Makefile.tests_common
BOARD_BLACKLIST := arduino-mega2560 waspmote-pro arduino-uno arduino-duemilanove \ BOARD_BLACKLIST := arduino-duemilanove arduino-mega2560 arduino-nano \
jiminy-mega256rfr2 mega-xplained arduino-uno jiminy-mega256rfr2 mega-xplained waspmote-pro
# arduino mega2560 uno duemilanove : unknown type name: clockid_t # arduino mega2560 uno duemilanove : unknown type name: clockid_t
# jiminy-mega256rfr2: unknown type name: clockid_t # jiminy-mega256rfr2: unknown type name: clockid_t
# mega-xplained: unknown type name: clockid_t # mega-xplained: unknown type name: clockid_t

View File

@ -1,7 +1,7 @@
include ../Makefile.tests_common include ../Makefile.tests_common
BOARD_BLACKLIST := arduino-mega2560 waspmote-pro arduino-uno arduino-duemilanove \ BOARD_BLACKLIST := arduino-duemilanove arduino-mega2560 arduino-nano \
jiminy-mega256rfr2 mega-xplained arduino-uno jiminy-mega256rfr2 mega-xplained waspmote-pro
# arduino mega2560 uno duemilanove : unknown type name: clockid_t # arduino mega2560 uno duemilanove : unknown type name: clockid_t
# jiminy-mega256rfr2: unknown type name: clockid_t # jiminy-mega256rfr2: unknown type name: clockid_t
# mega-xplained: unknown type name: clockid_t # mega-xplained: unknown type name: clockid_t

View File

@ -1,7 +1,7 @@
include ../Makefile.tests_common include ../Makefile.tests_common
BOARD_BLACKLIST := arduino-mega2560 waspmote-pro arduino-uno arduino-duemilanove \ BOARD_BLACKLIST := arduino-duemilanove arduino-mega2560 arduino-nano \
jiminy-mega256rfr2 mega-xplained arduino-uno jiminy-mega256rfr2 mega-xplained waspmote-pro
# arduino mega2560 uno duemilanove : unknown type name: clockid_t # arduino mega2560 uno duemilanove : unknown type name: clockid_t
# jiminy-mega256rfr2: unknown type name: clockid_t # jiminy-mega256rfr2: unknown type name: clockid_t
# mega-xplained: unknown type name: clockid_t # mega-xplained: unknown type name: clockid_t

View File

@ -1,6 +1,6 @@
include ../Makefile.tests_common include ../Makefile.tests_common
BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-uno \ BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-nano arduino-uno \
nucleo-f031k6 nucleo-f042k6 nucleo-l031k6 \ nucleo-f031k6 nucleo-f042k6 nucleo-l031k6 \
nucleo-f030r8 nucleo-l053r8 stm32f0discovery nucleo-f030r8 nucleo-l053r8 stm32f0discovery

View File

@ -2,7 +2,7 @@ include ../Makefile.tests_common
# some boards have not enough rom and/or ram # some boards have not enough rom and/or ram
BOARD_BLACKLIST += nucleo-f031k6 nucleo-f042k6 nucleo-l031k6 pic32-clicker BOARD_BLACKLIST += nucleo-f031k6 nucleo-f042k6 nucleo-l031k6 pic32-clicker
BOARD_INSUFFICIENT_MEMORY += arduino-duemilanove arduino-uno BOARD_INSUFFICIENT_MEMORY += arduino-duemilanove arduino-nano arduino-uno
# override PRNG if desired (see sys/random for alternatives) # override PRNG if desired (see sys/random for alternatives)
# USEMODULE += prng_minstd # USEMODULE += prng_minstd

Some files were not shown because too many files have changed in this diff Show More