From 77162f78a3dd209b9c6b213afaddb060f4464fa3 Mon Sep 17 00:00:00 2001 From: crasbe Date: Thu, 7 Nov 2024 22:10:38 +0100 Subject: [PATCH 1/4] boards/nrf6310: remove board --- boards/nrf6310/Kconfig | 16 ------ boards/nrf6310/Makefile | 3 - boards/nrf6310/Makefile.dep | 1 - boards/nrf6310/Makefile.features | 8 --- boards/nrf6310/Makefile.include | 12 ---- boards/nrf6310/board.c | 31 ----------- boards/nrf6310/doc.txt | 5 -- boards/nrf6310/include/board.h | 60 -------------------- boards/nrf6310/include/periph_conf.h | 82 ---------------------------- 9 files changed, 218 deletions(-) delete mode 100644 boards/nrf6310/Kconfig delete mode 100644 boards/nrf6310/Makefile delete mode 100644 boards/nrf6310/Makefile.dep delete mode 100644 boards/nrf6310/Makefile.features delete mode 100644 boards/nrf6310/Makefile.include delete mode 100644 boards/nrf6310/board.c delete mode 100644 boards/nrf6310/doc.txt delete mode 100644 boards/nrf6310/include/board.h delete mode 100644 boards/nrf6310/include/periph_conf.h diff --git a/boards/nrf6310/Kconfig b/boards/nrf6310/Kconfig deleted file mode 100644 index 53d1696153..0000000000 --- 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 f8fcbb53a0..0000000000 --- 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 babcd96228..0000000000 --- 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 46b201fafb..0000000000 --- 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 35c541b38c..0000000000 --- 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 b909139fef..0000000000 --- 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 856a406d82..0000000000 --- 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 c02add33ed..0000000000 --- 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 bbe0d27efe..0000000000 --- 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 */ -/** @} */ From 68281c6f69f3a64934787d6a49262dd06aa5f074 Mon Sep 17 00:00:00 2001 From: crasbe Date: Thu, 7 Nov 2024 22:11:11 +0100 Subject: [PATCH 2/4] examples/*: remove nRF6310 board --- examples/asymcute_mqttsn/Makefile.ci | 1 - examples/dtls-echo/Makefile.ci | 1 - examples/dtls-sock/Makefile.ci | 1 - examples/dtls-wolfssl/Makefile.ci | 1 - examples/gcoap_dtls/Makefile.ci | 1 - examples/gnrc_border_router/Makefile.ci | 1 - examples/javascript/Makefile.ci | 1 - examples/lua_REPL/Makefile.ci | 1 - examples/lwm2m/Makefile.ci | 1 - examples/paho-mqtt/Makefile.ci | 1 - examples/posix_sockets/Makefile.ci | 1 - examples/rust-gcoap/Makefile.ci | 1 - 12 files changed, 12 deletions(-) diff --git a/examples/asymcute_mqttsn/Makefile.ci b/examples/asymcute_mqttsn/Makefile.ci index 681d67cc4d..de5192c863 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 1feb845125..5cb8c7725a 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 58a2c5f5cc..4f9d773660 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 64f98b6349..a7b33c2ac9 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 2a2d882e98..29799600d3 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 fcbe41c2a3..f8e68ac08a 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 961056a015..64f84cf622 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 1bccc4ef64..41d40d2fb8 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 bab3493af5..a33f2aa1ca 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 bf491e5b51..478563df14 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 8a8fa6637c..7ec03bcde5 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 cf8d98ffa9..65bdec1a8c 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 \ From 80e94a59067ad783c4c5ddd55e90c6dfab960e42 Mon Sep 17 00:00:00 2001 From: crasbe Date: Thu, 7 Nov 2024 22:11:31 +0100 Subject: [PATCH 3/4] tests/*: remove nRF6310 board --- tests/bench/xtimer/Makefile | 1 - tests/bench/ztimer/Makefile | 1 - tests/core/thread_float/Makefile.ci | 1 - tests/net/emcute/Makefile.ci | 1 - tests/net/gcoap_dns/Makefile.ci | 1 - tests/net/gcoap_forward_proxy/Makefile.ci | 1 - tests/net/gnrc_dhcpv6_client_6lbr/Makefile.ci | 1 - tests/net/gnrc_dhcpv6_client_stateless/Makefile.ci | 1 - tests/net/gnrc_netif/Makefile.ci | 1 - tests/net/gnrc_sixlowpan_frag_sfr_congure_impl/Makefile.ci | 1 - tests/net/gnrc_udp/Makefile.ci | 1 - tests/pkg/cmsis-dsp/Makefile | 1 - tests/pkg/edhoc_c/Makefile.ci | 1 - tests/pkg/lwip/Makefile.ci | 1 - tests/pkg/lz4/Makefile.ci | 1 - tests/pkg/nimble_ext_adv/Makefile.ci | 1 - tests/pkg/nimble_l2cap_server/nimble.inc.mk | 2 +- tests/pkg/tinydtls_sock_async/Makefile.ci | 1 - tests/sys/conn_can/Makefile.ci | 1 - tests/sys/posix_semaphore/Makefile.ci | 1 - tests/unittests/Makefile.ci | 1 - 21 files changed, 1 insertion(+), 21 deletions(-) diff --git a/tests/bench/xtimer/Makefile b/tests/bench/xtimer/Makefile index 0de2634d33..c07f5fecb6 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 57b12aea2c..6a77b15e33 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 53bfe5b5a6..67f931300a 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 e5f52901fd..621b90a35a 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 9345fcf9bd..1b380b3cf9 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 a690f42ba7..d3841a2374 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 29cc1722c0..47da523107 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 f6eff6ae22..05d00f92c3 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 a66475848a..00d55166d3 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 99e38a371f..7980875d5d 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 0308a88f80..51104b119e 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 75d308d8d6..8616b92e53 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 89ef9b6b2a..2906674e82 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 bca4d0c08d..81b37f7578 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 c4b1317f3c..33a3a5743f 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 b0a9d107df..44a3e94f66 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 e00afed23b..ec3020c81f 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 29cc1722c0..47da523107 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 878ed90739..1f2135f204 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 02ec9f8f6b..4c0357f2c3 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 cda1908206..3490841797 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 \ From fc39240d083595c842dc8f7a36311ca41e7ac232 Mon Sep 17 00:00:00 2001 From: crasbe Date: Mon, 23 Dec 2024 21:41:20 +0100 Subject: [PATCH 4/4] LOSTANDFOUND.md: update with boards/nrf6310 --- LOSTANDFOUND.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/LOSTANDFOUND.md b/LOSTANDFOUND.md index 1132f1398f..b2df5cab65 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