mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-01-17 04:52:59 +01:00
tests: BOARD_INSUFFICIENT_MEMORY -> Makefile.ci
- Moved the BOARD_INSUFFICIENT_MEMORY list into Makefile.ci - Formatted the list to contain one board per line - Sorted the lists alphabetically
This commit is contained in:
parent
d9e4361246
commit
fd6fedaab6
@ -1,7 +1,5 @@
|
||||
include ../Makefile.tests_common
|
||||
|
||||
BOARD_INSUFFICIENT_MEMORY := nucleo-f031k6
|
||||
|
||||
USEMODULE += xtimer
|
||||
|
||||
include $(RIOTBASE)/Makefile.include
|
||||
|
3
tests/bench_msg_pingpong/Makefile.ci
Normal file
3
tests/bench_msg_pingpong/Makefile.ci
Normal file
@ -0,0 +1,3 @@
|
||||
BOARD_INSUFFICIENT_MEMORY := \
|
||||
nucleo-f031k6 \
|
||||
#
|
@ -1,7 +1,5 @@
|
||||
include ../Makefile.tests_common
|
||||
|
||||
BOARD_INSUFFICIENT_MEMORY := nucleo-f031k6
|
||||
|
||||
USEMODULE += xtimer
|
||||
|
||||
include $(RIOTBASE)/Makefile.include
|
||||
|
3
tests/bench_mutex_pingpong/Makefile.ci
Normal file
3
tests/bench_mutex_pingpong/Makefile.ci
Normal file
@ -0,0 +1,3 @@
|
||||
BOARD_INSUFFICIENT_MEMORY := \
|
||||
nucleo-f031k6 \
|
||||
#
|
@ -1,8 +1,5 @@
|
||||
include ../Makefile.tests_common
|
||||
|
||||
BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-leonardo arduino-nano \
|
||||
arduino-uno
|
||||
|
||||
# Modules that will have an impact on the size of the TCB (thread_t):
|
||||
#
|
||||
# disabled by default, enable on demand:
|
||||
|
6
tests/bench_sizeof_coretypes/Makefile.ci
Normal file
6
tests/bench_sizeof_coretypes/Makefile.ci
Normal file
@ -0,0 +1,6 @@
|
||||
BOARD_INSUFFICIENT_MEMORY := \
|
||||
arduino-duemilanove \
|
||||
arduino-leonardo \
|
||||
arduino-nano \
|
||||
arduino-uno \
|
||||
#
|
@ -1,7 +1,5 @@
|
||||
include ../Makefile.tests_common
|
||||
|
||||
BOARD_INSUFFICIENT_MEMORY := nucleo-f031k6
|
||||
|
||||
USEMODULE += core_thread_flags
|
||||
USEMODULE += xtimer
|
||||
|
||||
|
3
tests/bench_thread_flags_pingpong/Makefile.ci
Normal file
3
tests/bench_thread_flags_pingpong/Makefile.ci
Normal file
@ -0,0 +1,3 @@
|
||||
BOARD_INSUFFICIENT_MEMORY := \
|
||||
nucleo-f031k6 \
|
||||
#
|
@ -1,7 +1,5 @@
|
||||
include ../Makefile.tests_common
|
||||
|
||||
BOARD_INSUFFICIENT_MEMORY := nucleo-f031k6
|
||||
|
||||
USEMODULE += xtimer
|
||||
|
||||
include $(RIOTBASE)/Makefile.include
|
||||
|
3
tests/bench_thread_yield_pingpong/Makefile.ci
Normal file
3
tests/bench_thread_yield_pingpong/Makefile.ci
Normal file
@ -0,0 +1,3 @@
|
||||
BOARD_INSUFFICIENT_MEMORY := \
|
||||
nucleo-f031k6 \
|
||||
#
|
@ -1,8 +1,5 @@
|
||||
include ../Makefile.tests_common
|
||||
|
||||
BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-leonardo arduino-nano \
|
||||
arduino-uno
|
||||
|
||||
# These boards only have a single timer in their periph_conf.h, needs special
|
||||
# CFLAGS configuration to build properly
|
||||
SINGLE_TIMER_BOARDS = \
|
||||
|
6
tests/bench_timers/Makefile.ci
Normal file
6
tests/bench_timers/Makefile.ci
Normal file
@ -0,0 +1,6 @@
|
||||
BOARD_INSUFFICIENT_MEMORY := \
|
||||
arduino-duemilanove \
|
||||
arduino-leonardo \
|
||||
arduino-nano \
|
||||
arduino-uno \
|
||||
#
|
@ -1,9 +1,5 @@
|
||||
include ../Makefile.tests_common
|
||||
|
||||
BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-leonardo arduino-nano \
|
||||
arduino-uno chronos msb-430 msb-430h telosb \
|
||||
wsn430-v1_3b wsn430-v1_4 z1
|
||||
|
||||
USEMODULE += hashes
|
||||
USEMODULE += bloom
|
||||
USEMODULE += random
|
||||
|
13
tests/bloom_bytes/Makefile.ci
Normal file
13
tests/bloom_bytes/Makefile.ci
Normal file
@ -0,0 +1,13 @@
|
||||
BOARD_INSUFFICIENT_MEMORY := \
|
||||
arduino-duemilanove \
|
||||
arduino-leonardo \
|
||||
arduino-nano \
|
||||
arduino-uno \
|
||||
chronos \
|
||||
msb-430 \
|
||||
msb-430h \
|
||||
telosb \
|
||||
wsn430-v1_3b \
|
||||
wsn430-v1_4 \
|
||||
z1 \
|
||||
#
|
@ -1,9 +1,6 @@
|
||||
export APPLICATION = can_trx
|
||||
include ../Makefile.tests_common
|
||||
|
||||
BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-leonardo arduino-nano \
|
||||
arduino-uno
|
||||
|
||||
USEMODULE += shell
|
||||
USEMODULE += shell_commands
|
||||
USEMODULE += ps
|
||||
|
6
tests/can_trx/Makefile.ci
Normal file
6
tests/can_trx/Makefile.ci
Normal file
@ -0,0 +1,6 @@
|
||||
BOARD_INSUFFICIENT_MEMORY := \
|
||||
arduino-duemilanove \
|
||||
arduino-leonardo \
|
||||
arduino-nano \
|
||||
arduino-uno \
|
||||
#
|
@ -1,12 +1,5 @@
|
||||
include ../Makefile.tests_common
|
||||
|
||||
BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-leonardo arduino-nano \
|
||||
arduino-uno i-nucleo-lrwan1 nucleo32-f031 \
|
||||
nucleo32-f042 nucleo32-l031 nucleo-f030 \
|
||||
nucleo-f030r8 nucleo-f031k6 nucleo-f042k6 \
|
||||
nucleo-l031k6 nucleo-l053 nucleo-l053r8 \
|
||||
stm32f0discovery stm32l0538-disco
|
||||
|
||||
USEMODULE += test_utils_interactive_sync
|
||||
|
||||
include $(RIOTBASE)/Makefile.include
|
||||
|
19
tests/cond_order/Makefile.ci
Normal file
19
tests/cond_order/Makefile.ci
Normal file
@ -0,0 +1,19 @@
|
||||
BOARD_INSUFFICIENT_MEMORY := \
|
||||
arduino-duemilanove \
|
||||
arduino-leonardo \
|
||||
arduino-nano \
|
||||
arduino-uno \
|
||||
i-nucleo-lrwan1 \
|
||||
nucleo-f030 \
|
||||
nucleo-f030r8 \
|
||||
nucleo-f031k6 \
|
||||
nucleo-f042k6 \
|
||||
nucleo-l031k6 \
|
||||
nucleo-l053 \
|
||||
nucleo-l053r8 \
|
||||
nucleo32-f031 \
|
||||
nucleo32-f042 \
|
||||
nucleo32-l031 \
|
||||
stm32f0discovery \
|
||||
stm32l0538-disco \
|
||||
#
|
@ -1,17 +1,5 @@
|
||||
include ../Makefile.tests_common
|
||||
|
||||
BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-leonardo \
|
||||
arduino-mega2560 arduino-nano \
|
||||
arduino-uno chronos hifive1 hifive1b i-nucleo-lrwan1 \
|
||||
msb-430 msb-430h \
|
||||
nucleo-f031k6 nucleo-f042k6 nucleo-f303k8 \
|
||||
nucleo-l031k6 nucleo-f030r8 nucleo-f070rb \
|
||||
nucleo-f072rb nucleo-f302r8 nucleo-f303re \
|
||||
nucleo-f334r8 nucleo-l053r8 saml10-xpro \
|
||||
saml11-xpro stm32f0discovery stm32l0538-disco \
|
||||
telosb waspmote-pro \
|
||||
wsn430-v1_3b wsn430-v1_4 z1
|
||||
|
||||
USEMODULE += shell
|
||||
USEMODULE += shell_commands
|
||||
USEMODULE += ps
|
||||
|
33
tests/conn_can/Makefile.ci
Normal file
33
tests/conn_can/Makefile.ci
Normal file
@ -0,0 +1,33 @@
|
||||
BOARD_INSUFFICIENT_MEMORY := \
|
||||
arduino-duemilanove \
|
||||
arduino-leonardo \
|
||||
arduino-mega2560 \
|
||||
arduino-nano \
|
||||
arduino-uno \
|
||||
chronos \
|
||||
hifive1 \
|
||||
hifive1b \
|
||||
i-nucleo-lrwan1 \
|
||||
msb-430 \
|
||||
msb-430h \
|
||||
nucleo-f030r8 \
|
||||
nucleo-f031k6 \
|
||||
nucleo-f042k6 \
|
||||
nucleo-f070rb \
|
||||
nucleo-f072rb \
|
||||
nucleo-f302r8 \
|
||||
nucleo-f303k8 \
|
||||
nucleo-f303re \
|
||||
nucleo-f334r8 \
|
||||
nucleo-l031k6 \
|
||||
nucleo-l053r8 \
|
||||
saml10-xpro \
|
||||
saml11-xpro \
|
||||
stm32f0discovery \
|
||||
stm32l0538-disco \
|
||||
telosb \
|
||||
waspmote-pro \
|
||||
wsn430-v1_3b \
|
||||
wsn430-v1_4 \
|
||||
z1 \
|
||||
#
|
@ -1,14 +1,5 @@
|
||||
include ../Makefile.tests_common
|
||||
|
||||
# ROM is overflowing for these boards when using
|
||||
# gcc-arm-none-eabi-4.9.3.2015q2-1trusty1 from ppa:terry.guo/gcc-arm-embedded
|
||||
# (Travis is using this PPA currently, 2015-06-23)
|
||||
# Debian jessie libstdc++-arm-none-eabi-newlib-4.8.3-9+4 works fine, though.
|
||||
# Remove this line if Travis is upgraded to a different toolchain which does
|
||||
# not pull in all C++ locale code whenever exceptions are used.
|
||||
BOARD_INSUFFICIENT_MEMORY := i-nucleo-lrwan1 nucleo-f334r8 spark-core \
|
||||
stm32f0discovery stm32l0538-disco
|
||||
|
||||
# If you want to add some extra flags when compile c++ files, add these flags
|
||||
# to CXXEXFLAGS variable
|
||||
CXXEXFLAGS += -std=c++11
|
||||
|
13
tests/cpp11_condition_variable/Makefile.ci
Normal file
13
tests/cpp11_condition_variable/Makefile.ci
Normal file
@ -0,0 +1,13 @@
|
||||
# ROM is overflowing for these boards when using
|
||||
# gcc-arm-none-eabi-4.9.3.2015q2-1trusty1 from ppa:terry.guo/gcc-arm-embedded
|
||||
# (Travis is using this PPA currently, 2015-06-23)
|
||||
# Debian jessie libstdc++-arm-none-eabi-newlib-4.8.3-9+4 works fine, though.
|
||||
# Remove this line if Travis is upgraded to a different toolchain which does
|
||||
# not pull in all C++ locale code whenever exceptions are used.
|
||||
BOARD_INSUFFICIENT_MEMORY := \
|
||||
i-nucleo-lrwan1 \
|
||||
nucleo-f334r8 \
|
||||
spark-core \
|
||||
stm32f0discovery \
|
||||
stm32l0538-disco \
|
||||
#
|
@ -1,14 +1,5 @@
|
||||
include ../Makefile.tests_common
|
||||
|
||||
# ROM is overflowing for these boards when using
|
||||
# gcc-arm-none-eabi-4.9.3.2015q2-1trusty1 from ppa:terry.guo/gcc-arm-embedded
|
||||
# (Travis is using this PPA currently, 2015-06-23)
|
||||
# Debian jessie libstdc++-arm-none-eabi-newlib-4.8.3-9+4 works fine, though.
|
||||
# Remove this line if Travis is upgraded to a different toolchain which does
|
||||
# not pull in all C++ locale code whenever exceptions are used.
|
||||
BOARD_INSUFFICIENT_MEMORY := i-nucleo-lrwan1 nucleo-f334r8 spark-core \
|
||||
stm32f0discovery stm32l0538-disco
|
||||
|
||||
# If you want to add some extra flags when compile c++ files, add these flags
|
||||
# to CXXEXFLAGS variable
|
||||
CXXEXFLAGS += -std=c++11
|
||||
|
13
tests/cpp11_mutex/Makefile.ci
Normal file
13
tests/cpp11_mutex/Makefile.ci
Normal file
@ -0,0 +1,13 @@
|
||||
# ROM is overflowing for these boards when using
|
||||
# gcc-arm-none-eabi-4.9.3.2015q2-1trusty1 from ppa:terry.guo/gcc-arm-embedded
|
||||
# (Travis is using this PPA currently, 2015-06-23)
|
||||
# Debian jessie libstdc++-arm-none-eabi-newlib-4.8.3-9+4 works fine, though.
|
||||
# Remove this line if Travis is upgraded to a different toolchain which does
|
||||
# not pull in all C++ locale code whenever exceptions are used.
|
||||
BOARD_INSUFFICIENT_MEMORY := \
|
||||
i-nucleo-lrwan1 \
|
||||
nucleo-f334r8 \
|
||||
spark-core \
|
||||
stm32f0discovery \
|
||||
stm32l0538-disco \
|
||||
#
|
@ -1,14 +1,5 @@
|
||||
include ../Makefile.tests_common
|
||||
|
||||
# ROM is overflowing for these boards when using
|
||||
# gcc-arm-none-eabi-4.9.3.2015q2-1trusty1 from ppa:terry.guo/gcc-arm-embedded
|
||||
# (Travis is using this PPA currently, 2015-06-23)
|
||||
# Debian jessie libstdc++-arm-none-eabi-newlib-4.8.3-9+4 works fine, though.
|
||||
# Remove this line if Travis is upgraded to a different toolchain which does
|
||||
# not pull in all C++ locale code whenever exceptions are used.
|
||||
BOARD_INSUFFICIENT_MEMORY := i-nucleo-lrwan1 nucleo-f334r8 spark-core \
|
||||
stm32f0discovery stm32l0538-disco
|
||||
|
||||
# If you want to add some extra flags when compile c++ files, add these flags
|
||||
# to CXXEXFLAGS variable
|
||||
CXXEXFLAGS += -std=c++11
|
||||
|
13
tests/cpp11_thread/Makefile.ci
Normal file
13
tests/cpp11_thread/Makefile.ci
Normal file
@ -0,0 +1,13 @@
|
||||
# ROM is overflowing for these boards when using
|
||||
# gcc-arm-none-eabi-4.9.3.2015q2-1trusty1 from ppa:terry.guo/gcc-arm-embedded
|
||||
# (Travis is using this PPA currently, 2015-06-23)
|
||||
# Debian jessie libstdc++-arm-none-eabi-newlib-4.8.3-9+4 works fine, though.
|
||||
# Remove this line if Travis is upgraded to a different toolchain which does
|
||||
# not pull in all C++ locale code whenever exceptions are used.
|
||||
BOARD_INSUFFICIENT_MEMORY := \
|
||||
i-nucleo-lrwan1 \
|
||||
nucleo-f334r8 \
|
||||
spark-core \
|
||||
stm32f0discovery \
|
||||
stm32l0538-disco \
|
||||
#
|
@ -1,9 +1,5 @@
|
||||
include ../Makefile.tests_common
|
||||
|
||||
BOARD_INSUFFICIENT_MEMORY := arduino-mega2560 \
|
||||
mega-xplained \
|
||||
waspmote-pro
|
||||
|
||||
USEMODULE += adt7310
|
||||
USEMODULE += xtimer
|
||||
|
||||
|
5
tests/driver_adt7310/Makefile.ci
Normal file
5
tests/driver_adt7310/Makefile.ci
Normal file
@ -0,0 +1,5 @@
|
||||
BOARD_INSUFFICIENT_MEMORY := \
|
||||
arduino-mega2560 \
|
||||
mega-xplained \
|
||||
waspmote-pro \
|
||||
#
|
@ -1,8 +1,5 @@
|
||||
include ../Makefile.tests_common
|
||||
|
||||
BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-leonardo arduino-nano \
|
||||
arduino-uno nucleo-f031k6
|
||||
|
||||
USEMODULE += shell
|
||||
USEMODULE += at
|
||||
USEMODULE += at_urc
|
||||
|
7
tests/driver_at/Makefile.ci
Normal file
7
tests/driver_at/Makefile.ci
Normal file
@ -0,0 +1,7 @@
|
||||
BOARD_INSUFFICIENT_MEMORY := \
|
||||
arduino-duemilanove \
|
||||
arduino-leonardo \
|
||||
arduino-nano \
|
||||
arduino-uno \
|
||||
nucleo-f031k6 \
|
||||
#
|
@ -1,8 +1,5 @@
|
||||
include ../Makefile.tests_common
|
||||
|
||||
BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-leonardo arduino-nano \
|
||||
arduino-uno
|
||||
|
||||
USEMODULE += at30tse75x
|
||||
USEMODULE += shell
|
||||
USEMODULE += shell_commands
|
||||
|
6
tests/driver_at30tse75x/Makefile.ci
Normal file
6
tests/driver_at30tse75x/Makefile.ci
Normal file
@ -0,0 +1,6 @@
|
||||
BOARD_INSUFFICIENT_MEMORY := \
|
||||
arduino-duemilanove \
|
||||
arduino-leonardo \
|
||||
arduino-nano \
|
||||
arduino-uno \
|
||||
#
|
@ -1,9 +1,5 @@
|
||||
include ../Makefile.tests_common
|
||||
|
||||
# exclude boards with insufficient memory
|
||||
BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-leonardo arduino-nano \
|
||||
arduino-uno nucleo-f031k6
|
||||
|
||||
DISABLE_MODULE += auto_init
|
||||
|
||||
USEMODULE += od
|
||||
|
7
tests/driver_at86rf2xx/Makefile.ci
Normal file
7
tests/driver_at86rf2xx/Makefile.ci
Normal file
@ -0,0 +1,7 @@
|
||||
BOARD_INSUFFICIENT_MEMORY := \
|
||||
arduino-duemilanove \
|
||||
arduino-leonardo \
|
||||
arduino-nano \
|
||||
arduino-uno \
|
||||
nucleo-f031k6 \
|
||||
#
|
@ -1,8 +1,5 @@
|
||||
include ../Makefile.tests_common
|
||||
|
||||
BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-leonardo arduino-nano \
|
||||
arduino-uno
|
||||
|
||||
USEMODULE += ata8520e
|
||||
USEMODULE += shell
|
||||
USEMODULE += shell_commands
|
||||
|
6
tests/driver_ata8520e/Makefile.ci
Normal file
6
tests/driver_ata8520e/Makefile.ci
Normal file
@ -0,0 +1,6 @@
|
||||
BOARD_INSUFFICIENT_MEMORY := \
|
||||
arduino-duemilanove \
|
||||
arduino-leonardo \
|
||||
arduino-nano \
|
||||
arduino-uno \
|
||||
#
|
@ -1,8 +1,5 @@
|
||||
include ../Makefile.tests_common
|
||||
|
||||
BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-leonardo arduino-nano \
|
||||
arduino-uno
|
||||
|
||||
# include and auto-initialize all available sensors
|
||||
USEMODULE += saul_default
|
||||
# include driver for bmx055 sensor
|
||||
|
6
tests/driver_bmx055/Makefile.ci
Normal file
6
tests/driver_bmx055/Makefile.ci
Normal file
@ -0,0 +1,6 @@
|
||||
BOARD_INSUFFICIENT_MEMORY := \
|
||||
arduino-duemilanove \
|
||||
arduino-leonardo \
|
||||
arduino-nano \
|
||||
arduino-uno \
|
||||
#
|
@ -3,29 +3,6 @@ include ../Makefile.tests_common
|
||||
|
||||
DEVICE ?= cc1100 # The MSB-A2 uses the CC1100. New boards use CC1101
|
||||
|
||||
BOARD_INSUFFICIENT_MEMORY += arduino-duemilanove
|
||||
BOARD_INSUFFICIENT_MEMORY += arduino-leonardo
|
||||
BOARD_INSUFFICIENT_MEMORY += arduino-mega2560
|
||||
BOARD_INSUFFICIENT_MEMORY += arduino-nano
|
||||
BOARD_INSUFFICIENT_MEMORY += arduino-uno
|
||||
BOARD_INSUFFICIENT_MEMORY += blackpill
|
||||
BOARD_INSUFFICIENT_MEMORY += bluepill
|
||||
BOARD_INSUFFICIENT_MEMORY += i-nucleo-lrwan1
|
||||
BOARD_INSUFFICIENT_MEMORY += mega-xplained
|
||||
BOARD_INSUFFICIENT_MEMORY += nucleo-f031k6
|
||||
BOARD_INSUFFICIENT_MEMORY += nucleo-f042k6
|
||||
BOARD_INSUFFICIENT_MEMORY += nucleo-f072rb
|
||||
BOARD_INSUFFICIENT_MEMORY += nucleo-f302r8
|
||||
BOARD_INSUFFICIENT_MEMORY += nucleo-f303k8
|
||||
BOARD_INSUFFICIENT_MEMORY += nucleo-f334r8
|
||||
BOARD_INSUFFICIENT_MEMORY += nucleo-l031k6
|
||||
BOARD_INSUFFICIENT_MEMORY += nucleo-l053r8
|
||||
BOARD_INSUFFICIENT_MEMORY += saml10-xpro
|
||||
BOARD_INSUFFICIENT_MEMORY += saml11-xpro
|
||||
BOARD_INSUFFICIENT_MEMORY += stm32f0discovery
|
||||
BOARD_INSUFFICIENT_MEMORY += stm32l0538-disco
|
||||
BOARD_INSUFFICIENT_MEMORY += waspmote-pro
|
||||
|
||||
# stdlib.h for msp430 does not provide EXIT_FAILURE and EXIT_SUCCESS
|
||||
BOARD_BLACKLIST += msb-430 msb-430h telosb wsn430-v1_3b wsn430-v1_4 z1
|
||||
|
||||
|
24
tests/driver_cc110x/Makefile.ci
Normal file
24
tests/driver_cc110x/Makefile.ci
Normal file
@ -0,0 +1,24 @@
|
||||
BOARD_INSUFFICIENT_MEMORY := \
|
||||
arduino-duemilanove \
|
||||
arduino-leonardo \
|
||||
arduino-mega2560 \
|
||||
arduino-nano \
|
||||
arduino-uno \
|
||||
blackpill \
|
||||
bluepill \
|
||||
i-nucleo-lrwan1 \
|
||||
mega-xplained \
|
||||
nucleo-f031k6 \
|
||||
nucleo-f042k6 \
|
||||
nucleo-f072rb \
|
||||
nucleo-f302r8 \
|
||||
nucleo-f303k8 \
|
||||
nucleo-f334r8 \
|
||||
nucleo-l031k6 \
|
||||
nucleo-l053r8 \
|
||||
saml10-xpro \
|
||||
saml11-xpro \
|
||||
stm32f0discovery \
|
||||
stm32l0538-disco \
|
||||
waspmote-pro \
|
||||
#
|
@ -1,8 +1,5 @@
|
||||
include ../Makefile.tests_common
|
||||
|
||||
BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-leonardo arduino-nano \
|
||||
arduino-uno
|
||||
|
||||
# chronos : USART_1 undeclared
|
||||
BOARD_BLACKLIST += chronos
|
||||
|
||||
|
6
tests/driver_dynamixel/Makefile.ci
Normal file
6
tests/driver_dynamixel/Makefile.ci
Normal file
@ -0,0 +1,6 @@
|
||||
BOARD_INSUFFICIENT_MEMORY := \
|
||||
arduino-duemilanove \
|
||||
arduino-leonardo \
|
||||
arduino-nano \
|
||||
arduino-uno \
|
||||
#
|
@ -1,14 +1,5 @@
|
||||
include ../Makefile.tests_common
|
||||
|
||||
BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-leonardo \
|
||||
arduino-mega2560 arduino-nano \
|
||||
arduino-uno i-nucleo-lrwan1 msb-430 msb-430h \
|
||||
nucleo-f334r8 nucleo-l053r8 nucleo-f031k6 \
|
||||
nucleo-f042k6 nucleo-f303k8 nucleo-l031k6 \
|
||||
mega-xplained stm32f0discovery \
|
||||
stm32l0538-disco telosb \
|
||||
waspmote-pro wsn430-v1_3b wsn430-v1_4 z1
|
||||
|
||||
USEMODULE += auto_init_gnrc_netif
|
||||
USEMODULE += enc28j60
|
||||
USEMODULE += gnrc_ipv6_router_default
|
||||
|
24
tests/driver_enc28j60/Makefile.ci
Normal file
24
tests/driver_enc28j60/Makefile.ci
Normal file
@ -0,0 +1,24 @@
|
||||
BOARD_INSUFFICIENT_MEMORY := \
|
||||
arduino-duemilanove \
|
||||
arduino-leonardo \
|
||||
arduino-mega2560 \
|
||||
arduino-nano \
|
||||
arduino-uno \
|
||||
i-nucleo-lrwan1 \
|
||||
mega-xplained \
|
||||
msb-430 \
|
||||
msb-430h \
|
||||
nucleo-f031k6 \
|
||||
nucleo-f042k6 \
|
||||
nucleo-f303k8 \
|
||||
nucleo-f334r8 \
|
||||
nucleo-l031k6 \
|
||||
nucleo-l053r8 \
|
||||
stm32f0discovery \
|
||||
stm32l0538-disco \
|
||||
telosb \
|
||||
waspmote-pro \
|
||||
wsn430-v1_3b \
|
||||
wsn430-v1_4 \
|
||||
z1 \
|
||||
#
|
@ -1,13 +1,5 @@
|
||||
include ../Makefile.tests_common
|
||||
|
||||
BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-leonardo \
|
||||
arduino-mega2560 arduino-nano \
|
||||
arduino-uno i-nucleo-lrwan1 msb-430 msb-430h \
|
||||
nucleo-l053r8 nucleo-f031k6 nucleo-f042k6 \
|
||||
nucleo-l031k6 stm32f0discovery \
|
||||
stm32l0538-disco telosb \
|
||||
waspmote-pro wsn430-v1_3b wsn430-v1_4 z1
|
||||
|
||||
USEMODULE += auto_init_gnrc_netif
|
||||
USEMODULE += encx24j600
|
||||
USEMODULE += gnrc_ipv6_router_default
|
||||
|
21
tests/driver_encx24j600/Makefile.ci
Normal file
21
tests/driver_encx24j600/Makefile.ci
Normal file
@ -0,0 +1,21 @@
|
||||
BOARD_INSUFFICIENT_MEMORY := \
|
||||
arduino-duemilanove \
|
||||
arduino-leonardo \
|
||||
arduino-mega2560 \
|
||||
arduino-nano \
|
||||
arduino-uno \
|
||||
i-nucleo-lrwan1 \
|
||||
msb-430 \
|
||||
msb-430h \
|
||||
nucleo-f031k6 \
|
||||
nucleo-f042k6 \
|
||||
nucleo-l031k6 \
|
||||
nucleo-l053r8 \
|
||||
stm32f0discovery \
|
||||
stm32l0538-disco \
|
||||
telosb \
|
||||
waspmote-pro \
|
||||
wsn430-v1_3b \
|
||||
wsn430-v1_4 \
|
||||
z1 \
|
||||
#
|
@ -1,8 +1,5 @@
|
||||
include ../Makefile.tests_common
|
||||
|
||||
BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-leonardo arduino-nano \
|
||||
arduino-uno
|
||||
|
||||
# chronos : USART_1 undeclared
|
||||
BOARD_BLACKLIST += chronos
|
||||
|
||||
|
6
tests/driver_feetech/Makefile.ci
Normal file
6
tests/driver_feetech/Makefile.ci
Normal file
@ -0,0 +1,6 @@
|
||||
BOARD_INSUFFICIENT_MEMORY := \
|
||||
arduino-duemilanove \
|
||||
arduino-leonardo \
|
||||
arduino-nano \
|
||||
arduino-uno \
|
||||
#
|
@ -1,11 +1,5 @@
|
||||
include ../Makefile.tests_common
|
||||
|
||||
BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-leonardo \
|
||||
arduino-mega2560 arduino-nano arduino-uno \
|
||||
i-nucleo-lrwan1 nucleo-f031k6 nucleo-f042k6 \
|
||||
nucleo-l031k6 nucleo-f334r8 nucleo-l053r8 \
|
||||
stm32f0discovery stm32l0538-disco waspmote-pro
|
||||
|
||||
USEMODULE += auto_init_gnrc_netif
|
||||
USEMODULE += gnrc_netdev_default
|
||||
USEMODULE += shell
|
||||
|
16
tests/driver_kw2xrf/Makefile.ci
Normal file
16
tests/driver_kw2xrf/Makefile.ci
Normal file
@ -0,0 +1,16 @@
|
||||
BOARD_INSUFFICIENT_MEMORY := \
|
||||
arduino-duemilanove \
|
||||
arduino-leonardo \
|
||||
arduino-mega2560 \
|
||||
arduino-nano \
|
||||
arduino-uno \
|
||||
i-nucleo-lrwan1 \
|
||||
nucleo-f031k6 \
|
||||
nucleo-f042k6 \
|
||||
nucleo-f334r8 \
|
||||
nucleo-l031k6 \
|
||||
nucleo-l053r8 \
|
||||
stm32f0discovery \
|
||||
stm32l0538-disco \
|
||||
waspmote-pro \
|
||||
#
|
@ -1,7 +1,5 @@
|
||||
include ../Makefile.tests_common
|
||||
|
||||
BOARD_INSUFFICIENT_MEMORY += arduino-duemilanove arduino-leonardo arduino-nano \
|
||||
arduino-uno
|
||||
BOARD ?= msba2
|
||||
|
||||
USEMODULE += fmt_table
|
||||
|
6
tests/driver_ltc4150/Makefile.ci
Normal file
6
tests/driver_ltc4150/Makefile.ci
Normal file
@ -0,0 +1,6 @@
|
||||
BOARD_INSUFFICIENT_MEMORY := \
|
||||
arduino-duemilanove \
|
||||
arduino-leonardo \
|
||||
arduino-nano \
|
||||
arduino-uno \
|
||||
#
|
@ -1,7 +1,5 @@
|
||||
include ../Makefile.tests_common
|
||||
|
||||
BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-leonardo arduino-nano\
|
||||
arduino-uno
|
||||
DRIVER ?= mpu9150
|
||||
|
||||
USEMODULE += $(DRIVER)
|
||||
|
6
tests/driver_mpu9x50/Makefile.ci
Normal file
6
tests/driver_mpu9x50/Makefile.ci
Normal file
@ -0,0 +1,6 @@
|
||||
BOARD_INSUFFICIENT_MEMORY := \
|
||||
arduino-duemilanove \
|
||||
arduino-leonardo \
|
||||
arduino-nano \
|
||||
arduino-uno \
|
||||
#
|
@ -1,9 +1,5 @@
|
||||
include ../Makefile.tests_common
|
||||
|
||||
# exclude boards with insufficient memory
|
||||
BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-leonardo arduino-nano\
|
||||
arduino-uno nucleo-f031k6
|
||||
|
||||
USEMODULE += shell
|
||||
USEMODULE += shell_commands
|
||||
USEMODULE += ps
|
||||
|
7
tests/driver_nrf24l01p_lowlevel/Makefile.ci
Normal file
7
tests/driver_nrf24l01p_lowlevel/Makefile.ci
Normal file
@ -0,0 +1,7 @@
|
||||
BOARD_INSUFFICIENT_MEMORY := \
|
||||
arduino-duemilanove \
|
||||
arduino-leonardo \
|
||||
arduino-nano \
|
||||
arduino-uno \
|
||||
nucleo-f031k6 \
|
||||
#
|
@ -1,8 +1,5 @@
|
||||
include ../Makefile.tests_common
|
||||
|
||||
BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-leonardo arduino-nano\
|
||||
arduino-uno
|
||||
|
||||
USEMODULE += nvram_spi
|
||||
USEMODULE += xtimer
|
||||
|
||||
|
6
tests/driver_nvram_spi/Makefile.ci
Normal file
6
tests/driver_nvram_spi/Makefile.ci
Normal file
@ -0,0 +1,6 @@
|
||||
BOARD_INSUFFICIENT_MEMORY := \
|
||||
arduino-duemilanove \
|
||||
arduino-leonardo \
|
||||
arduino-nano \
|
||||
arduino-uno \
|
||||
#
|
@ -5,9 +5,6 @@ BOARD_BLACKLIST := slstk3401a slstk3402a sltb001a \
|
||||
slwstk6000b-slwrb4150a slwstk6000b-slwrb4162a \
|
||||
stk3600 stk3700
|
||||
|
||||
# Boards with insufficient memory
|
||||
BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-nano arduino-uno
|
||||
|
||||
USEMODULE += pca9685
|
||||
USEMODULE += shell
|
||||
|
||||
|
5
tests/driver_pca9685/Makefile.ci
Normal file
5
tests/driver_pca9685/Makefile.ci
Normal file
@ -0,0 +1,5 @@
|
||||
BOARD_INSUFFICIENT_MEMORY := \
|
||||
arduino-duemilanove \
|
||||
arduino-nano \
|
||||
arduino-uno \
|
||||
#
|
@ -1,8 +1,5 @@
|
||||
include ../Makefile.tests_common
|
||||
|
||||
BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-leonardo arduino-nano\
|
||||
arduino-uno
|
||||
|
||||
USEMODULE += shell
|
||||
USEMODULE += pcd8544
|
||||
|
||||
|
6
tests/driver_pcd8544/Makefile.ci
Normal file
6
tests/driver_pcd8544/Makefile.ci
Normal file
@ -0,0 +1,6 @@
|
||||
BOARD_INSUFFICIENT_MEMORY := \
|
||||
arduino-duemilanove \
|
||||
arduino-leonardo \
|
||||
arduino-nano \
|
||||
arduino-uno \
|
||||
#
|
@ -1,8 +1,5 @@
|
||||
include ../Makefile.tests_common
|
||||
|
||||
BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-leonardo arduino-nano\
|
||||
arduino-uno nucleo-f031k6
|
||||
|
||||
USEMODULE += pir
|
||||
|
||||
include $(RIOTBASE)/Makefile.include
|
||||
|
7
tests/driver_pir/Makefile.ci
Normal file
7
tests/driver_pir/Makefile.ci
Normal file
@ -0,0 +1,7 @@
|
||||
BOARD_INSUFFICIENT_MEMORY := \
|
||||
arduino-duemilanove \
|
||||
arduino-leonardo \
|
||||
arduino-nano \
|
||||
arduino-uno \
|
||||
nucleo-f031k6 \
|
||||
#
|
@ -1,8 +1,5 @@
|
||||
include ../Makefile.tests_common
|
||||
|
||||
BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-leonardo arduino-nano\
|
||||
arduino-uno
|
||||
|
||||
DRIVER ?= rn2483
|
||||
|
||||
USEMODULE += $(DRIVER)
|
||||
|
6
tests/driver_rn2xx3/Makefile.ci
Normal file
6
tests/driver_rn2xx3/Makefile.ci
Normal file
@ -0,0 +1,6 @@
|
||||
BOARD_INSUFFICIENT_MEMORY := \
|
||||
arduino-duemilanove \
|
||||
arduino-leonardo \
|
||||
arduino-nano \
|
||||
arduino-uno \
|
||||
#
|
@ -1,9 +1,5 @@
|
||||
include ../Makefile.tests_common
|
||||
|
||||
# exclude boards with insufficient memory
|
||||
BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-leonardo arduino-nano\
|
||||
arduino-uno nucleo-f031k6
|
||||
|
||||
USEMODULE += sdcard_spi
|
||||
USEMODULE += auto_init_storage
|
||||
USEMODULE += fmt
|
||||
|
7
tests/driver_sdcard_spi/Makefile.ci
Normal file
7
tests/driver_sdcard_spi/Makefile.ci
Normal file
@ -0,0 +1,7 @@
|
||||
BOARD_INSUFFICIENT_MEMORY := \
|
||||
arduino-duemilanove \
|
||||
arduino-leonardo \
|
||||
arduino-nano \
|
||||
arduino-uno \
|
||||
nucleo-f031k6 \
|
||||
#
|
@ -1,8 +1,5 @@
|
||||
include ../Makefile.tests_common
|
||||
|
||||
BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-leonardo arduino-nano\
|
||||
arduino-uno
|
||||
|
||||
DRIVER ?= sht11
|
||||
BOARD ?= msba2
|
||||
|
||||
|
6
tests/driver_sht1x/Makefile.ci
Normal file
6
tests/driver_sht1x/Makefile.ci
Normal file
@ -0,0 +1,6 @@
|
||||
BOARD_INSUFFICIENT_MEMORY := \
|
||||
arduino-duemilanove \
|
||||
arduino-leonardo \
|
||||
arduino-nano \
|
||||
arduino-uno \
|
||||
#
|
@ -1,8 +1,5 @@
|
||||
include ../Makefile.tests_common
|
||||
|
||||
BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-leonardo arduino-nano\
|
||||
arduino-uno
|
||||
|
||||
USEMODULE += xtimer
|
||||
USEMODULE += srf02
|
||||
USEMODULE += shell
|
||||
|
6
tests/driver_srf02/Makefile.ci
Normal file
6
tests/driver_srf02/Makefile.ci
Normal file
@ -0,0 +1,6 @@
|
||||
BOARD_INSUFFICIENT_MEMORY := \
|
||||
arduino-duemilanove \
|
||||
arduino-leonardo \
|
||||
arduino-nano \
|
||||
arduino-uno \
|
||||
#
|
@ -2,9 +2,6 @@ BOARD ?= b-l072z-lrwan1
|
||||
|
||||
include ../Makefile.tests_common
|
||||
|
||||
BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-leonardo arduino-nano\
|
||||
arduino-uno nucleo-f031k6
|
||||
|
||||
USEMODULE += od
|
||||
USEMODULE += shell
|
||||
USEMODULE += shell_commands
|
||||
|
7
tests/driver_sx127x/Makefile.ci
Normal file
7
tests/driver_sx127x/Makefile.ci
Normal file
@ -0,0 +1,7 @@
|
||||
BOARD_INSUFFICIENT_MEMORY := \
|
||||
arduino-duemilanove \
|
||||
arduino-leonardo \
|
||||
arduino-nano \
|
||||
arduino-uno \
|
||||
nucleo-f031k6 \
|
||||
#
|
@ -1,8 +1,5 @@
|
||||
include ../Makefile.tests_common
|
||||
|
||||
BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-leonardo arduino-nano\
|
||||
arduino-uno
|
||||
|
||||
USEMODULE += tsl4531x
|
||||
USEMODULE += xtimer
|
||||
|
||||
|
6
tests/driver_tsl4531x/Makefile.ci
Normal file
6
tests/driver_tsl4531x/Makefile.ci
Normal file
@ -0,0 +1,6 @@
|
||||
BOARD_INSUFFICIENT_MEMORY := \
|
||||
arduino-duemilanove \
|
||||
arduino-leonardo \
|
||||
arduino-nano \
|
||||
arduino-uno \
|
||||
#
|
@ -1,10 +1,5 @@
|
||||
include ../Makefile.tests_common
|
||||
|
||||
BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-leonardo arduino-nano \
|
||||
arduino-uno nucleo-f031k6 nucleo-f042k6 \
|
||||
nucleo-f030r8 nucleo-f334r8 stm32f0discovery \
|
||||
waspmote-pro
|
||||
|
||||
USEMODULE += xbee
|
||||
USEMODULE += gnrc_txtsnd
|
||||
USEMODULE += auto_init_gnrc_netif
|
||||
|
12
tests/driver_xbee/Makefile.ci
Normal file
12
tests/driver_xbee/Makefile.ci
Normal file
@ -0,0 +1,12 @@
|
||||
BOARD_INSUFFICIENT_MEMORY := \
|
||||
arduino-duemilanove \
|
||||
arduino-leonardo \
|
||||
arduino-nano \
|
||||
arduino-uno \
|
||||
nucleo-f030r8 \
|
||||
nucleo-f031k6 \
|
||||
nucleo-f042k6 \
|
||||
nucleo-f334r8 \
|
||||
stm32f0discovery \
|
||||
waspmote-pro \
|
||||
#
|
@ -5,13 +5,6 @@ include ../Makefile.tests_common
|
||||
# MSP-430 doesn't support C11's atomic functionality yet
|
||||
FEATURES_BLACKLIST += arch_msp430
|
||||
|
||||
BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-leonardo \
|
||||
arduino-mega2560 arduino-nano arduino-uno \
|
||||
i-nucleo-lrwan1 msb-430 msb-430h nucleo-l031k6 \
|
||||
nucleo-f031k6 nucleo-f042k6 nucleo-l053r8 \
|
||||
stm32f0discovery stm32l0538-disco telosb \
|
||||
waspmote-pro wsn430-v1_3b wsn430-v1_4 z1
|
||||
|
||||
USEPKG += emb6
|
||||
|
||||
USEMODULE += emb6_router
|
||||
|
21
tests/emb6/Makefile.ci
Normal file
21
tests/emb6/Makefile.ci
Normal file
@ -0,0 +1,21 @@
|
||||
BOARD_INSUFFICIENT_MEMORY := \
|
||||
arduino-duemilanove \
|
||||
arduino-leonardo \
|
||||
arduino-mega2560 \
|
||||
arduino-nano \
|
||||
arduino-uno \
|
||||
i-nucleo-lrwan1 \
|
||||
msb-430 \
|
||||
msb-430h \
|
||||
nucleo-f031k6 \
|
||||
nucleo-f042k6 \
|
||||
nucleo-l031k6 \
|
||||
nucleo-l053r8 \
|
||||
stm32f0discovery \
|
||||
stm32l0538-disco \
|
||||
telosb \
|
||||
waspmote-pro \
|
||||
wsn430-v1_3b \
|
||||
wsn430-v1_4 \
|
||||
z1 \
|
||||
#
|
@ -1,7 +1,5 @@
|
||||
include ../Makefile.tests_common
|
||||
|
||||
BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-nano arduino-uno
|
||||
|
||||
FORCE_ASSERTS = 1
|
||||
USEMODULE += event
|
||||
USEMODULE += xtimer
|
||||
|
5
tests/event_wait_timeout/Makefile.ci
Normal file
5
tests/event_wait_timeout/Makefile.ci
Normal file
@ -0,0 +1,5 @@
|
||||
BOARD_INSUFFICIENT_MEMORY := \
|
||||
arduino-duemilanove \
|
||||
arduino-nano \
|
||||
arduino-uno \
|
||||
#
|
@ -1,8 +1,5 @@
|
||||
include ../Makefile.tests_common
|
||||
|
||||
BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-leonardo arduino-nano\
|
||||
arduino-uno
|
||||
|
||||
FORCE_ASSERTS = 1
|
||||
USEMODULE += event_callback
|
||||
USEMODULE += event_timeout
|
||||
|
6
tests/events/Makefile.ci
Normal file
6
tests/events/Makefile.ci
Normal file
@ -0,0 +1,6 @@
|
||||
BOARD_INSUFFICIENT_MEMORY := \
|
||||
arduino-duemilanove \
|
||||
arduino-leonardo \
|
||||
arduino-nano \
|
||||
arduino-uno \
|
||||
#
|
@ -1,8 +1,5 @@
|
||||
include ../Makefile.tests_common
|
||||
|
||||
BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-leonardo arduino-nano\
|
||||
arduino-uno nucleo-f031k6 nucleo-f042k6
|
||||
|
||||
USEMODULE += evtimer
|
||||
|
||||
# This test randomly fails on `native` so disable it from CI
|
||||
|
8
tests/evtimer_msg/Makefile.ci
Normal file
8
tests/evtimer_msg/Makefile.ci
Normal file
@ -0,0 +1,8 @@
|
||||
BOARD_INSUFFICIENT_MEMORY := \
|
||||
arduino-duemilanove \
|
||||
arduino-leonardo \
|
||||
arduino-nano \
|
||||
arduino-uno \
|
||||
nucleo-f031k6 \
|
||||
nucleo-f042k6 \
|
||||
#
|
@ -1,8 +1,5 @@
|
||||
include ../Makefile.tests_common
|
||||
|
||||
BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-leonardo arduino-nano\
|
||||
arduino-uno nucleo-f031k6 nucleo-f042k6
|
||||
|
||||
USEMODULE += evtimer
|
||||
|
||||
include $(RIOTBASE)/Makefile.include
|
||||
|
8
tests/evtimer_underflow/Makefile.ci
Normal file
8
tests/evtimer_underflow/Makefile.ci
Normal file
@ -0,0 +1,8 @@
|
||||
BOARD_INSUFFICIENT_MEMORY := \
|
||||
arduino-duemilanove \
|
||||
arduino-leonardo \
|
||||
arduino-nano \
|
||||
arduino-uno \
|
||||
nucleo-f031k6 \
|
||||
nucleo-f042k6 \
|
||||
#
|
@ -2,15 +2,6 @@ DEVELHELP := 1
|
||||
# name of your application
|
||||
include ../Makefile.tests_common
|
||||
|
||||
BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-leonardo \
|
||||
arduino-mega2560 arduino-nano \
|
||||
arduino-uno hifive1 hifive1b i-nucleo-lrwan1 mega-xplained \
|
||||
msb-430 msb-430h nucleo-f030r8 nucleo-f031k6 \
|
||||
nucleo-f042k6 nucleo-f070rb nucleo-f072rb \
|
||||
nucleo-f303k8 nucleo-f334r8 nucleo-l031k6 \
|
||||
nucleo-l053r8 stm32f0discovery stm32l0538-disco \
|
||||
saml10-xpro saml11-xpro telosb thingy52 \
|
||||
waspmote-pro wsn430-v1_3b wsn430-v1_4 z1
|
||||
# chronos, hamilton and ruuvitag boards don't support ethos
|
||||
BOARD_BLACKLIST := chronos hamilton ruuvitag
|
||||
|
||||
|
32
tests/gnrc_ipv6_ext/Makefile.ci
Normal file
32
tests/gnrc_ipv6_ext/Makefile.ci
Normal file
@ -0,0 +1,32 @@
|
||||
BOARD_INSUFFICIENT_MEMORY := \
|
||||
arduino-duemilanove \
|
||||
arduino-leonardo \
|
||||
arduino-mega2560 \
|
||||
arduino-nano \
|
||||
arduino-uno \
|
||||
hifive1 \
|
||||
hifive1b \
|
||||
i-nucleo-lrwan1 \
|
||||
mega-xplained \
|
||||
msb-430 \
|
||||
msb-430h \
|
||||
nucleo-f030r8 \
|
||||
nucleo-f031k6 \
|
||||
nucleo-f042k6 \
|
||||
nucleo-f070rb \
|
||||
nucleo-f072rb \
|
||||
nucleo-f303k8 \
|
||||
nucleo-f334r8 \
|
||||
nucleo-l031k6 \
|
||||
nucleo-l053r8 \
|
||||
saml10-xpro \
|
||||
saml11-xpro \
|
||||
stm32f0discovery \
|
||||
stm32l0538-disco \
|
||||
telosb \
|
||||
thingy52 \
|
||||
waspmote-pro \
|
||||
wsn430-v1_3b \
|
||||
wsn430-v1_4 \
|
||||
z1 \
|
||||
#
|
@ -2,15 +2,6 @@ DEVELHELP := 1
|
||||
# name of your application
|
||||
include ../Makefile.tests_common
|
||||
|
||||
BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-leonardo \
|
||||
arduino-mega2560 arduino-nano arduino-uno hifive1 \
|
||||
hifive1b i-nucleo-lrwan1 mega-xplained msb-430 \
|
||||
msb-430h nucleo-f030r8 nucleo-f031k6 \
|
||||
nucleo-f042k6 nucleo-f070rb nucleo-f072rb \
|
||||
nucleo-f303k8 nucleo-f334r8 nucleo-l031k6 \
|
||||
nucleo-l053r8 saml10-xpro saml11-xpro \
|
||||
stm32f0discovery stm32l0538-disco telosb \
|
||||
waspmote-pro wsn430-v1_3b wsn430-v1_4 z1
|
||||
# chronos, hamilton, ruuvitag, and thingy52 boards don't support ethos
|
||||
BOARD_BLACKLIST := chronos hamilton ruuvitag thingy52
|
||||
|
||||
|
31
tests/gnrc_ipv6_ext_frag/Makefile.ci
Normal file
31
tests/gnrc_ipv6_ext_frag/Makefile.ci
Normal file
@ -0,0 +1,31 @@
|
||||
BOARD_INSUFFICIENT_MEMORY := \
|
||||
arduino-duemilanove \
|
||||
arduino-leonardo \
|
||||
arduino-mega2560 \
|
||||
arduino-nano \
|
||||
arduino-uno \
|
||||
hifive1 \
|
||||
hifive1b \
|
||||
i-nucleo-lrwan1 \
|
||||
mega-xplained \
|
||||
msb-430 \
|
||||
msb-430h \
|
||||
nucleo-f030r8 \
|
||||
nucleo-f031k6 \
|
||||
nucleo-f042k6 \
|
||||
nucleo-f070rb \
|
||||
nucleo-f072rb \
|
||||
nucleo-f303k8 \
|
||||
nucleo-f334r8 \
|
||||
nucleo-l031k6 \
|
||||
nucleo-l053r8 \
|
||||
saml10-xpro \
|
||||
saml11-xpro \
|
||||
stm32f0discovery \
|
||||
stm32l0538-disco \
|
||||
telosb \
|
||||
waspmote-pro \
|
||||
wsn430-v1_3b \
|
||||
wsn430-v1_4 \
|
||||
z1 \
|
||||
#
|
@ -1,13 +1,6 @@
|
||||
DEVELHELP := 1
|
||||
include ../Makefile.tests_common
|
||||
|
||||
BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-leonardo \
|
||||
arduino-mega2560 arduino-nano arduino-uno chronos \
|
||||
i-nucleo-lrwan1 msb-430 msb-430h nucleo-f030r8 \
|
||||
nucleo-f031k6 nucleo-f042k6 nucleo-l031k6 \
|
||||
nucleo-l053r8 stm32f0discovery stm32l0538-disco telosb \
|
||||
waspmote-pro wsn430-v1_3b wsn430-v1_4 z1
|
||||
|
||||
USEMODULE += gnrc_ipv6_router_default
|
||||
USEMODULE += gnrc_netif
|
||||
USEMODULE += gnrc_pktbuf_cmd
|
||||
|
23
tests/gnrc_ipv6_fwd_w_sub/Makefile.ci
Normal file
23
tests/gnrc_ipv6_fwd_w_sub/Makefile.ci
Normal file
@ -0,0 +1,23 @@
|
||||
BOARD_INSUFFICIENT_MEMORY := \
|
||||
arduino-duemilanove \
|
||||
arduino-leonardo \
|
||||
arduino-mega2560 \
|
||||
arduino-nano \
|
||||
arduino-uno \
|
||||
chronos \
|
||||
i-nucleo-lrwan1 \
|
||||
msb-430 \
|
||||
msb-430h \
|
||||
nucleo-f030r8 \
|
||||
nucleo-f031k6 \
|
||||
nucleo-f042k6 \
|
||||
nucleo-l031k6 \
|
||||
nucleo-l053r8 \
|
||||
stm32f0discovery \
|
||||
stm32l0538-disco \
|
||||
telosb \
|
||||
waspmote-pro \
|
||||
wsn430-v1_3b \
|
||||
wsn430-v1_4 \
|
||||
z1 \
|
||||
#
|
@ -1,11 +1,5 @@
|
||||
include ../Makefile.tests_common
|
||||
|
||||
BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-leonardo \
|
||||
arduino-mega2560 arduino-nano \
|
||||
arduino-uno chronos nucleo-f031k6 nucleo-f042k6 \
|
||||
nucleo-l031k6 telosb waspmote-pro wsn430-v1_3b \
|
||||
wsn430-v1_4
|
||||
|
||||
USEMODULE += gnrc_ipv6
|
||||
USEMODULE += gnrc_ipv6_nib
|
||||
USEMODULE += gnrc_netif
|
||||
|
15
tests/gnrc_ipv6_nib/Makefile.ci
Normal file
15
tests/gnrc_ipv6_nib/Makefile.ci
Normal file
@ -0,0 +1,15 @@
|
||||
BOARD_INSUFFICIENT_MEMORY := \
|
||||
arduino-duemilanove \
|
||||
arduino-leonardo \
|
||||
arduino-mega2560 \
|
||||
arduino-nano \
|
||||
arduino-uno \
|
||||
chronos \
|
||||
nucleo-f031k6 \
|
||||
nucleo-f042k6 \
|
||||
nucleo-l031k6 \
|
||||
telosb \
|
||||
waspmote-pro \
|
||||
wsn430-v1_3b \
|
||||
wsn430-v1_4 \
|
||||
#
|
@ -1,12 +1,5 @@
|
||||
include ../Makefile.tests_common
|
||||
|
||||
BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-leonardo \
|
||||
arduino-mega2560 arduino-nano arduino-uno chronos \
|
||||
i-nucleo-lrwan1 nucleo-f030r8 nucleo-l053r8 \
|
||||
nucleo-f031k6 nucleo-l031k6 nucleo-f042k6 \
|
||||
stm32f0discovery stm32l0538-disco telosb \
|
||||
waspmote-pro wsn430-v1_3b wsn430-v1_4
|
||||
|
||||
USEMODULE += gnrc_ipv6
|
||||
USEMODULE += gnrc_sixlowpan
|
||||
USEMODULE += gnrc_sixlowpan_ctx
|
||||
|
20
tests/gnrc_ipv6_nib_6ln/Makefile.ci
Normal file
20
tests/gnrc_ipv6_nib_6ln/Makefile.ci
Normal file
@ -0,0 +1,20 @@
|
||||
BOARD_INSUFFICIENT_MEMORY := \
|
||||
arduino-duemilanove \
|
||||
arduino-leonardo \
|
||||
arduino-mega2560 \
|
||||
arduino-nano \
|
||||
arduino-uno \
|
||||
chronos \
|
||||
i-nucleo-lrwan1 \
|
||||
nucleo-f030r8 \
|
||||
nucleo-f031k6 \
|
||||
nucleo-f042k6 \
|
||||
nucleo-l031k6 \
|
||||
nucleo-l053r8 \
|
||||
stm32f0discovery \
|
||||
stm32l0538-disco \
|
||||
telosb \
|
||||
waspmote-pro \
|
||||
wsn430-v1_3b \
|
||||
wsn430-v1_4 \
|
||||
#
|
@ -1,13 +1,6 @@
|
||||
APPLICATION = gnrc_mac_timeout
|
||||
include ../Makefile.tests_common
|
||||
|
||||
BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-leonardo \
|
||||
arduino-mega2560 arduino-nano arduino-uno \
|
||||
chronos i-nucleo-lrwan1 nucleo-f030r8 \
|
||||
nucleo-f031k6 nucleo-f042k6 nucleo-l031k6 \
|
||||
nucleo-l053r8 stm32f0discovery stm32l0538-disco \
|
||||
waspmote-pro
|
||||
|
||||
USEMODULE += gnrc_mac
|
||||
|
||||
include $(RIOTBASE)/Makefile.include
|
||||
|
17
tests/gnrc_mac_timeout/Makefile.ci
Normal file
17
tests/gnrc_mac_timeout/Makefile.ci
Normal file
@ -0,0 +1,17 @@
|
||||
BOARD_INSUFFICIENT_MEMORY := \
|
||||
arduino-duemilanove \
|
||||
arduino-leonardo \
|
||||
arduino-mega2560 \
|
||||
arduino-nano \
|
||||
arduino-uno \
|
||||
chronos \
|
||||
i-nucleo-lrwan1 \
|
||||
nucleo-f030r8 \
|
||||
nucleo-f031k6 \
|
||||
nucleo-f042k6 \
|
||||
nucleo-l031k6 \
|
||||
nucleo-l053r8 \
|
||||
stm32f0discovery \
|
||||
stm32l0538-disco \
|
||||
waspmote-pro \
|
||||
#
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user