diff --git a/sys/pipe/pipe_dynamic.c b/sys/pipe/pipe_dynamic.c index b6165de243..b6ecd2982d 100644 --- a/sys/pipe/pipe_dynamic.c +++ b/sys/pipe/pipe_dynamic.c @@ -25,7 +25,7 @@ * @} */ -#if defined(MCU_ATMEGA2560) || defined(MCU_ATMEGA1281) +#if defined(MCU_ATMEGA2560) || defined(MCU_ATMEGA1281) || defined(MCU_ATMEGA328P) #include #else #include diff --git a/tests/coap/Makefile b/tests/coap/Makefile index d958921835..411bfc6f99 100644 --- a/tests/coap/Makefile +++ b/tests/coap/Makefile @@ -3,7 +3,7 @@ include ../Makefile.tests_common # 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 \ - wsn430-v1_4 z1 waspmote-pro + wsn430-v1_4 z1 waspmote-pro arduino-uno arduino-duemilanove BOARD_INSUFFICIENT_MEMORY := chronos msb-430 msb-430h nucleo-f334 \ stm32f0discovery telosb weio wsn430-v1_3b wsn430-v1_4 z1 diff --git a/tests/libfixmath_unittests/Makefile b/tests/libfixmath_unittests/Makefile index 38c3685ebc..4325714e0e 100644 --- a/tests/libfixmath_unittests/Makefile +++ b/tests/libfixmath_unittests/Makefile @@ -1,7 +1,7 @@ APPLICATION = libfixmath_unittests include ../Makefile.tests_common -BOARD_BLACKLIST := arduino-mega2560 waspmote-pro +BOARD_BLACKLIST := arduino-mega2560 waspmote-pro arduino-uno arduino-duemilanove # arduino-mega2560: builds locally but breaks travis (possibly because of # differences in the toolchain) diff --git a/tests/lwip/Makefile b/tests/lwip/Makefile index c004c6202f..e078b9fcdb 100644 --- a/tests/lwip/Makefile +++ b/tests/lwip/Makefile @@ -4,7 +4,8 @@ BOARD ?= iotlab-m3 RIOTBASE ?= $(CURDIR)/../.. -BOARD_BLACKLIST := arduino-mega2560 msb-430h telosb waspmote-pro z1 +BOARD_BLACKLIST := arduino-mega2560 msb-430h telosb waspmote-pro z1 arduino-uno \ + arduino-duemilanove BOARD_INSUFFICIENT_MEMORY := airfy-beacon arduino-mega2560 msb-430h nrf6310 \ nucleo-f334 pca10005 stm32f0discovery telosb \ weio yunjia-nrf51822 z1 diff --git a/tests/nhdp/Makefile b/tests/nhdp/Makefile index f7418293ba..5cc0db1905 100644 --- a/tests/nhdp/Makefile +++ b/tests/nhdp/Makefile @@ -2,7 +2,8 @@ APPLICATION = nhdp include ../Makefile.tests_common BOARD_BLACKLIST := arduino-mega2560 chronos msb-430 msb-430h telosb \ - wsn430-v1_3b wsn430-v1_4 z1 waspmote-pro + wsn430-v1_3b wsn430-v1_4 z1 waspmote-pro arduino-uno \ + arduino-duemilanove BOARD_INSUFFICIENT_MEMORY := nucleo-f334 stm32f0discovery weio USEMODULE += gnrc_ipv6 diff --git a/tests/pthread/Makefile b/tests/pthread/Makefile index c1abd565a8..2e2c8e2c1c 100644 --- a/tests/pthread/Makefile +++ b/tests/pthread/Makefile @@ -1,8 +1,8 @@ APPLICATION = pthread include ../Makefile.tests_common -BOARD_BLACKLIST := arduino-mega2560 waspmote-pro -# arduino-mega2560: unknown type name: clockid_t +BOARD_BLACKLIST := arduino-mega2560 waspmote-pro arduino-uno arduino-duemilanove +# arduino mega2560 uno duemilanove : unknown type name: clockid_t USEMODULE += posix USEMODULE += pthread diff --git a/tests/pthread_barrier/Makefile b/tests/pthread_barrier/Makefile index ed332b7a62..25724bd0ce 100644 --- a/tests/pthread_barrier/Makefile +++ b/tests/pthread_barrier/Makefile @@ -2,8 +2,8 @@ APPLICATION = pthread_barrier include ../Makefile.tests_common -BOARD_BLACKLIST := arduino-mega2560 waspmote-pro -# arduino-mega2560: unknown type name: clockid_t +BOARD_BLACKLIST := arduino-mega2560 waspmote-pro arduino-uno arduino-duemilanove +# arduino mega2560 uno duemilanove: unknown type name: clockid_t # exclude boards with insufficient memory BOARD_INSUFFICIENT_MEMORY := stm32f0discovery diff --git a/tests/pthread_cleanup/Makefile b/tests/pthread_cleanup/Makefile index beb03d294c..dc485fd43c 100644 --- a/tests/pthread_cleanup/Makefile +++ b/tests/pthread_cleanup/Makefile @@ -1,8 +1,8 @@ APPLICATION = pthread_cleanup include ../Makefile.tests_common -BOARD_BLACKLIST := arduino-mega2560 waspmote-pro -# arduino-mega2560: unknown type name: clockid_t +BOARD_BLACKLIST := arduino-mega2560 waspmote-pro arduino-uno arduino-duemilanove +# arduino mega2560 uno duemilanove : unknown type name: clockid_t USEMODULE += pthread diff --git a/tests/pthread_condition_variable/Makefile b/tests/pthread_condition_variable/Makefile index 902190c834..a21acd800a 100644 --- a/tests/pthread_condition_variable/Makefile +++ b/tests/pthread_condition_variable/Makefile @@ -1,8 +1,8 @@ APPLICATION = condition_variable include ../Makefile.tests_common -BOARD_BLACKLIST := arduino-mega2560 waspmote-pro -# arduino-mega2560: unknown type name: clockid_t +BOARD_BLACKLIST := arduino-mega2560 waspmote-pro arduino-uno arduino-duemilanove +# arduino mega2560 uno duemilanove: unknown type name: clockid_t BOARD_INSUFFICIENT_MEMORY := stm32f0discovery diff --git a/tests/pthread_cooperation/Makefile b/tests/pthread_cooperation/Makefile index ab53757820..dc249777d3 100644 --- a/tests/pthread_cooperation/Makefile +++ b/tests/pthread_cooperation/Makefile @@ -1,8 +1,8 @@ APPLICATION = pthread_cooperation include ../Makefile.tests_common -BOARD_BLACKLIST := arduino-mega2560 waspmote-pro -# arduino-mega2560: unknown type name: clockid_t +BOARD_BLACKLIST := arduino-mega2560 waspmote-pro arduino-uno arduino-duemilanove +# arduino mega2560 uno duemilanove: unknown type name: clockid_t USEMODULE += posix USEMODULE += pthread diff --git a/tests/pthread_rwlock/Makefile b/tests/pthread_rwlock/Makefile index e6b7bd20cf..0f6c422e04 100644 --- a/tests/pthread_rwlock/Makefile +++ b/tests/pthread_rwlock/Makefile @@ -1,8 +1,8 @@ APPLICATION = pthread_rwlock include ../Makefile.tests_common -BOARD_BLACKLIST := arduino-mega2560 waspmote-pro -# arduino-mega2560: unknown type name: clockid_t +BOARD_BLACKLIST := arduino-mega2560 waspmote-pro arduino-uno arduino-duemilanove +# arduino mega2560 uno duemilanove: unknown type name: clockid_t USEMODULE += pthread USEMODULE += xtimer diff --git a/tests/pthread_tls/Makefile b/tests/pthread_tls/Makefile index 8575ea74d4..0fe7b4e5a8 100644 --- a/tests/pthread_tls/Makefile +++ b/tests/pthread_tls/Makefile @@ -1,8 +1,8 @@ APPLICATION = pthread_tls include ../Makefile.tests_common -BOARD_BLACKLIST := arduino-mega2560 waspmote-pro -# arduino-mega2560: unknown type name: clockid_t +BOARD_BLACKLIST := arduino-mega2560 waspmote-pro arduino-uno arduino-duemilanove +# arduino mega2560 uno duemilanove: unknown type name: clockid_t USEMODULE += posix USEMODULE += pthread diff --git a/tests/unittests/Makefile b/tests/unittests/Makefile index e87ff2aaa8..df12886508 100644 --- a/tests/unittests/Makefile +++ b/tests/unittests/Makefile @@ -6,7 +6,8 @@ BOARD_INSUFFICIENT_MEMORY := airfy-beacon cc2650stk chronos msb-430 msb-430h pca telosb wsn430-v1_3b wsn430-v1_4 z1 nucleo-f103 \ nucleo-f334 yunjia-nrf51822 samr21-xpro \ arduino-mega2560 airfy-beacon nrf51dongle nrf6310 \ - weio waspmote-pro nucleo-f072 + weio waspmote-pro nucleo-f072 arduino-uno \ + arduino-duemilanove USEMODULE += embunit @@ -27,7 +28,7 @@ ARM_CORTEX_M_BOARDS := airfy-beacon arduino-due cc2538dk ek-lm4f120xl f4vi1 fox yunjia-nrf51822 DISABLE_TEST_FOR_ARM_CORTEX_M := tests-relic -AVR_BOARDS := arduino-mega2560 waspmote-pro +AVR_BOARDS := arduino-mega2560 waspmote-pro arduino-uno arduino-duemilanove DISABLE_TEST_FOR_AVR := tests-relic MSP430_BOARDS := chronos msb-430 msb-430h telosb wsn430-v1_3b wsn430-v1_4 z1