diff --git a/LOSTANDFOUND.md b/LOSTANDFOUND.md index 1132f1398fc6..b2df5cab655a 100644 --- a/LOSTANDFOUND.md +++ b/LOSTANDFOUND.md @@ -302,6 +302,18 @@ therefore, have no interest in supporting this board. As result, none of the RIOT core contributors has access to the hardware, preventing us from doing the necessary testing for maintaining this board. +### boards/nrf6310 [4953ba8e6759d2b1a1a1ea497a4ad1e71489195a] +Author(s): +- Christian Kühling +- Timo Ziegler +- Hauke Petersen + +Reason for removal: +- this was an early development board by Nordic which was discontinued + (successor: `nrf51dk`) +- also for a `BLE DEVKIT.N` board from Mommosoft, which was discontinued as well +- no hardware available anymore for testing, many exclusions from CI + [6cad5d24771ba6199228351a11b5062cd2e9b36d]: https://github.com/RIOT-OS/RIOT/commit/6cad5d24771ba6199228351a11b5062cd2e9b36d [d83d08f0995a88f399e70a7d07b44dd780082436]: https://github.com/RIOT-OS/RIOT/commit/d83d08f0995a88f399e70a7d07b44dd780082436 [cdc252ab7bd4161cc046bf93a3e55995704b24d4]: https://github.com/RIOT-OS/RIOT/commit/cdc252ab7bd4161cc046bf93a3e55995704b24d4 @@ -334,3 +346,4 @@ necessary testing for maintaining this board. [fe941ac9fe3f81c0f08ff3b8564cf439639abcda]: https://github.com/RIOT-OS/RIOT/commit/fe941ac9fe3f81c0f08ff3b8564cf439639abcda [81458c8eed8949c686d5ded652dbee10748e860b]: https://github.com/RIOT-OS/RIOT/commit/81458c8eed8949c686d5ded652dbee10748e860b [2b8a0d48940517f7df4e78c7a0b16024f46a8694]: https://github.com/RIOT-OS/RIOT/commit/2b8a0d48940517f7df4e78c7a0b16024f46a8694 +[4953ba8e6759d2b1a1a1ea497a4ad1e71489195a]: https://github.com/RIOT-OS/RIOT/commit/4953ba8e6759d2b1a1a1ea497a4ad1e71489195a diff --git a/boards/nrf6310/Kconfig b/boards/nrf6310/Kconfig deleted file mode 100644 index 53d1696153ba..000000000000 --- a/boards/nrf6310/Kconfig +++ /dev/null @@ -1,16 +0,0 @@ -# Copyright (c) 2020 HAW Hamburg -# -# This file is subject to the terms and conditions of the GNU Lesser -# General Public License v2.1. See the file LICENSE in the top level -# directory for more details. - -config BOARD - default "nrf6310" if BOARD_NRF6310 - -config BOARD_NRF6310 - bool - default y - select BOARD_COMMON_NRF51 - select CPU_MODEL_NRF51X22XXAA - -source "$(RIOTBOARD)/common/nrf51/Kconfig" diff --git a/boards/nrf6310/Makefile b/boards/nrf6310/Makefile deleted file mode 100644 index f8fcbb53a065..000000000000 --- a/boards/nrf6310/Makefile +++ /dev/null @@ -1,3 +0,0 @@ -MODULE = board - -include $(RIOTBASE)/Makefile.base diff --git a/boards/nrf6310/Makefile.dep b/boards/nrf6310/Makefile.dep deleted file mode 100644 index babcd96228ac..000000000000 --- a/boards/nrf6310/Makefile.dep +++ /dev/null @@ -1 +0,0 @@ -include $(RIOTBOARD)/common/nrf51/Makefile.dep diff --git a/boards/nrf6310/Makefile.features b/boards/nrf6310/Makefile.features deleted file mode 100644 index 46b201fafbf4..000000000000 --- a/boards/nrf6310/Makefile.features +++ /dev/null @@ -1,8 +0,0 @@ -CPU_MODEL = nrf51x22xxaa - -# Put defined MCU peripherals here (in alphabetical order) -FEATURES_PROVIDED += periph_spi -FEATURES_PROVIDED += periph_uart - -# include common nrf51 based boards features -include $(RIOTBOARD)/common/nrf51/Makefile.features diff --git a/boards/nrf6310/Makefile.include b/boards/nrf6310/Makefile.include deleted file mode 100644 index 35c541b38c23..000000000000 --- a/boards/nrf6310/Makefile.include +++ /dev/null @@ -1,12 +0,0 @@ -# set default port depending on operating system -PORT_LINUX ?= /dev/ttyUSB0 -PORT_DARWIN ?= $(firstword $(sort $(wildcard /dev/tty.SLAB_USBtoUART*))) - -# use jlink to program this board -PROGRAMMER ?= jlink - -# set required debug adapter for openocd if it's used -OPENOCD_DEBUG_ADAPTER = jlink - -# include nrf51 boards common configuration -include $(RIOTBOARD)/common/nrf51/Makefile.include diff --git a/boards/nrf6310/board.c b/boards/nrf6310/board.c deleted file mode 100644 index b909139fef21..000000000000 --- a/boards/nrf6310/board.c +++ /dev/null @@ -1,31 +0,0 @@ -/* - * Copyright (C) 2014 Freie Universität Berlin - * - * This file is subject to the terms and conditions of the GNU Lesser General - * Public License v2.1. See the file LICENSE in the top level directory for more - * details. - */ - -/** - * @ingroup boards_nrf6310 - * @{ - * - * @file board.c - * @brief Board specific implementations for the NRF6310 board - * - * @author Christian Kühling - * @author Timo Ziegler - * @author Hauke Petersen - * - * @} - */ - -#include "board.h" -#include "cpu.h" - -void led_init(void) -{ - /* initialize and turn off on-board LEDs */ - NRF_GPIO->DIRSET = LED0_MASK | LED1_MASK | LED2_MASK; - NRF_GPIO->OUTSET = LED0_MASK | LED1_MASK | LED2_MASK; -} diff --git a/boards/nrf6310/doc.txt b/boards/nrf6310/doc.txt deleted file mode 100644 index 856a406d8256..000000000000 --- a/boards/nrf6310/doc.txt +++ /dev/null @@ -1,5 +0,0 @@ -/** -@defgroup boards_nrf6310 NRF6310 (Nordic NRF Hardware Development Kit) -@ingroup boards -@brief Support for the nRF51 boards: nrf6310 or MOMMOSOFT BLE DEVKIT.N - */ diff --git a/boards/nrf6310/include/board.h b/boards/nrf6310/include/board.h deleted file mode 100644 index c02add33edbf..000000000000 --- a/boards/nrf6310/include/board.h +++ /dev/null @@ -1,60 +0,0 @@ -/* - * Copyright (C) 2014 Freie Universität Berlin - * - * This file is subject to the terms and conditions of the GNU Lesser General - * Public License v2.1. See the file LICENSE in the top level directory for more - * details. - */ - -/** - * @ingroup boards_nrf6310 - * @{ - * - * @file - * @brief Board specific definitions for the nRF51 evaluation board nrf6310 - * - * @author Christian Kühling - * @author Timo Ziegler - * @author Frank Holtz - */ - -#ifndef BOARD_H -#define BOARD_H - -#include "cpu.h" - -#ifdef __cplusplus -extern "C" { -#endif - -/** - * @name LED pin definitions and handlers - * @{ - */ -#define LED0_PIN GPIO_PIN(0, 8) -#define LED1_PIN GPIO_PIN(0, 9) -#define LED2_PIN GPIO_PIN(0, 10) - -#define LED0_MASK (1 << 8) -#define LED1_MASK (1 << 9) -#define LED2_MASK (1 << 10) - -#define LED0_ON (NRF_GPIO->OUTCLR = LED0_MASK) -#define LED0_OFF (NRF_GPIO->OUTSET = LED0_MASK) -#define LED0_TOGGLE (NRF_GPIO->OUT ^= LED0_MASK) - -#define LED1_ON (NRF_GPIO->OUTCLR = LED1_MASK) -#define LED1_OFF (NRF_GPIO->OUTSET = LED1_MASK) -#define LED1_TOGGLE (NRF_GPIO->OUT ^= LED1_MASK) - -#define LED2_ON (NRF_GPIO->OUTCLR = LED2_MASK) -#define LED2_OFF (NRF_GPIO->OUTSET = LED2_MASK) -#define LED2_TOGGLE (NRF_GPIO->OUT ^= LED2_MASK) -/** @} */ - -#ifdef __cplusplus -} -#endif - -#endif /* BOARD_H */ -/** @} */ diff --git a/boards/nrf6310/include/periph_conf.h b/boards/nrf6310/include/periph_conf.h deleted file mode 100644 index bbe0d27efef4..000000000000 --- a/boards/nrf6310/include/periph_conf.h +++ /dev/null @@ -1,82 +0,0 @@ -/* - * Copyright (C) 2014 Freie Universität Berlin - * - * This file is subject to the terms and conditions of the GNU Lesser General - * Public License v2.1. See the file LICENSE in the top level directory for more - * details. - */ - -/** - * @ingroup boards_nrf6310 - * @{ - * - * @file - * @brief Peripheral MCU configuration for the nRF51 board nrf6310 - * - * @author Christian Kühling - * @author Timo Ziegler - * @author Hauke Petersen - * @author Frank Holtz - */ - -#ifndef PERIPH_CONF_H -#define PERIPH_CONF_H - -#include "periph_cpu.h" -#include "cfg_clock_16_1.h" -#include "cfg_timer_012.h" -#include "cfg_rtt_default.h" - -#ifdef __cplusplus -extern "C" { -#endif - -/** - * @name UART configuration - * @{ - */ -static const uart_conf_t uart_config[] = { - { - .dev = NRF_UART0, - .rx_pin = GPIO_PIN(0, 16), - .tx_pin = GPIO_PIN(0, 17), -#ifdef MODULE_PERIPH_UART_HW_FC - .rts_pin = GPIO_PIN(0, 19), - .cts_pin = GPIO_PIN(0, 18), -#endif - .irqn = UART0_IRQn, - }, -}; - -#define UART_NUMOF ARRAY_SIZE(uart_config) -#define UART_0_ISR isr_uart0 -/** @} */ - -/** - * @name SPI configuration - * @{ - */ -static const spi_conf_t spi_config[] = { - { - .dev = NRF_SPI0, - .sclk = 23, - .mosi = 22, - .miso = 20 - }, - { - .dev = NRF_SPI1, - .sclk = 16, - .mosi = 17, - .miso = 18 - } -}; - -#define SPI_NUMOF ARRAY_SIZE(spi_config) -/** @} */ - -#ifdef __cplusplus -} -#endif - -#endif /* PERIPH_CONF_H */ -/** @} */ diff --git a/examples/asymcute_mqttsn/Makefile.ci b/examples/asymcute_mqttsn/Makefile.ci index 681d67cc4d13..de5192c86364 100644 --- a/examples/asymcute_mqttsn/Makefile.ci +++ b/examples/asymcute_mqttsn/Makefile.ci @@ -20,7 +20,6 @@ BOARD_INSUFFICIENT_MEMORY := \ msb-430h \ nrf51dk \ nrf51dongle \ - nrf6310 \ nucleo-c031c6 \ nucleo-f030r8 \ nucleo-f031k6 \ diff --git a/examples/dtls-echo/Makefile.ci b/examples/dtls-echo/Makefile.ci index 1feb84512501..5cb8c7725a6b 100644 --- a/examples/dtls-echo/Makefile.ci +++ b/examples/dtls-echo/Makefile.ci @@ -27,7 +27,6 @@ BOARD_INSUFFICIENT_MEMORY := \ msb-430 \ msb-430h \ nrf51dongle \ - nrf6310 \ nucleo-c031c6 \ nucleo-f030r8 \ nucleo-f031k6 \ diff --git a/examples/dtls-sock/Makefile.ci b/examples/dtls-sock/Makefile.ci index 58a2c5f5cc5a..4f9d7736600b 100644 --- a/examples/dtls-sock/Makefile.ci +++ b/examples/dtls-sock/Makefile.ci @@ -30,7 +30,6 @@ BOARD_INSUFFICIENT_MEMORY := \ msb-430 \ msb-430h \ nrf51dongle \ - nrf6310 \ nucleo-c031c6 \ nucleo-f030r8 \ nucleo-f031k6 \ diff --git a/examples/dtls-wolfssl/Makefile.ci b/examples/dtls-wolfssl/Makefile.ci index 64f98b634940..a7b33c2ac94d 100644 --- a/examples/dtls-wolfssl/Makefile.ci +++ b/examples/dtls-wolfssl/Makefile.ci @@ -17,7 +17,6 @@ BOARD_INSUFFICIENT_MEMORY := \ maple-mini \ microbit \ nrf51dongle \ - nrf6310 \ nucleo-c031c6 \ nucleo-f030r8 \ nucleo-f031k6 \ diff --git a/examples/gcoap_dtls/Makefile.ci b/examples/gcoap_dtls/Makefile.ci index 2a2d882e9895..29799600d300 100644 --- a/examples/gcoap_dtls/Makefile.ci +++ b/examples/gcoap_dtls/Makefile.ci @@ -31,7 +31,6 @@ BOARD_INSUFFICIENT_MEMORY := \ msb-430 \ msb-430h \ nrf51dongle \ - nrf6310 \ nucleo-c031c6 \ nucleo-f030r8 \ nucleo-f031k6 \ diff --git a/examples/gnrc_border_router/Makefile.ci b/examples/gnrc_border_router/Makefile.ci index fcbe41c2a3d9..f8e68ac08ad7 100644 --- a/examples/gnrc_border_router/Makefile.ci +++ b/examples/gnrc_border_router/Makefile.ci @@ -34,7 +34,6 @@ BOARD_INSUFFICIENT_MEMORY := \ msb-430h \ nrf51dk \ nrf51dongle \ - nrf6310 \ nucleo-c031c6 \ nucleo-f030r8 \ nucleo-f031k6 \ diff --git a/examples/javascript/Makefile.ci b/examples/javascript/Makefile.ci index 961056a015dc..64f84cf62210 100644 --- a/examples/javascript/Makefile.ci +++ b/examples/javascript/Makefile.ci @@ -23,7 +23,6 @@ BOARD_INSUFFICIENT_MEMORY := \ microbit \ nrf51dk \ nrf51dongle \ - nrf6310 \ nucleo-c031c6 \ nucleo-f030r8 \ nucleo-f031k6 \ diff --git a/examples/lua_REPL/Makefile.ci b/examples/lua_REPL/Makefile.ci index 1bccc4ef64d5..41d40d2fb8aa 100644 --- a/examples/lua_REPL/Makefile.ci +++ b/examples/lua_REPL/Makefile.ci @@ -40,7 +40,6 @@ BOARD_INSUFFICIENT_MEMORY := \ microbit \ nrf51dk \ nrf51dongle \ - nrf6310 \ nucleo-c031c6 \ nucleo-f030r8 \ nucleo-f031k6 \ diff --git a/examples/lwm2m/Makefile.ci b/examples/lwm2m/Makefile.ci index bab3493af59e..a33f2aa1cafe 100644 --- a/examples/lwm2m/Makefile.ci +++ b/examples/lwm2m/Makefile.ci @@ -30,7 +30,6 @@ BOARD_INSUFFICIENT_MEMORY := \ maple-mini \ microbit \ nrf51dongle \ - nrf6310 \ nucleo-c031c6 \ nucleo-f030r8 \ nucleo-f031k6 \ diff --git a/examples/paho-mqtt/Makefile.ci b/examples/paho-mqtt/Makefile.ci index bf491e5b51bb..478563df14aa 100644 --- a/examples/paho-mqtt/Makefile.ci +++ b/examples/paho-mqtt/Makefile.ci @@ -26,7 +26,6 @@ BOARD_INSUFFICIENT_MEMORY := \ msb-430 \ msb-430h \ nrf51dongle \ - nrf6310 \ nucleo-c031c6 \ nucleo-f030r8 \ nucleo-f031k6 \ diff --git a/examples/posix_sockets/Makefile.ci b/examples/posix_sockets/Makefile.ci index 8a8fa6637c96..7ec03bcde535 100644 --- a/examples/posix_sockets/Makefile.ci +++ b/examples/posix_sockets/Makefile.ci @@ -16,7 +16,6 @@ BOARD_INSUFFICIENT_MEMORY := \ msb-430h \ nrf51dk \ nrf51dongle \ - nrf6310 \ nucleo-c031c6 \ nucleo-f030r8 \ nucleo-f031k6 \ diff --git a/examples/rust-gcoap/Makefile.ci b/examples/rust-gcoap/Makefile.ci index cf8d98ffa9e5..65bdec1a8cfa 100644 --- a/examples/rust-gcoap/Makefile.ci +++ b/examples/rust-gcoap/Makefile.ci @@ -24,7 +24,6 @@ BOARD_INSUFFICIENT_MEMORY := \ maple-mini \ microbit \ nrf51dongle \ - nrf6310 \ nucleo-c031c6 \ nucleo-f030r8 \ nucleo-f031k6 \ diff --git a/tests/bench/xtimer/Makefile b/tests/bench/xtimer/Makefile index 0de2634d33c8..c07f5fecb664 100644 --- a/tests/bench/xtimer/Makefile +++ b/tests/bench/xtimer/Makefile @@ -42,7 +42,6 @@ LOW_MEMORY_BOARDS += \ msb-430 \ msb-430h \ nrf51dongle \ - nrf6310 \ nucleo-f030r8 \ nucleo-f042k6 \ nucleo-f070rb \ diff --git a/tests/bench/ztimer/Makefile b/tests/bench/ztimer/Makefile index 57b12aea2c88..6a77b15e3369 100644 --- a/tests/bench/ztimer/Makefile +++ b/tests/bench/ztimer/Makefile @@ -42,7 +42,6 @@ LOW_MEMORY_BOARDS += \ msb-430 \ msb-430h \ nrf51dongle \ - nrf6310 \ nucleo-f030r8 \ nucleo-f042k6 \ nucleo-f070rb \ diff --git a/tests/core/thread_float/Makefile.ci b/tests/core/thread_float/Makefile.ci index 53bfe5b5a6d7..67f931300a89 100644 --- a/tests/core/thread_float/Makefile.ci +++ b/tests/core/thread_float/Makefile.ci @@ -13,7 +13,6 @@ BOARD_INSUFFICIENT_MEMORY := \ mbed_lpc1768 \ microbit \ nrf51dongle \ - nrf6310 \ nucleo-c031c6 \ nucleo-f031k6 \ nucleo-f042k6 \ diff --git a/tests/net/emcute/Makefile.ci b/tests/net/emcute/Makefile.ci index e5f52901fd5c..621b90a35ae5 100644 --- a/tests/net/emcute/Makefile.ci +++ b/tests/net/emcute/Makefile.ci @@ -32,7 +32,6 @@ BOARD_INSUFFICIENT_MEMORY := \ msb-430 \ msb-430h \ nrf51dongle \ - nrf6310 \ nucleo-c031c6 \ nucleo-f030r8 \ nucleo-f031k6 \ diff --git a/tests/net/gcoap_dns/Makefile.ci b/tests/net/gcoap_dns/Makefile.ci index 9345fcf9bd08..1b380b3cf988 100644 --- a/tests/net/gcoap_dns/Makefile.ci +++ b/tests/net/gcoap_dns/Makefile.ci @@ -27,7 +27,6 @@ BOARD_INSUFFICIENT_MEMORY := \ msb-430 \ msb-430h \ nrf51dongle \ - nrf6310 \ nucleo-c031c6 \ nucleo-f030r8 \ nucleo-f031k6 \ diff --git a/tests/net/gcoap_forward_proxy/Makefile.ci b/tests/net/gcoap_forward_proxy/Makefile.ci index a690f42ba7f3..d3841a237454 100644 --- a/tests/net/gcoap_forward_proxy/Makefile.ci +++ b/tests/net/gcoap_forward_proxy/Makefile.ci @@ -25,7 +25,6 @@ BOARD_INSUFFICIENT_MEMORY := \ msb-430 \ msb-430h \ nrf51dongle \ - nrf6310 \ nucleo-c031c6 \ nucleo-f030r8 \ nucleo-f031k6 \ diff --git a/tests/net/gnrc_dhcpv6_client_6lbr/Makefile.ci b/tests/net/gnrc_dhcpv6_client_6lbr/Makefile.ci index 29cc1722c05b..47da52310736 100644 --- a/tests/net/gnrc_dhcpv6_client_6lbr/Makefile.ci +++ b/tests/net/gnrc_dhcpv6_client_6lbr/Makefile.ci @@ -35,7 +35,6 @@ BOARD_INSUFFICIENT_MEMORY := \ msb-430 \ msb-430h \ nrf51dongle \ - nrf6310 \ nucleo-c031c6 \ nucleo-f030r8 \ nucleo-f031k6 \ diff --git a/tests/net/gnrc_dhcpv6_client_stateless/Makefile.ci b/tests/net/gnrc_dhcpv6_client_stateless/Makefile.ci index f6eff6ae22dd..05d00f92c319 100644 --- a/tests/net/gnrc_dhcpv6_client_stateless/Makefile.ci +++ b/tests/net/gnrc_dhcpv6_client_stateless/Makefile.ci @@ -23,7 +23,6 @@ BOARD_INSUFFICIENT_MEMORY := \ msb-430 \ msb-430h \ nrf51dongle \ - nrf6310 \ nucleo-c031c6 \ nucleo-f030r8 \ nucleo-f031k6 \ diff --git a/tests/net/gnrc_netif/Makefile.ci b/tests/net/gnrc_netif/Makefile.ci index a66475848ac6..00d55166d338 100644 --- a/tests/net/gnrc_netif/Makefile.ci +++ b/tests/net/gnrc_netif/Makefile.ci @@ -36,7 +36,6 @@ BOARD_INSUFFICIENT_MEMORY := \ msb-430h \ nrf51dk \ nrf51dongle \ - nrf6310 \ nucleo-c031c6 \ nucleo-f030r8 \ nucleo-f031k6 \ diff --git a/tests/net/gnrc_sixlowpan_frag_sfr_congure_impl/Makefile.ci b/tests/net/gnrc_sixlowpan_frag_sfr_congure_impl/Makefile.ci index 99e38a371fad..7980875d5d4e 100644 --- a/tests/net/gnrc_sixlowpan_frag_sfr_congure_impl/Makefile.ci +++ b/tests/net/gnrc_sixlowpan_frag_sfr_congure_impl/Makefile.ci @@ -27,7 +27,6 @@ BOARD_INSUFFICIENT_MEMORY := \ msb-430 \ msb-430h \ nrf51dongle \ - nrf6310 \ nucleo-c031c6 \ nucleo-f030r8 \ nucleo-f031k6 \ diff --git a/tests/net/gnrc_udp/Makefile.ci b/tests/net/gnrc_udp/Makefile.ci index 0308a88f80df..51104b119ef8 100644 --- a/tests/net/gnrc_udp/Makefile.ci +++ b/tests/net/gnrc_udp/Makefile.ci @@ -23,7 +23,6 @@ BOARD_INSUFFICIENT_MEMORY := \ msb-430 \ msb-430h \ nrf51dongle \ - nrf6310 \ nucleo-c031c6 \ nucleo-f030r8 \ nucleo-f031k6 \ diff --git a/tests/pkg/cmsis-dsp/Makefile b/tests/pkg/cmsis-dsp/Makefile index 75d308d8d603..8616b92e5318 100644 --- a/tests/pkg/cmsis-dsp/Makefile +++ b/tests/pkg/cmsis-dsp/Makefile @@ -34,7 +34,6 @@ BOARD_WHITELIST := \ stm32f4discovery \ udoo \ yunjia-nrf51822 \ - nrf6310 \ # include $(RIOTBASE)/Makefile.include diff --git a/tests/pkg/edhoc_c/Makefile.ci b/tests/pkg/edhoc_c/Makefile.ci index 89ef9b6b2a82..2906674e8204 100644 --- a/tests/pkg/edhoc_c/Makefile.ci +++ b/tests/pkg/edhoc_c/Makefile.ci @@ -19,7 +19,6 @@ BOARD_INSUFFICIENT_MEMORY := \ microbit \ nrf51dk \ nrf51dongle \ - nrf6310 \ nucleo-f030r8 \ nucleo-f031k6 \ nucleo-f042k6 \ diff --git a/tests/pkg/lwip/Makefile.ci b/tests/pkg/lwip/Makefile.ci index bca4d0c08d00..81b37f75782c 100644 --- a/tests/pkg/lwip/Makefile.ci +++ b/tests/pkg/lwip/Makefile.ci @@ -4,7 +4,6 @@ BOARD_INSUFFICIENT_MEMORY := \ bluepill-stm32f030c8 \ bluepill-stm32f103c8 \ i-nucleo-lrwan1 \ - nrf6310 \ nucleo-c031c6 \ nucleo-f030r8 \ nucleo-f031k6 \ diff --git a/tests/pkg/lz4/Makefile.ci b/tests/pkg/lz4/Makefile.ci index c4b1317f3c4a..33a3a5743f8d 100644 --- a/tests/pkg/lz4/Makefile.ci +++ b/tests/pkg/lz4/Makefile.ci @@ -19,7 +19,6 @@ BOARD_INSUFFICIENT_MEMORY := \ im880b \ microbit \ nrf51dongle \ - nrf6310 \ nucleo-c031c6 \ nucleo-f030r8 \ nucleo-f031k6 \ diff --git a/tests/pkg/nimble_ext_adv/Makefile.ci b/tests/pkg/nimble_ext_adv/Makefile.ci index b0a9d107df38..44a3e94f66b8 100644 --- a/tests/pkg/nimble_ext_adv/Makefile.ci +++ b/tests/pkg/nimble_ext_adv/Makefile.ci @@ -3,6 +3,5 @@ BOARD_INSUFFICIENT_MEMORY := \ calliope-mini \ microbit \ nrf51dongle \ - nrf6310 \ yunjia-nrf51822 \ # diff --git a/tests/pkg/nimble_l2cap_server/nimble.inc.mk b/tests/pkg/nimble_l2cap_server/nimble.inc.mk index e00afed23b26..ec3020c81fd4 100644 --- a/tests/pkg/nimble_l2cap_server/nimble.inc.mk +++ b/tests/pkg/nimble_l2cap_server/nimble.inc.mk @@ -3,7 +3,7 @@ # Note: as the CPU variable is not set at this point, we manually 'whitelist' # all supported nrf51-boards here BOARDS_NRF51 := airfy-beacon calliope-mini microbit nrf51dk nrf51dongle \ - nrf6310 yunjia-nrf51822 + yunjia-nrf51822 ifneq (,$(filter $(BOARDS_NRF51),$(BOARD))) APP_MTU ?= 250 MSYS_CNT ?= 6 diff --git a/tests/pkg/tinydtls_sock_async/Makefile.ci b/tests/pkg/tinydtls_sock_async/Makefile.ci index 29cc1722c05b..47da52310736 100644 --- a/tests/pkg/tinydtls_sock_async/Makefile.ci +++ b/tests/pkg/tinydtls_sock_async/Makefile.ci @@ -35,7 +35,6 @@ BOARD_INSUFFICIENT_MEMORY := \ msb-430 \ msb-430h \ nrf51dongle \ - nrf6310 \ nucleo-c031c6 \ nucleo-f030r8 \ nucleo-f031k6 \ diff --git a/tests/sys/conn_can/Makefile.ci b/tests/sys/conn_can/Makefile.ci index 878ed9073928..1f2135f204de 100644 --- a/tests/sys/conn_can/Makefile.ci +++ b/tests/sys/conn_can/Makefile.ci @@ -5,7 +5,6 @@ BOARD_INSUFFICIENT_MEMORY := \ im880b \ microbit \ nrf51dongle \ - nrf6310 \ nucleo-f030r8 \ nucleo-f031k6 \ nucleo-f042k6 \ diff --git a/tests/sys/posix_semaphore/Makefile.ci b/tests/sys/posix_semaphore/Makefile.ci index 02ec9f8f6bbc..4c0357f2c392 100644 --- a/tests/sys/posix_semaphore/Makefile.ci +++ b/tests/sys/posix_semaphore/Makefile.ci @@ -11,7 +11,6 @@ BOARD_INSUFFICIENT_MEMORY := \ mbed_lpc1768 \ msb-430 \ msb-430h \ - nrf6310 \ nucleo-f030r8 \ nucleo-f031k6 \ nucleo-f042k6 \ diff --git a/tests/unittests/Makefile.ci b/tests/unittests/Makefile.ci index cda190820678..34908417976a 100644 --- a/tests/unittests/Makefile.ci +++ b/tests/unittests/Makefile.ci @@ -44,7 +44,6 @@ BOARD_INSUFFICIENT_MEMORY := \ msba2 \ nrf51dk \ nrf51dongle \ - nrf6310 \ nucleo-c031c6 \ nucleo-f030r8 \ nucleo-f031k6 \